]> git.openstreetmap.org Git - rails.git/blobdiff - vendor/assets/iD/iD.js
Update to iD v1.6.0
[rails.git] / vendor / assets / iD / iD.js
index 11c3eb29ba1371f42429a41988249deac01098f3..6ce81633a3b329b632d15d01dc855655d7dc43da 100644 (file)
@@ -14188,7 +14188,7 @@ module.exports = function forEach (obj, fn, ctx) {
 function rbush(maxEntries, format) {
 
     // jshint newcap: false, validthis: true
-    if (!(this instanceof rbush)) { return new rbush(maxEntries, format); }
+    if (!(this instanceof rbush)) return new rbush(maxEntries, format);
 
     // max entries in a node is 9 by default; min node fill is 40% for best performance
     this._maxEntries = Math.max(4, maxEntries || 9);
@@ -14210,32 +14210,26 @@ rbush.prototype = {
     search: function (bbox) {
 
         var node = this.data,
-            result = [];
+            result = [],
+            toBBox = this.toBBox;
 
-        if (!this._intersects(bbox, node.bbox)) { return result; }
+        if (!intersects(bbox, node.bbox)) return result;
 
         var nodesToSearch = [],
             i, len, child, childBBox;
 
         while (node) {
             for (i = 0, len = node.children.length; i < len; i++) {
-                child = node.children[i];
-                childBBox = node.leaf ? this.toBBox(child) : child.bbox;
-
-                if (this._intersects(bbox, childBBox)) {
-
-                    if (node.leaf) {
-                        result.push(child);
 
-                    } else if (this._contains(bbox, childBBox)) {
-                        this._all(child, result);
+                child = node.children[i];
+                childBBox = node.leaf ? toBBox(child) : child.bbox;
 
-                    } else {
-                        nodesToSearch.push(child);
-                    }
+                if (intersects(bbox, childBBox)) {
+                    if (node.leaf) result.push(child);
+                    else if (contains(bbox, childBBox)) this._all(child, result);
+                    else nodesToSearch.push(child);
                 }
             }
-
             node = nodesToSearch.pop();
         }
 
@@ -14243,7 +14237,7 @@ rbush.prototype = {
     },
 
     load: function (data) {
-        if (!(data && data.length)) { return this; }
+        if (!(data && data.length)) return this;
 
         if (data.length < this._minEntries) {
             for (var i = 0, len = data.length; i < len; i++) {
@@ -14253,7 +14247,7 @@ rbush.prototype = {
         }
 
         // recursively build the tree with the given data from stratch using OMT algorithm
-        var node = this._build(data.slice(), 0);
+        var node = this._build(data.slice(), 0, data.length - 1, 0);
 
         if (!this.data.children.length) {
             // save as is if tree is empty
@@ -14279,24 +14273,22 @@ rbush.prototype = {
     },
 
     insert: function (item) {
-        if (item) {
-            this._insert(item, this.data.height - 1);
-        }
+        if (item) this._insert(item, this.data.height - 1);
         return this;
     },
 
     clear: function () {
         this.data = {
             children: [],
-            leaf: true,
-            bbox: this._empty(),
-            height: 1
+            height: 1,
+            bbox: empty(),
+            leaf: true
         };
         return this;
     },
 
     remove: function (item) {
-        if (!item) { return this; }
+        if (!item) return this;
 
         var node = this.data,
             bbox = this.toBBox(item),
@@ -14326,7 +14318,7 @@ rbush.prototype = {
                 }
             }
 
-            if (!goingUp && !node.leaf && this._intersects(bbox, node.bbox)) { // go down
+            if (!goingUp && !node.leaf && contains(node.bbox, bbox)) { // go down
                 path.push(node);
                 indexes.push(i);
                 i = 0;
@@ -14338,9 +14330,7 @@ rbush.prototype = {
                 node = parent.children[i];
                 goingUp = false;
 
-            } else { // nothing found
-                node = null;
-            }
+            } else node = null; // nothing found
         }
 
         return this;
@@ -14361,29 +14351,28 @@ rbush.prototype = {
     _all: function (node, result) {
         var nodesToSearch = [];
         while (node) {
-            if (node.leaf) {
-                result.push.apply(result, node.children);
-            } else {
-                nodesToSearch.push.apply(nodesToSearch, node.children);
-            }
+            if (node.leaf) result.push.apply(result, node.children);
+            else nodesToSearch.push.apply(nodesToSearch, node.children);
+
             node = nodesToSearch.pop();
         }
         return result;
     },
 
-    _build: function (items, level, height) {
+    _build: function (items, left, right, level, height) {
 
-        var N = items.length,
+        var N = right - left + 1,
             M = this._maxEntries,
             node;
 
         if (N <= M) {
             node = {
-                children: items,
-                leaf: true,
-                height: 1
+                children: items.slice(left, right + 1),
+                height: 1,
+                bbox: null,
+                leaf: true
             };
-            this._calcBBox(node);
+            calcBBox(node, this.toBBox);
             return node;
         }
 
@@ -14393,34 +14382,37 @@ rbush.prototype = {
 
             // target number of root entries to maximize storage utilization
             M = Math.ceil(N / Math.pow(M, height - 1));
-
-            items.sort(this.compareMinX);
         }
 
         // TODO eliminate recursion?
 
         node = {
             children: [],
-            height: height
+            height: height,
+            bbox: null
         };
 
-        var N1 = Math.ceil(N / M) * Math.ceil(Math.sqrt(M)),
-            N2 = Math.ceil(N / M),
-            compare = level % 2 === 1 ? this.compareMinX : this.compareMinY,
-            i, j, slice, sliceLen, childNode;
+        var N2 = Math.ceil(N / M),
+            N1 = N2 * Math.ceil(Math.sqrt(M)),
+            i, j, right2, childNode;
 
         // split the items into M mostly square tiles
-        for (i = 0; i < N; i += N1) {
-            slice = items.slice(i, i + N1).sort(compare);
+        for (i = left; i <= right; i += N1) {
+
+            if (i + N1 <= right) partitionSort(items, i, right, i + N1, this.compareMinX);
+            right2 = Math.min(i + N1 - 1, right);
+
+            for (j = i; j <= right2; j += N2) {
+
+                if (j + N2 <= right2) partitionSort(items, j, right2, j + N2, this.compareMinY);
 
-            for (j = 0, sliceLen = slice.length; j < sliceLen; j += N2) {
                 // pack each entry recursively
-                childNode = this._build(slice.slice(j, j + N2), level + 1, height - 1);
+                childNode = this._build(items, j, Math.min(j + N2 - 1, right2), level + 1, height - 1);
                 node.children.push(childNode);
             }
         }
 
-        this._calcBBox(node);
+        calcBBox(node, this.toBBox);
 
         return node;
     },
@@ -14432,14 +14424,14 @@ rbush.prototype = {
         while (true) {
             path.push(node);
 
-            if (node.leaf || path.length - 1 === level) { break; }
+            if (node.leaf || path.length - 1 === level) break;
 
             minArea = minEnlargement = Infinity;
 
             for (i = 0, len = node.children.length; i < len; i++) {
                 child = node.children[i];
-                area = this._area(child.bbox);
-                enlargement = this._enlargedArea(bbox, child.bbox) - area;
+                area = bboxArea(child.bbox);
+                enlargement = enlargedArea(bbox, child.bbox) - area;
 
                 // choose entry with the least area enlargement
                 if (enlargement < minEnlargement) {
@@ -14462,28 +14454,26 @@ rbush.prototype = {
         return node;
     },
 
-    _insert: function (item, level, isNode, root) {
+    _insert: function (item, level, isNode) {
 
-        var bbox = isNode ? item.bbox : this.toBBox(item),
+        var toBBox = this.toBBox,
+            bbox = isNode ? item.bbox : toBBox(item),
             insertPath = [];
 
         // find the best node for accommodating the item, saving all nodes along the path too
-        var node = this._chooseSubtree(bbox, root || this.data, level, insertPath),
-            splitOccured;
+        var node = this._chooseSubtree(bbox, this.data, level, insertPath);
 
         // put the item into the node
         node.children.push(item);
-        this._extend(node.bbox, bbox);
+        extend(node.bbox, bbox);
 
         // split on node overflow; propagate upwards if necessary
-        do {
-            splitOccured = false;
+        while (level >= 0) {
             if (insertPath[level].children.length > this._maxEntries) {
                 this._split(insertPath, level);
-                splitOccured = true;
                 level--;
-            }
-        } while (level >= 0 && splitOccured);
+            } else break;
+        }
 
         // adjust bboxes along the insertion path
         this._adjustParentBBoxes(bbox, insertPath, level);
@@ -14503,26 +14493,22 @@ rbush.prototype = {
             height: node.height
         };
 
-        if (node.leaf) {
-            newNode.leaf = true;
-        }
+        if (node.leaf) newNode.leaf = true;
 
-        this._calcBBox(node);
-        this._calcBBox(newNode);
+        calcBBox(node, this.toBBox);
+        calcBBox(newNode, this.toBBox);
 
-        if (level) {
-            insertPath[level - 1].children.push(newNode);
-        } else {
-            this._splitRoot(node, newNode);
-        }
+        if (level) insertPath[level - 1].children.push(newNode);
+        else this._splitRoot(node, newNode);
     },
 
     _splitRoot: function (node, newNode) {
         // split root node
-        this.data = {};
-        this.data.children = [node, newNode];
-        this.data.height = node.height + 1;
-        this._calcBBox(this.data);
+        this.data = {
+            children: [node, newNode],
+            height: node.height + 1
+        };
+        calcBBox(this.data, this.toBBox);
     },
 
     _chooseSplitIndex: function (node, m, M) {
@@ -14532,11 +14518,11 @@ rbush.prototype = {
         minOverlap = minArea = Infinity;
 
         for (i = m; i <= M - m; i++) {
-            bbox1 = this._distBBox(node, 0, i);
-            bbox2 = this._distBBox(node, i, M);
+            bbox1 = distBBox(node, 0, i, this.toBBox);
+            bbox2 = distBBox(node, i, M, this.toBBox);
 
-            overlap = this._intersectionArea(bbox1, bbox2);
-            area = this._area(bbox1) + this._area(bbox2);
+            overlap = intersectionArea(bbox1, bbox2);
+            area = bboxArea(bbox1) + bboxArea(bbox2);
 
             // choose distribution with minimum overlap
             if (overlap < minOverlap) {
@@ -14560,17 +14546,14 @@ rbush.prototype = {
     // sorts node children by the best axis for split
     _chooseSplitAxis: function (node, m, M) {
 
-        var compareMinX = node.leaf ? this.compareMinX : this._compareNodeMinX,
-            compareMinY = node.leaf ? this.compareMinY : this._compareNodeMinY,
+        var compareMinX = node.leaf ? this.compareMinX : compareNodeMinX,
+            compareMinY = node.leaf ? this.compareMinY : compareNodeMinY,
             xMargin = this._allDistMargin(node, m, M, compareMinX),
             yMargin = this._allDistMargin(node, m, M, compareMinY);
 
         // if total distributions margin value is minimal for x, sort by minX,
         // otherwise it's already sorted by minY
-
-        if (xMargin < yMargin) {
-            node.children.sort(compareMinX);
-        }
+        if (xMargin < yMargin) node.children.sort(compareMinX);
     },
 
     // total margin of all possible split distributions where each node is at least m full
@@ -14578,116 +14561,48 @@ rbush.prototype = {
 
         node.children.sort(compare);
 
-        var leftBBox = this._distBBox(node, 0, m),
-            rightBBox = this._distBBox(node, M - m, M),
-            margin = this._margin(leftBBox) + this._margin(rightBBox),
+        var toBBox = this.toBBox,
+            leftBBox = distBBox(node, 0, m, toBBox),
+            rightBBox = distBBox(node, M - m, M, toBBox),
+            margin = bboxMargin(leftBBox) + bboxMargin(rightBBox),
             i, child;
 
         for (i = m; i < M - m; i++) {
             child = node.children[i];
-            this._extend(leftBBox, node.leaf ? this.toBBox(child) : child.bbox);
-            margin += this._margin(leftBBox);
+            extend(leftBBox, node.leaf ? toBBox(child) : child.bbox);
+            margin += bboxMargin(leftBBox);
         }
 
-        for (i = M - m - 1; i >= 0; i--) {
+        for (i = M - m - 1; i >= m; i--) {
             child = node.children[i];
-            this._extend(rightBBox, node.leaf ? this.toBBox(child) : child.bbox);
-            margin += this._margin(rightBBox);
+            extend(rightBBox, node.leaf ? toBBox(child) : child.bbox);
+            margin += bboxMargin(rightBBox);
         }
 
         return margin;
     },
 
-    // min bounding rectangle of node children from k to p-1
-    _distBBox: function (node, k, p) {
-        var bbox = this._empty();
-
-        for (var i = k, child; i < p; i++) {
-            child = node.children[i];
-            this._extend(bbox, node.leaf ? this.toBBox(child) : child.bbox);
-        }
-
-        return bbox;
-    },
-
-    // calculate node's bbox from bboxes of its children
-    _calcBBox: function (node) {
-        node.bbox = this._empty();
-
-        for (var i = 0, len = node.children.length, child; i < len; i++) {
-            child = node.children[i];
-            this._extend(node.bbox, node.leaf ? this.toBBox(child) : child.bbox);
-        }
-    },
-
     _adjustParentBBoxes: function (bbox, path, level) {
         // adjust bboxes along the given tree path
         for (var i = level; i >= 0; i--) {
-            this._extend(path[i].bbox, bbox);
+            extend(path[i].bbox, bbox);
         }
     },
 
     _condense: function (path) {
         // go through the path, removing empty nodes and updating bboxes
-        for (var i = path.length - 1, parent; i >= 0; i--) {
+        for (var i = path.length - 1, siblings; i >= 0; i--) {
             if (path[i].children.length === 0) {
                 if (i > 0) {
-                    parent = path[i - 1].children;
-                    parent.splice(parent.indexOf(path[i]), 1);
-                } else {
-                    this.clear();
-                }
-            } else {
-                this._calcBBox(path[i]);
-            }
-        }
-    },
-
-    _contains: function(a, b) {
-        return a[0] <= b[0] &&
-               a[1] <= b[1] &&
-               b[2] <= a[2] &&
-               b[3] <= a[3];
-    },
-
-    _intersects: function (a, b) {
-        return b[0] <= a[2] &&
-               b[1] <= a[3] &&
-               b[2] >= a[0] &&
-               b[3] >= a[1];
-    },
-
-    _extend: function (a, b) {
-        a[0] = Math.min(a[0], b[0]);
-        a[1] = Math.min(a[1], b[1]);
-        a[2] = Math.max(a[2], b[2]);
-        a[3] = Math.max(a[3], b[3]);
-        return a;
-    },
-
-    _area:   function (a) { return (a[2] - a[0]) * (a[3] - a[1]); },
-    _margin: function (a) { return (a[2] - a[0]) + (a[3] - a[1]); },
-
-    _enlargedArea: function (a, b) {
-        return (Math.max(b[2], a[2]) - Math.min(b[0], a[0])) *
-               (Math.max(b[3], a[3]) - Math.min(b[1], a[1]));
-    },
+                    siblings = path[i - 1].children;
+                    siblings.splice(siblings.indexOf(path[i]), 1);
 
-    _intersectionArea: function (a, b) {
-        var minX = Math.max(a[0], b[0]),
-            minY = Math.max(a[1], b[1]),
-            maxX = Math.min(a[2], b[2]),
-            maxY = Math.min(a[3], b[3]);
+                } else this.clear();
 
-        return Math.max(0, maxX - minX) *
-               Math.max(0, maxY - minY);
+            } else calcBBox(path[i], this.toBBox);
+        }
     },
 
-    _empty: function () { return [Infinity, Infinity, -Infinity, -Infinity]; },
-
-    _compareNodeMinX: function (a, b) { return a.bbox[0] - b.bbox[0]; },
-    _compareNodeMinY: function (a, b) { return a.bbox[1] - b.bbox[1]; },
-
     _initFormat: function (format) {
         // data format (minX, minY, maxX, maxY accessors)
 
@@ -14706,20 +14621,116 @@ rbush.prototype = {
     }
 };
 
-if (typeof define === 'function' && define.amd) {
-    define(function() {
-        return rbush;
-    });
-} else if (typeof module !== 'undefined') {
-    module.exports = rbush;
-} else if (typeof self !== 'undefined') {
-    self.rbush = rbush;
-} else {
-    window.rbush = rbush;
+// calculate node's bbox from bboxes of its children
+function calcBBox(node, toBBox) {
+    node.bbox = distBBox(node, 0, node.children.length, toBBox);
 }
 
-})();
-(function(e){if("function"==typeof bootstrap)bootstrap("sexagesimal",e);else if("object"==typeof exports)module.exports=e();else if("function"==typeof define&&define.amd)define(e);else if("undefined"!=typeof ses){if(!ses.ok())return;ses.makeSexagesimal=e}else"undefined"!=typeof window?window.sexagesimal=e():global.sexagesimal=e()})(function(){var define,ses,bootstrap,module,exports;
+// min bounding rectangle of node children from k to p-1
+function distBBox(node, k, p, toBBox) {
+    var bbox = empty();
+
+    for (var i = k, child; i < p; i++) {
+        child = node.children[i];
+        extend(bbox, node.leaf ? toBBox(child) : child.bbox);
+    }
+
+    return bbox;
+}
+
+
+function empty() { return [Infinity, Infinity, -Infinity, -Infinity]; }
+
+function extend(a, b) {
+    a[0] = Math.min(a[0], b[0]);
+    a[1] = Math.min(a[1], b[1]);
+    a[2] = Math.max(a[2], b[2]);
+    a[3] = Math.max(a[3], b[3]);
+    return a;
+}
+
+function compareNodeMinX(a, b) { return a.bbox[0] - b.bbox[0]; }
+function compareNodeMinY(a, b) { return a.bbox[1] - b.bbox[1]; }
+
+function bboxArea(a)   { return (a[2] - a[0]) * (a[3] - a[1]); }
+function bboxMargin(a) { return (a[2] - a[0]) + (a[3] - a[1]); }
+
+function enlargedArea(a, b) {
+    return (Math.max(b[2], a[2]) - Math.min(b[0], a[0])) *
+           (Math.max(b[3], a[3]) - Math.min(b[1], a[1]));
+}
+
+function intersectionArea (a, b) {
+    var minX = Math.max(a[0], b[0]),
+        minY = Math.max(a[1], b[1]),
+        maxX = Math.min(a[2], b[2]),
+        maxY = Math.min(a[3], b[3]);
+
+    return Math.max(0, maxX - minX) *
+           Math.max(0, maxY - minY);
+}
+
+function contains(a, b) {
+    return a[0] <= b[0] &&
+           a[1] <= b[1] &&
+           b[2] <= a[2] &&
+           b[3] <= a[3];
+}
+
+function intersects (a, b) {
+    return b[0] <= a[2] &&
+           b[1] <= a[3] &&
+           b[2] >= a[0] &&
+           b[3] >= a[1];
+}
+
+
+function partitionSort(arr, left, right, k, compare) {
+    var pivot;
+
+    while (true) {
+        pivot = Math.floor((left + right) / 2);
+        pivot = partition(arr, left, right, pivot, compare);
+
+        if (k === pivot) break;
+        else if (k < pivot) right = pivot - 1;
+        else left = pivot + 1;
+    }
+
+    partition(arr, left, right, k, compare);
+}
+
+function partition(arr, left, right, pivot, compare) {
+    var k = left,
+        value = arr[pivot];
+
+    swap(arr, pivot, right);
+
+    for (var i = left; i < right; i++) {
+        if (compare(arr[i], value) < 0) {
+            swap(arr, k, i);
+            k++;
+        }
+    }
+    swap(arr, right, k);
+
+    return k;
+}
+
+function swap(arr, i, j) {
+    var tmp = arr[i];
+    arr[i] = arr[j];
+    arr[j] = tmp;
+}
+
+
+// export as AMD/CommonJS module or global variable
+if (typeof define === 'function' && define.amd) define(function() { return rbush; });
+else if (typeof module !== 'undefined') module.exports = rbush;
+else if (typeof self !== 'undefined') self.rbush = rbush;
+else window.rbush = rbush;
+
+})();(function(e){if("function"==typeof bootstrap)bootstrap("sexagesimal",e);else if("object"==typeof exports)module.exports=e();else if("function"==typeof define&&define.amd)define(e);else if("undefined"!=typeof ses){if(!ses.ok())return;ses.makeSexagesimal=e}else"undefined"!=typeof window?window.sexagesimal=e():global.sexagesimal=e()})(function(){var define,ses,bootstrap,module,exports;
 return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
 module.exports = element;
 module.exports.pair = pair;
@@ -16411,7 +16422,7 @@ window.iD = function () {
     return d3.rebind(context, dispatch, 'on');
 };
 
-iD.version = '1.5.4';
+iD.version = '1.6.0';
 
 (function() {
     var detected = {};
@@ -16571,7 +16582,7 @@ iD.taginfo = function() {
 
     taginfo.keys = function(parameters, callback) {
         var debounce = parameters.debounce;
-        parameters = clean(shorten(setSort(setFilter(parameters))));
+        parameters = clean(shorten(setSort(parameters)));
         request(endpoint + 'keys/all?' +
             iD.util.qsString(_.extend({
                 rp: 10,
@@ -17091,9 +17102,20 @@ iD.geo.polygonContainsPolygon = function(outer, inner) {
 };
 
 iD.geo.polygonIntersectsPolygon = function(outer, inner) {
+    function testSegments(outer, inner) {
+        for (var i = 0; i < outer.length - 1; i++) {
+            for (var j = 0; j < inner.length - 1; j++) {
+                var a = [ outer[i], outer[i+1] ],
+                    b = [ inner[j], inner[j+1] ];
+                if (iD.geo.lineIntersection(a, b)) return true;
+            }
+        }
+        return false;
+    }
+
     return _.some(inner, function(point) {
         return iD.geo.pointInPolygon(point, outer);
-    });
+    }) || testSegments(outer, inner);
 };
 
 iD.geo.pathLength = function(path) {
@@ -17310,25 +17332,35 @@ iD.geo.Intersection = function(graph, vertexId) {
     return intersection;
 };
 
-iD.geo.inferRestriction = function(from, via, to, projection) {
-    var angle = iD.geo.angle(via, from, projection) -
-                iD.geo.angle(via, to, projection);
+
+iD.geo.inferRestriction = function(graph, from, via, to, projection) {
+    var fromWay = graph.entity(from.way),
+        fromNode = graph.entity(from.node),
+        toWay = graph.entity(to.way),
+        toNode = graph.entity(to.node),
+        viaNode = graph.entity(via.node),
+        fromOneWay = (fromWay.tags.oneway === 'yes' && fromWay.last() === via.node) ||
+            (fromWay.tags.oneway === '-1' && fromWay.first() === via.node),
+        toOneWay = (toWay.tags.oneway === 'yes' && toWay.first() === via.node) ||
+            (toWay.tags.oneway === '-1' && toWay.last() === via.node),
+        angle = iD.geo.angle(viaNode, fromNode, projection) -
+                iD.geo.angle(viaNode, toNode, projection);
 
     angle = angle * 180 / Math.PI;
 
     while (angle < 0)
         angle += 360;
 
-    if (angle < 23)
+    if (fromNode === toNode)
+        return 'no_u_turn';
+    if ((angle < 23 || angle > 336) && fromOneWay && toOneWay)
         return 'no_u_turn';
     if (angle < 158)
         return 'no_right_turn';
-    if (angle < 202)
-        return 'no_straight_on';
-    if (angle < 336)
+    if (angle > 202)
         return 'no_left_turn';
 
-    return 'no_u_turn';
+    return 'no_straight_on';
 };
 // For fixing up rendering of multipolygons with tags on the outer member.
 // https://github.com/openstreetmap/iD/issues/613
@@ -18580,14 +18612,8 @@ iD.actions.Orthogonalize = function(wayId, projection) {
 // `from.node` in `from.way` toward `to.node` in `to.way` via `via.node`.
 // (The action does not check that these entities form a valid intersection.)
 //
-// If `restriction` is not provided, it is automatically determined by the
-// angle of the turn:
-//
-//    0-23  degrees: no_u_turn
-//   23-158 degrees: no_right_turn
-//  158-202 degrees: no_straight_on
-//  202-326 degrees: no_left_turn
-//  336-360 degrees: no_u_turn
+// If `restriction` is not provided, it is automatically determined by
+// iD.geo.inferRestriction.
 //
 // If necessary, the `from` and `to` ways are split. In these cases, `from.node`
 // and `to.node` are used to determine which portion of the split ways become
@@ -18643,9 +18669,10 @@ iD.actions.RestrictTurn = function(turn, projection, restrictionId) {
                 type: 'restriction',
                 restriction: turn.restriction ||
                     iD.geo.inferRestriction(
-                        graph.entity(turn.from.node),
-                        via,
-                        graph.entity(turn.to.node),
+                        graph,
+                        turn.from,
+                        turn.via,
+                        turn.to,
                         projection)
             },
             members: [
@@ -19666,7 +19693,7 @@ iD.behavior.Hash = function(context) {
             center = map.center(),
             zoom = map.zoom(),
             precision = Math.max(0, Math.ceil(Math.log(zoom) / Math.LN2)),
-            q = iD.util.stringQs(location.hash.substring(1)),
+            q = _.omit(iD.util.stringQs(location.hash.substring(1)), 'comment'),
             newParams = {};
 
         if (mode && mode.id === 'browse') {
@@ -19714,6 +19741,7 @@ iD.behavior.Hash = function(context) {
         if (location.hash) {
             var q = iD.util.stringQs(location.hash.substring(1));
             if (q.id) context.loadEntity(q.id.split(',')[0], !q.map);
+            if (q.comment) context.storage('comment', q.comment);
             hashchange();
             if (q.map) hash.hadHash = true;
         }
@@ -21567,6 +21595,7 @@ iD.areaKeys = {
         "atm": true,
         "bbq": true,
         "bench": true,
+        "bureau_de_change": true,
         "clock": true,
         "drinking_water": true,
         "parking_entrance": true,
@@ -21606,6 +21635,7 @@ iD.areaKeys = {
     "landuse": {},
     "leisure": {
         "picnic_table": true,
+        "track": true,
         "slipway": true
     },
     "man_made": {
@@ -23643,6 +23673,7 @@ iD.Background = function(context) {
             .projection(context.projection),
         gpxLayer = iD.GpxLayer(context, dispatch)
             .projection(context.projection),
+        mapillaryLayer = iD.MapillaryLayer(context),
         overlayLayers = [];
 
     var backgroundSources = iD.data.imagery.map(function(source) {
@@ -23730,6 +23761,14 @@ iD.Background = function(context) {
 
         overlays.exit()
             .remove();
+
+        var mapillary = selection.selectAll('.layer-mapillary')
+            .data([0]);
+
+        mapillary.enter().insert('div')
+            .attr('class', 'layer-layer layer-mapillary');
+
+        mapillary.call(mapillaryLayer);
     }
 
     background.sources = function(extent) {
@@ -23741,6 +23780,7 @@ iD.Background = function(context) {
     background.dimensions = function(_) {
         baseLayer.dimensions(_);
         gpxLayer.dimensions(_);
+        mapillaryLayer.dimensions(_);
 
         overlayLayers.forEach(function(layer) {
             layer.dimensions(_);
@@ -23805,6 +23845,15 @@ iD.Background = function(context) {
         dispatch.change();
     };
 
+    background.showsMapillaryLayer = function() {
+        return mapillaryLayer.enable();
+    };
+
+    background.toggleMapillaryLayer = function() {
+        mapillaryLayer.enable(!mapillaryLayer.enable());
+        dispatch.change();
+    };
+
     background.showsLayer = function(d) {
         return d === baseLayer.source() ||
             (d.id === 'custom' && baseLayer.source().id === 'custom') ||
@@ -24165,8 +24214,6 @@ iD.Map = function(context) {
         supersurface = selection.append('div')
             .attr('id', 'supersurface');
 
-        supersurface.call(context.background());
-
         // Need a wrapper div because Opera can't cope with an absolutely positioned
         // SVG element: http://bl.ocks.org/jfirebaugh/6fbfbd922552bf776c16
         var dataLayer = supersurface.append('div')
@@ -24184,6 +24231,8 @@ iD.Map = function(context) {
             .attr('id', 'surface')
             .call(iD.svg.Surface(context));
 
+        supersurface.call(context.background());
+
         surface.on('mousemove.map', function() {
             mousemove = d3.event;
         });
@@ -24534,6 +24583,165 @@ iD.Map = function(context) {
 
     return d3.rebind(map, dispatch, 'on');
 };
+iD.MapillaryLayer = function (context) {
+    var enable = false,
+        currentImage,
+        svg, div, request;
+
+    function show(image) {
+        svg.selectAll('g')
+            .classed('selected', function(d) {
+                return currentImage && d.key === currentImage.key;
+            });
+
+        div.classed('hidden', false)
+            .classed('temp', image !== currentImage);
+
+        div.selectAll('img')
+            .attr('src', 'https://d1cuyjsrcm0gby.cloudfront.net/' + image.key + '/thumb-320.jpg');
+
+        div.selectAll('a')
+            .attr('href', 'http://mapillary.com/map/im/' + image.key);
+    }
+
+    function hide() {
+        currentImage = undefined;
+
+        svg.selectAll('g')
+            .classed('selected', false);
+
+        div.classed('hidden', true);
+    }
+
+    function transform(image) {
+        var t = 'translate(' + context.projection(image.loc) + ')';
+        if (image.ca) t += 'rotate(' + image.ca + ',0,0)';
+        return t;
+    }
+
+    function render(selection) {
+        svg = selection.selectAll('svg')
+            .data([0]);
+
+        svg.enter().append('svg')
+            .on('click', function() {
+                var image = d3.event.target.__data__;
+                if (currentImage === image) {
+                    hide();
+                } else {
+                    currentImage = image;
+                    show(image);
+                }
+            })
+            .on('mouseover', function() {
+                show(d3.event.target.__data__);
+            })
+            .on('mouseout', function() {
+                if (currentImage) {
+                    show(currentImage);
+                } else {
+                    hide();
+                }
+            });
+
+        svg.style('display', enable ? 'block' : 'none');
+
+        div = context.container().selectAll('.mapillary-image')
+            .data([0]);
+
+        var enter = div.enter().append('div')
+            .attr('class', 'mapillary-image');
+
+        enter.append('button')
+            .on('click', hide)
+            .append('div')
+            .attr('class', 'icon close');
+
+        enter.append('img');
+
+        var link = enter.append('a')
+            .attr('class', 'link')
+            .attr('target', '_blank');
+
+        link.append('span')
+            .attr('class', 'icon icon-pre-text out-link');
+
+        link.append('span')
+            .text(t('mapillary.view_on_mapillary'));
+
+        if (!enable) {
+            hide();
+
+            svg.selectAll('g')
+                .remove();
+
+            return;
+        }
+
+        // Update existing images while waiting for new ones to load.
+        svg.selectAll('g')
+            .attr('transform', transform);
+
+        var extent = context.map().extent();
+
+        if (request)
+            request.abort();
+
+        request = d3.json('https://mapillary-read-api.herokuapp.com/v1/s/search?min-lat=' +
+            extent[0][1] + '&max-lat=' + extent[1][1] + '&min-lon=' +
+            extent[0][0] + '&max-lon=' + extent[1][0] + '&max-results=100&geojson=true',
+            function (error, data) {
+                if (error) return;
+
+                var images = [];
+
+                for (var i = 0; i < data.features.length; i++) {
+                    var sequence = data.features[i];
+                    for (var j = 0; j < sequence.geometry.coordinates.length; j++) {
+                        images.push({
+                            key: sequence.properties.keys[j],
+                            ca: sequence.properties.cas[j],
+                            loc: sequence.geometry.coordinates[j]
+                        });
+                        if (images.length >= 1000) break;
+                    }
+                }
+
+                var g = svg.selectAll('g')
+                    .data(images, function(d) { return d.key; });
+
+                var enter = g.enter().append('g')
+                    .attr('class', 'image');
+
+                enter.append('path')
+                    .attr('d', 'M 0,-5 l 0,-20 l -5,30 l 10,0 l -5,-30');
+
+                enter.append('circle')
+                    .attr('dx', '0')
+                    .attr('dy', '0')
+                    .attr('r', '8');
+
+                g.attr('transform', transform);
+
+                g.exit()
+                    .remove();
+            });
+    }
+
+    render.enable = function(_) {
+        if (!arguments.length) return enable;
+        enable = _;
+        return render;
+    };
+
+    render.dimensions = function(_) {
+        if (!arguments.length) return svg.dimensions();
+        svg.dimensions(_);
+        return render;
+    };
+
+    return render;
+};
 iD.TileLayer = function() {
     var tileSize = 256,
         tile = d3.geo.tile(),
@@ -26555,6 +26763,11 @@ iD.ui.Background = function(context) {
             update();
         }
 
+        function clickMapillary() {
+            context.background().toggleMapillaryLayer();
+            update();
+        }
+
         function drawList(layerList, type, change, filter) {
             var sources = context.background()
                 .sources(context.map().extent())
@@ -26602,6 +26815,13 @@ iD.ui.Background = function(context) {
                 .property('disabled', !hasGpx)
                 .property('checked', showsGpx);
 
+            var showsMapillary = context.background().showsMapillaryLayer();
+
+            mapillaryLayerItem
+                .classed('active', showsMapillary)
+                .selectAll('input')
+                .property('checked', showsMapillary);
+
             selectLayer();
 
             var source = context.background().baseLayerSource();
@@ -26742,6 +26962,20 @@ iD.ui.Background = function(context) {
         var overlayList = content.append('ul')
             .attr('class', 'layer-list');
 
+        var mapillaryLayerItem = overlayList.append('li');
+
+        label = mapillaryLayerItem.append('label')
+            .call(bootstrap.tooltip()
+                .title(t('mapillary.tooltip'))
+                .placement('top'));
+
+        label.append('input')
+            .attr('type', 'checkbox')
+            .on('change', clickMapillary);
+
+        label.append('span')
+            .text(t('mapillary.title'));
+
         var gpxLayerItem = content.append('ul')
             .style('display', iD.detect().filedrop ? 'block' : 'none')
             .attr('class', 'layer-list')
@@ -26836,6 +27070,9 @@ iD.ui.Background = function(context) {
 
         var keybinding = d3.keybinding('background');
         keybinding.on(key, toggle);
+        keybinding.on('m', function() {
+            context.enter(iD.modes.SelectImage(context));
+        });
 
         d3.select(document)
             .call(keybinding);
@@ -31572,9 +31809,10 @@ iD.ui.preset.restrictions = function(field, context) {
                 } else {
                     preset = presets.item('type/restriction/' +
                         iD.geo.inferRestriction(
-                            graph.entity(datum.from.node),
-                            graph.entity(datum.via.node),
-                            graph.entity(datum.to.node),
+                            graph,
+                            datum.from,
+                            datum.via,
+                            datum.to,
                             projection));
                 }
 
@@ -37077,6 +37315,404 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "terms_text": "geoimage.at",
             "id": "geoimage.at"
         },
+        {
+            "name": "Geoportal.gov.pl (Orthophotomap)",
+            "type": "tms",
+            "template": "http://wms.misek.pl/geoportal.orto/tms/{zoom}/{x}/{y}",
+            "scaleExtent": [
+                6,
+                24
+            ],
+            "polygon": [
+                [
+                    [
+                        15.9751041,
+                        54.3709213
+                    ],
+                    [
+                        16.311164,
+                        54.5561775
+                    ],
+                    [
+                        17.1391878,
+                        54.7845723
+                    ],
+                    [
+                        18.3448458,
+                        54.9022727
+                    ],
+                    [
+                        19.6613689,
+                        54.4737213
+                    ],
+                    [
+                        20.2815206,
+                        54.4213456
+                    ],
+                    [
+                        21.4663914,
+                        54.3406369
+                    ],
+                    [
+                        22.7759855,
+                        54.3769755
+                    ],
+                    [
+                        22.8625989,
+                        54.4233613
+                    ],
+                    [
+                        23.2956657,
+                        54.2678633
+                    ],
+                    [
+                        23.5347186,
+                        54.0955258
+                    ],
+                    [
+                        23.5208604,
+                        53.9775182
+                    ],
+                    [
+                        23.7183389,
+                        53.4629603
+                    ],
+                    [
+                        23.9296755,
+                        53.1856735
+                    ],
+                    [
+                        23.9296755,
+                        52.6887269
+                    ],
+                    [
+                        23.732197,
+                        52.6067497
+                    ],
+                    [
+                        23.5658994,
+                        52.5878101
+                    ],
+                    [
+                        23.2090523,
+                        52.3302642
+                    ],
+                    [
+                        23.1951942,
+                        52.2370089
+                    ],
+                    [
+                        23.5035377,
+                        52.1860596
+                    ],
+                    [
+                        23.6906226,
+                        52.0030113
+                    ],
+                    [
+                        23.5970802,
+                        51.739903
+                    ],
+                    [
+                        23.6629063,
+                        51.3888562
+                    ],
+                    [
+                        23.9366046,
+                        50.9827781
+                    ],
+                    [
+                        24.1687284,
+                        50.8604752
+                    ],
+                    [
+                        24.0197534,
+                        50.8035823
+                    ],
+                    [
+                        24.1098313,
+                        50.6610467
+                    ],
+                    [
+                        24.0578633,
+                        50.4188439
+                    ],
+                    [
+                        23.6178674,
+                        50.3083403
+                    ],
+                    [
+                        22.6824431,
+                        49.5163532
+                    ],
+                    [
+                        22.7378756,
+                        49.2094935
+                    ],
+                    [
+                        22.9041733,
+                        49.0780441
+                    ],
+                    [
+                        22.8625989,
+                        48.9940062
+                    ],
+                    [
+                        22.6096878,
+                        49.0371785
+                    ],
+                    [
+                        22.0761495,
+                        49.2004392
+                    ],
+                    [
+                        21.8474902,
+                        49.3721872
+                    ],
+                    [
+                        21.3763135,
+                        49.4488281
+                    ],
+                    [
+                        21.1026153,
+                        49.3721872
+                    ],
+                    [
+                        20.9120659,
+                        49.3022043
+                    ],
+                    [
+                        20.6452967,
+                        49.3902311
+                    ],
+                    [
+                        20.1845136,
+                        49.3315641
+                    ],
+                    [
+                        20.1186875,
+                        49.2004392
+                    ],
+                    [
+                        19.9419962,
+                        49.1302123
+                    ],
+                    [
+                        19.765305,
+                        49.2117568
+                    ],
+                    [
+                        19.7479823,
+                        49.3992506
+                    ],
+                    [
+                        19.6024718,
+                        49.4150307
+                    ],
+                    [
+                        19.5089294,
+                        49.5815389
+                    ],
+                    [
+                        19.4292451,
+                        49.5905232
+                    ],
+                    [
+                        19.2317666,
+                        49.4150307
+                    ],
+                    [
+                        18.9961783,
+                        49.387976
+                    ],
+                    [
+                        18.9338167,
+                        49.4916048
+                    ],
+                    [
+                        18.8368097,
+                        49.4938552
+                    ],
+                    [
+                        18.8021643,
+                        49.6623381
+                    ],
+                    [
+                        18.6427958,
+                        49.7094091
+                    ],
+                    [
+                        18.521537,
+                        49.8994693
+                    ],
+                    [
+                        18.0815412,
+                        50.0109209
+                    ],
+                    [
+                        17.8875272,
+                        49.9886512
+                    ],
+                    [
+                        17.7385522,
+                        50.0687739
+                    ],
+                    [
+                        17.6068999,
+                        50.1709584
+                    ],
+                    [
+                        17.7454813,
+                        50.2153184
+                    ],
+                    [
+                        17.710836,
+                        50.3017019
+                    ],
+                    [
+                        17.4163505,
+                        50.2640668
+                    ],
+                    [
+                        16.9486384,
+                        50.4453265
+                    ],
+                    [
+                        16.8932058,
+                        50.4033889
+                    ],
+                    [
+                        17.0006064,
+                        50.3105529
+                    ],
+                    [
+                        17.017929,
+                        50.2241854
+                    ],
+                    [
+                        16.8135215,
+                        50.186489
+                    ],
+                    [
+                        16.6402948,
+                        50.0976742
+                    ],
+                    [
+                        16.4324227,
+                        50.2862087
+                    ],
+                    [
+                        16.1968344,
+                        50.4276731
+                    ],
+                    [
+                        16.4220291,
+                        50.5885165
+                    ],
+                    [
+                        16.3388803,
+                        50.6632429
+                    ],
+                    [
+                        16.2280152,
+                        50.6368824
+                    ],
+                    [
+                        16.0547884,
+                        50.6127057
+                    ],
+                    [
+                        15.5732181,
+                        50.7641544
+                    ],
+                    [
+                        15.2683391,
+                        50.8976368
+                    ],
+                    [
+                        15.2440873,
+                        50.980597
+                    ],
+                    [
+                        15.0292862,
+                        51.0133036
+                    ],
+                    [
+                        15.0015699,
+                        50.8582883
+                    ],
+                    [
+                        14.8110205,
+                        50.8735944
+                    ],
+                    [
+                        14.956531,
+                        51.0721176
+                    ],
+                    [
+                        15.0188926,
+                        51.2914636
+                    ],
+                    [
+                        14.9392083,
+                        51.4601459
+                    ],
+                    [
+                        14.7209426,
+                        51.5571799
+                    ],
+                    [
+                        14.7521234,
+                        51.6260562
+                    ],
+                    [
+                        14.5996839,
+                        51.8427626
+                    ],
+                    [
+                        14.70362,
+                        52.0733396
+                    ],
+                    [
+                        14.5581095,
+                        52.2497371
+                    ],
+                    [
+                        14.5165351,
+                        52.425436
+                    ],
+                    [
+                        14.6031485,
+                        52.5878101
+                    ],
+                    [
+                        14.1146491,
+                        52.8208272
+                    ],
+                    [
+                        14.152759,
+                        52.9733951
+                    ],
+                    [
+                        14.3502374,
+                        53.0734212
+                    ],
+                    [
+                        14.4229927,
+                        53.2665624
+                    ],
+                    [
+                        14.1977979,
+                        53.8734759
+                    ],
+                    [
+                        14.2220497,
+                        53.9958517
+                    ]
+                ]
+            ],
+            "terms_text": "Copyright Â© Główny UrzÄ…d Geodezji i Kartografii."
+        },
         {
             "name": "Imagerie Drone (Haiti)",
             "type": "tms",
@@ -42382,8 +43018,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     ]
                 ]
             ],
-            "id": "kelowna_2012",
-            "default": true
+            "id": "kelowna_2012"
         },
         {
             "name": "Kelowna Roads overlay",
@@ -42814,7 +43449,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
         {
             "name": "Latest southwest British Columbia Landsat",
             "type": "tms",
-            "description": "Recent lower-resolution landwsat imagery for southwest British Columbia",
+            "description": "Recent lower-resolution landsat imagery for southwest British Columbia",
             "template": "http://{switch:a,b,c,d}.tile.paulnorman.ca/landsat_047026/{zoom}/{x}/{y}.png",
             "scaleExtent": [
                 5,
@@ -47701,7 +48336,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "name": "New & Misaligned TIGER Roads",
             "type": "tms",
             "description": "At zoom level 16+, public domain map data from the US Census. At lower zooms, only changes since 2006 minus changes already incorporated into OpenStreetMap",
-            "template": "http://{switch:a,b,c}.tiles.mapbox.com/v3/enf.y5c4ygb9,enf.ho20a3n1,enf.game1617/{zoom}/{x}/{y}.png",
+            "template": "http://{switch:a,b,c}.tiles.mapbox.com/v4/enf.e0b8291e/{zoom}/{x}/{y}.png?access_token=pk.eyJ1Ijoib3BlbnN0cmVldG1hcCIsImEiOiJhNVlHd29ZIn0.ti6wATGDWOmCnCYen-Ip7Q",
             "scaleExtent": [
                 0,
                 22
@@ -52237,7 +52872,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "name": "OpenStreetMap (Mapnik)",
             "type": "tms",
             "description": "The default OpenStreetMap layer.",
-            "template": "http://tile.openstreetmap.org/{zoom}/{x}/{y}.png",
+            "template": "http://{switch:a,b,c}.tile.openstreetmap.org/{zoom}/{x}/{y}.png",
             "scaleExtent": [
                 0,
                 19
@@ -54038,6 +54673,36 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             ],
             "terms_text": "Stadt Uster Vermessung Orthophoto 2008"
         },
+        {
+            "name": "Stadt Zürich Luftbild 2011",
+            "type": "tms",
+            "template": "http://mapproxy.sosm.ch:8080/tiles/zh_luftbild2011/EPSG900913/{z}/{x}/{y}.png?origin=nw",
+            "polygon": [
+                [
+                    [
+                        8.4441,
+                        47.3141
+                    ],
+                    [
+                        8.4441,
+                        47.4411
+                    ],
+                    [
+                        8.6284,
+                        47.4411
+                    ],
+                    [
+                        8.6284,
+                        47.3141
+                    ],
+                    [
+                        8.4441,
+                        47.3141
+                    ]
+                ]
+            ],
+            "terms_text": "Stadt Zürich Luftbild 2011"
+        },
         {
             "name": "Stevns (Denmark)",
             "type": "tms",
@@ -64399,26 +65064,25 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "tags": {
                     "amenity": "*"
                 },
+                "searchable": false,
                 "name": "Amenity"
             },
             "amenity/arts_centre": {
-                "name": "Arts Center",
+                "icon": "theatre",
+                "fields": [
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "arts",
-                    "arts centre"
-                ],
+                "terms": [],
                 "tags": {
                     "amenity": "arts_centre"
                 },
-                "icon": "theatre",
-                "fields": [
-                    "building_area",
-                    "address"
-                ]
+                "name": "Arts Center"
             },
             "amenity/atm": {
                 "icon": "bank",
@@ -64429,6 +65093,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "point",
                     "vertex"
                 ],
+                "terms": [
+                    "money",
+                    "cash",
+                    "machine"
+                ],
                 "tags": {
                     "amenity": "atm"
                 },
@@ -64438,36 +65107,28 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
-                    "coffer",
-                    "countinghouse",
                     "credit union",
-                    "depository",
-                    "exchequer",
+                    "check",
+                    "deposit",
                     "fund",
-                    "hoard",
-                    "investment firm",
+                    "investment",
                     "repository",
                     "reserve",
-                    "reservoir",
                     "safe",
                     "savings",
                     "stock",
-                    "stockpile",
-                    "store",
-                    "storehouse",
-                    "thrift",
                     "treasury",
-                    "trust company",
+                    "trust",
                     "vault"
                 ],
                 "tags": {
@@ -64478,41 +65139,47 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "amenity/bar": {
                 "icon": "bar",
                 "fields": [
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "dive",
+                    "beer",
+                    "bier",
+                    "booze"
+                ],
                 "tags": {
                     "amenity": "bar"
                 },
-                "terms": [],
                 "name": "Bar"
             },
             "amenity/bbq": {
-                "geometry": [
-                    "point"
-                ],
-                "tags": {
-                    "amenity": "bbq"
-                },
                 "fields": [
                     "covered",
                     "fuel"
                 ],
+                "geometry": [
+                    "point"
+                ],
                 "terms": [
-                    "barbecue",
-                    "bbq",
-                    "grill"
+                    "bbq"
                 ],
+                "tags": {
+                    "amenity": "bbq"
+                },
                 "name": "Barbecue/Grill"
             },
             "amenity/bench": {
+                "fields": [
+                    "backrest"
+                ],
                 "geometry": [
                     "point",
                     "vertex",
@@ -64521,9 +65188,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "tags": {
                     "amenity": "bench"
                 },
-                "fields": [
-                    "backrest"
-                ],
                 "name": "Bench"
             },
             "amenity/bicycle_parking": {
@@ -64540,6 +65204,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "vertex",
                     "area"
                 ],
+                "terms": [
+                    "bike"
+                ],
                 "tags": {
                     "amenity": "bicycle_parking"
                 },
@@ -64557,12 +65224,18 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "vertex",
                     "area"
                 ],
+                "terms": [
+                    "bike"
+                ],
                 "tags": {
                     "amenity": "bicycle_rental"
                 },
                 "name": "Bicycle Rental"
             },
             "amenity/boat_rental": {
+                "fields": [
+                    "operator"
+                ],
                 "geometry": [
                     "point",
                     "area"
@@ -64570,12 +65243,30 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "tags": {
                     "amenity": "boat_rental"
                 },
+                "name": "Boat Rental"
+            },
+            "amenity/bureau_de_change": {
+                "icon": "bank",
                 "fields": [
                     "operator"
                 ],
-                "name": "Boat Rental"
+                "geometry": [
+                    "point",
+                    "vertex"
+                ],
+                "terms": [
+                    "bureau de change",
+                    "money changer"
+                ],
+                "tags": {
+                    "amenity": "bureau_de_change"
+                },
+                "name": "Currency Exchange"
             },
             "amenity/bus_station": {
+                "fields": [
+                    "operator"
+                ],
                 "geometry": [
                     "point",
                     "area"
@@ -64583,9 +65274,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "tags": {
                     "amenity": "bus_station"
                 },
-                "fields": [
-                    "operator"
-                ],
                 "name": "Bus Station"
             },
             "amenity/cafe": {
@@ -64593,20 +65281,18 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
                     "coffee",
-                    "tea",
-                    "coffee shop"
+                    "tea"
                 ],
                 "tags": {
                     "amenity": "cafe"
@@ -64615,6 +65301,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             },
             "amenity/car_rental": {
                 "icon": "car",
+                "fields": [
+                    "operator"
+                ],
                 "geometry": [
                     "point",
                     "area"
@@ -64622,13 +65311,14 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "tags": {
                     "amenity": "car_rental"
                 },
-                "fields": [
-                    "operator"
-                ],
                 "name": "Car Rental"
             },
             "amenity/car_sharing": {
                 "icon": "car",
+                "fields": [
+                    "operator",
+                    "capacity"
+                ],
                 "geometry": [
                     "point",
                     "area"
@@ -64636,14 +65326,15 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "tags": {
                     "amenity": "car_sharing"
                 },
-                "fields": [
-                    "operator",
-                    "capacity"
-                ],
                 "name": "Car Sharing"
             },
             "amenity/car_wash": {
                 "icon": "car",
+                "fields": [
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
                     "area"
@@ -64651,13 +65342,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "tags": {
                     "amenity": "car_wash"
                 },
-                "fields": [
-                    "building_area"
-                ],
                 "name": "Car Wash"
             },
             "amenity/charging_station": {
                 "icon": "car",
+                "fields": [
+                    "operator"
+                ],
                 "geometry": [
                     "point",
                     "area"
@@ -64665,9 +65356,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "tags": {
                     "amenity": "charging_station"
                 },
-                "fields": [
-                    "operator"
-                ],
                 "terms": [
                     "EV",
                     "Electric Vehicle",
@@ -64678,53 +65366,45 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "amenity/childcare": {
                 "icon": "school",
                 "fields": [
+                    "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
-                    "nursery",
+                    "daycare",
                     "orphanage",
                     "playgroup"
                 ],
                 "tags": {
                     "amenity": "childcare"
                 },
-                "name": "Childcare"
+                "name": "Nursery/Childcare"
             },
             "amenity/cinema": {
                 "icon": "cinema",
                 "fields": [
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
-                    "big screen",
-                    "bijou",
-                    "cine",
                     "drive-in",
                     "film",
-                    "flicks",
-                    "motion pictures",
-                    "movie house",
-                    "movie theater",
-                    "moving pictures",
-                    "nabes",
-                    "photoplay",
-                    "picture show",
-                    "pictures",
-                    "playhouse",
+                    "flick",
+                    "movie",
+                    "theater",
+                    "picture",
                     "show",
-                    "silver screen"
+                    "screen"
                 ],
                 "tags": {
                     "amenity": "cinema"
@@ -64732,24 +65412,24 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "name": "Cinema"
             },
             "amenity/clinic": {
-                "name": "Clinic",
+                "icon": "hospital",
+                "fields": [
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
-                    "clinic",
-                    "medical clinic"
+                    "medical",
+                    "urgentcare"
                 ],
                 "tags": {
                     "amenity": "clinic"
                 },
-                "icon": "hospital",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "opening_hours"
-                ]
+                "name": "Clinic"
             },
             "amenity/clock": {
                 "geometry": [
@@ -64771,11 +65451,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "point",
                     "area"
                 ],
+                "terms": [
+                    "university"
+                ],
                 "tags": {
                     "amenity": "college"
                 },
-                "terms": [],
-                "name": "College"
+                "name": "College Grounds"
             },
             "amenity/compressed_air": {
                 "icon": "car",
@@ -64789,14 +65471,14 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "name": "Compressed Air"
             },
             "amenity/courthouse": {
+                "icon": "town-hall",
                 "fields": [
                     "operator",
-                    "building_area",
-                    "address"
+                    "address",
+                    "building_area"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -64805,63 +65487,63 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "name": "Courthouse"
             },
             "amenity/dentist": {
-                "name": "Dentist",
+                "icon": "hospital",
+                "fields": [
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
-                    "dentist",
-                    "dentist's office"
+                    "tooth",
+                    "teeth"
                 ],
                 "tags": {
                     "amenity": "dentist"
                 },
+                "name": "Dentist"
+            },
+            "amenity/doctor": {
                 "icon": "hospital",
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "amenity/doctor": {
-                "name": "Doctor",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
-                    "doctor",
-                    "doctor's office"
+                    "medic*"
                 ],
                 "tags": {
                     "amenity": "doctors"
                 },
-                "icon": "hospital",
-                "fields": [
-                    "building_area",
-                    "address",
-                    "opening_hours"
-                ]
+                "name": "Doctor"
             },
             "amenity/dojo": {
                 "icon": "pitch",
+                "fields": [
+                    "sport",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
                     "martial arts",
-                    "dojo",
                     "dojang"
                 ],
                 "tags": {
                     "amenity": "dojo"
                 },
-                "fields": [
-                    "address",
-                    "sport"
-                ],
                 "name": "Dojo / Martial Arts Academy"
             },
             "amenity/drinking_water": {
@@ -64873,62 +65555,64 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "amenity": "drinking_water"
                 },
                 "terms": [
-                    "water fountain",
-                    "potable water"
+                    "fountain",
+                    "potable"
                 ],
                 "name": "Drinking Water"
             },
             "amenity/embassy": {
+                "icon": "embassy",
+                "fields": [
+                    "country",
+                    "address",
+                    "building_area"
+                ],
                 "geometry": [
-                    "area",
-                    "point"
+                    "point",
+                    "area"
                 ],
                 "tags": {
                     "amenity": "embassy"
                 },
-                "fields": [
-                    "country",
-                    "building_area"
-                ],
-                "icon": "embassy",
                 "name": "Embassy"
             },
             "amenity/fast_food": {
                 "icon": "fast-food",
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
                     "amenity": "fast_food"
                 },
-                "terms": [],
+                "terms": [
+                    "restaurant"
+                ],
                 "name": "Fast Food"
             },
             "amenity/fire_station": {
                 "icon": "fire-station",
                 "fields": [
                     "operator",
-                    "building_area",
-                    "address"
+                    "address",
+                    "building_area"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [],
                 "tags": {
                     "amenity": "fire_station"
                 },
-                "terms": [],
                 "name": "Fire Station"
             },
             "amenity/fountain": {
@@ -64946,11 +65630,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
@@ -64975,7 +65659,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -64986,26 +65669,26 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "amenity/hospital": {
                 "icon": "hospital",
                 "fields": [
-                    "emergency",
-                    "address"
+                    "operator",
+                    "address",
+                    "emergency"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
                     "clinic",
+                    "doctor",
                     "emergency room",
                     "health service",
                     "hospice",
                     "infirmary",
                     "institution",
                     "nursing home",
-                    "rest home",
                     "sanatorium",
                     "sanitarium",
-                    "sick bay",
+                    "sick",
                     "surgery",
                     "ward"
                 ],
@@ -65017,65 +65700,69 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "amenity/kindergarten": {
                 "icon": "school",
                 "fields": [
+                    "operator",
                     "address"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
-                    "nursery",
-                    "preschool"
+                    "kindergarden",
+                    "pre-school"
                 ],
                 "tags": {
                     "amenity": "kindergarten"
                 },
-                "name": "Kindergarten Grounds"
+                "name": "Preschool/Kindergarten Grounds"
             },
             "amenity/library": {
                 "icon": "library",
                 "fields": [
                     "operator",
                     "building_area",
-                    "address"
+                    "address",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "book"
+                ],
                 "tags": {
                     "amenity": "library"
                 },
-                "terms": [],
                 "name": "Library"
             },
             "amenity/marketplace": {
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
                     "amenity": "marketplace"
                 },
-                "fields": [
-                    "building_area"
-                ],
                 "name": "Marketplace"
             },
             "amenity/nightclub": {
                 "icon": "bar",
                 "fields": [
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -65092,6 +65779,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "amenity/parking": {
                 "icon": "parking",
                 "fields": [
+                    "operator",
                     "parking",
                     "capacity",
                     "fee",
@@ -65113,35 +65801,37 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             },
             "amenity/parking_entrance": {
                 "icon": "entrance",
+                "fields": [
+                    "access_simple",
+                    "ref"
+                ],
                 "geometry": [
                     "vertex"
                 ],
                 "tags": {
                     "amenity": "parking_entrance"
                 },
-                "fields": [
-                    "access_simple",
-                    "ref"
-                ],
                 "name": "Parking Garage Entrance/Exit"
             },
             "amenity/pharmacy": {
                 "icon": "pharmacy",
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
                     "amenity": "pharmacy"
                 },
-                "terms": [],
+                "terms": [
+                    "drug",
+                    "medicine"
+                ],
                 "name": "Pharmacy"
             },
             "amenity/place_of_worship": {
@@ -65149,12 +65839,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "fields": [
                     "religion",
                     "denomination",
-                    "building_area",
-                    "address"
+                    "address",
+                    "building_area"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
@@ -65196,7 +65885,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
@@ -65223,7 +65911,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
@@ -65235,7 +65922,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "chancel",
                     "chantry",
                     "chapel",
-                    "church",
                     "fold",
                     "house of God",
                     "house of prayer",
@@ -65265,12 +65951,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
-                    "jewish",
-                    "synagogue"
+                    "jewish"
                 ],
                 "tags": {
                     "amenity": "place_of_worship",
@@ -65287,12 +65971,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
-                    "muslim",
-                    "mosque"
+                    "muslim"
                 ],
                 "tags": {
                     "amenity": "place_of_worship",
@@ -65304,43 +65986,24 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "police",
                 "fields": [
                     "operator",
-                    "building_area",
-                    "address"
+                    "address",
+                    "building_area"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
                     "badge",
-                    "bear",
-                    "blue",
-                    "bluecoat",
-                    "bobby",
-                    "boy scout",
-                    "bull",
                     "constable",
                     "constabulary",
                     "cop",
-                    "copper",
-                    "corps",
-                    "county mounty",
                     "detective",
                     "fed",
-                    "flatfoot",
-                    "force",
-                    "fuzz",
-                    "gendarme",
-                    "gumshoe",
-                    "heat",
                     "law",
-                    "law enforcement",
-                    "man",
-                    "narc",
-                    "officers",
-                    "patrolman",
-                    "police"
+                    "enforcement",
+                    "officer",
+                    "patrol"
                 ],
                 "tags": {
                     "amenity": "police"
@@ -65361,12 +66024,8 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "amenity": "post_box"
                 },
                 "terms": [
-                    "letter drop",
-                    "letterbox",
-                    "mail drop",
-                    "mailbox",
-                    "pillar box",
-                    "postbox"
+                    "letter",
+                    "post"
                 ],
                 "name": "Mailbox"
             },
@@ -65374,14 +66033,18 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "post",
                 "fields": [
                     "operator",
-                    "collection_times",
-                    "building_area"
+                    "address",
+                    "building_area",
+                    "collection_times"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "letter",
+                    "mail"
+                ],
                 "tags": {
                     "amenity": "post_office"
                 },
@@ -65390,28 +66053,32 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "amenity/pub": {
                 "icon": "beer",
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
                     "amenity": "pub"
                 },
-                "terms": [],
+                "terms": [
+                    "dive",
+                    "beer",
+                    "bier",
+                    "booze"
+                ],
                 "name": "Pub"
             },
             "amenity/ranger_station": {
                 "fields": [
-                    "building_area",
-                    "opening_hours",
                     "operator",
-                    "phone"
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
@@ -65434,6 +66101,8 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "amenity/recycling": {
                 "icon": "recycling",
                 "fields": [
+                    "operator",
+                    "address",
                     "recycling/cans",
                     "recycling/glass",
                     "recycling/paper",
@@ -65441,10 +66110,15 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
-                "terms": [],
+                "terms": [
+                    "can",
+                    "bottle",
+                    "garbage",
+                    "scrap",
+                    "trash"
+                ],
                 "tags": {
                     "amenity": "recycling"
                 },
@@ -65454,50 +66128,31 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
                     "bar",
-                    "cafeteria",
+                    "breakfast",
+                    "cafe",
                     "café",
                     "canteen",
-                    "chophouse",
-                    "coffee shop",
-                    "diner",
-                    "dining room",
-                    "dive*",
-                    "doughtnut shop",
+                    "coffee",
+                    "dine",
+                    "dining",
+                    "dinner",
                     "drive-in",
-                    "eatery",
-                    "eating house",
-                    "eating place",
-                    "fast-food place",
-                    "fish and chips",
-                    "greasy spoon",
+                    "eat",
                     "grill",
-                    "hamburger stand",
-                    "hashery",
-                    "hideaway",
-                    "hotdog stand",
-                    "inn",
-                    "joint*",
-                    "luncheonette",
-                    "lunchroom",
-                    "night club",
-                    "outlet*",
-                    "pizzeria",
-                    "saloon",
-                    "soda fountain",
-                    "watering hole"
+                    "lunch",
+                    "table"
                 ],
                 "tags": {
                     "amenity": "restaurant"
@@ -65512,26 +66167,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
                     "academy",
-                    "alma mater",
-                    "blackboard",
-                    "college",
-                    "department",
-                    "discipline",
-                    "establishment",
-                    "faculty",
-                    "hall",
-                    "halls of ivy",
-                    "institute",
-                    "institution",
-                    "jail*",
-                    "schoolhouse",
-                    "seminary",
-                    "university"
+                    "elementary school",
+                    "middle school",
+                    "high school"
                 ],
                 "tags": {
                     "amenity": "school"
@@ -65547,16 +66189,25 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "vertex",
                     "area"
                 ],
+                "terms": [
+                    "lean-to",
+                    "gazebo",
+                    "picnic"
+                ],
                 "tags": {
                     "amenity": "shelter"
                 },
-                "terms": [
-                    "lean-to"
-                ],
                 "name": "Shelter"
             },
             "amenity/social_facility": {
-                "name": "Social Facility",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours",
+                    "wheelchair",
+                    "social_facility_for"
+                ],
                 "geometry": [
                     "point",
                     "area"
@@ -65565,17 +66216,16 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "tags": {
                     "amenity": "social_facility"
                 },
+                "name": "Social Facility"
+            },
+            "amenity/social_facility/food_bank": {
                 "fields": [
-                    "social_facility_for",
+                    "operator",
                     "address",
-                    "phone",
+                    "building_area",
                     "opening_hours",
-                    "wheelchair",
-                    "operator"
-                ]
-            },
-            "amenity/social_facility/food_bank": {
-                "name": "Food Bank",
+                    "social_facility_for"
+                ],
                 "geometry": [
                     "point",
                     "area"
@@ -65585,42 +66235,42 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "amenity": "social_facility",
                     "social_facility": "food_bank"
                 },
+                "name": "Food Bank"
+            },
+            "amenity/social_facility/group_home": {
                 "fields": [
-                    "social_facility_for",
+                    "operator",
                     "address",
-                    "phone",
+                    "building_area",
                     "opening_hours",
                     "wheelchair",
-                    "operator"
-                ]
-            },
-            "amenity/social_facility/group_home": {
-                "name": "Group Home",
+                    "social_facility_for"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
-                    "elderly",
                     "old",
-                    "senior living"
+                    "senior",
+                    "living"
                 ],
                 "tags": {
                     "amenity": "social_facility",
                     "social_facility": "group_home",
                     "social_facility_for": "senior"
                 },
+                "name": "Elderly Group Home"
+            },
+            "amenity/social_facility/homeless_shelter": {
                 "fields": [
-                    "social_facility_for",
+                    "operator",
                     "address",
-                    "phone",
+                    "building_area",
                     "opening_hours",
                     "wheelchair",
-                    "operator"
-                ]
-            },
-            "amenity/social_facility/homeless_shelter": {
-                "name": "Homeless Shelter",
+                    "social_facility_for"
+                ],
                 "geometry": [
                     "point",
                     "area"
@@ -65635,40 +66285,31 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "social_facility": "shelter",
                     "social_facility:for": "homeless"
                 },
-                "fields": [
-                    "social_facility_for",
-                    "address",
-                    "phone",
-                    "opening_hours",
-                    "wheelchair",
-                    "operator"
-                ]
+                "name": "Homeless Shelter"
             },
             "amenity/studio": {
-                "name": "Studio",
+                "icon": "music",
+                "fields": [
+                    "studio_type",
+                    "address",
+                    "building_area"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
-                    "recording studio",
-                    "studio",
+                    "recording",
                     "radio",
-                    "radio studio",
-                    "television",
-                    "television studio"
+                    "television"
                 ],
                 "tags": {
                     "amenity": "studio"
                 },
-                "icon": "music",
-                "fields": [
-                    "building_area",
-                    "studio_type",
-                    "address"
-                ]
+                "name": "Studio"
             },
             "amenity/swimming_pool": {
+                "icon": "swimming",
                 "geometry": [
                     "point",
                     "vertex",
@@ -65677,11 +66318,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "tags": {
                     "amenity": "swimming_pool"
                 },
-                "icon": "swimming",
-                "searchable": false,
-                "name": "Swimming Pool"
+                "name": "Swimming Pool",
+                "searchable": false
             },
             "amenity/taxi": {
+                "icon": "car",
                 "fields": [
                     "operator",
                     "capacity"
@@ -65717,12 +66358,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "theatre",
                 "fields": [
                     "operator",
-                    "building_area",
-                    "address"
+                    "address",
+                    "building_area"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
@@ -65737,6 +66377,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "name": "Theater"
             },
             "amenity/toilets": {
+                "icon": "toilets",
                 "fields": [
                     "toilets/disposal",
                     "operator",
@@ -65763,27 +66404,25 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "tags": {
                     "amenity": "toilets"
                 },
-                "icon": "toilets",
                 "name": "Toilets"
             },
             "amenity/townhall": {
                 "icon": "town-hall",
                 "fields": [
-                    "building_area",
-                    "address"
+                    "operator",
+                    "address",
+                    "building_area"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
-                    "village hall",
-                    "city government",
+                    "village",
+                    "city",
+                    "government",
                     "courthouse",
-                    "municipal building",
-                    "municipal center",
-                    "municipal centre"
+                    "municipal"
                 ],
                 "tags": {
                     "amenity": "townhall"
@@ -65798,16 +66437,15 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
-                "tags": {
-                    "amenity": "university"
-                },
                 "terms": [
                     "college"
                 ],
-                "name": "University"
+                "tags": {
+                    "amenity": "university"
+                },
+                "name": "University Grounds"
             },
             "amenity/vending_machine": {
                 "fields": [
@@ -65817,13 +66455,24 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "geometry": [
                     "point"
                 ],
+                "terms": [
+                    "snack",
+                    "soda",
+                    "ticket"
+                ],
                 "tags": {
                     "amenity": "vending_machine"
                 },
                 "name": "Vending Machine"
             },
             "amenity/veterinary": {
-                "fields": [],
+                "icon": "dog-park",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
                     "area"
@@ -65849,10 +66498,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "amenity": "waste_basket"
                 },
                 "terms": [
-                    "rubbish bin",
-                    "litter bin",
-                    "trash can",
-                    "garbage can"
+                    "rubbish",
+                    "litter",
+                    "trash",
+                    "garbage"
                 ],
                 "name": "Waste Basket"
             },
@@ -66099,7 +66748,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -66115,7 +66763,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -66130,7 +66777,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -66147,7 +66793,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -66163,7 +66808,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -66179,7 +66823,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -66195,7 +66838,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -66203,6 +66845,24 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "name": "Church"
             },
+            "building/college": {
+                "icon": "building",
+                "fields": [
+                    "address",
+                    "levels"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "university"
+                ],
+                "tags": {
+                    "building": "college"
+                },
+                "name": "College Building"
+            },
             "building/commercial": {
                 "icon": "commercial",
                 "fields": [
@@ -66211,7 +66871,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -66227,7 +66886,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -66243,7 +66901,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -66260,7 +66917,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -66285,7 +66941,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -66301,7 +66956,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -66317,7 +66971,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -66333,7 +66986,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -66350,7 +67002,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -66376,7 +67027,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "building/hut": {
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -66392,7 +67042,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -66400,6 +67049,25 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "name": "Industrial Building"
             },
+            "building/kindergarten": {
+                "icon": "building",
+                "fields": [
+                    "address",
+                    "levels"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "kindergarden",
+                    "pre-school"
+                ],
+                "tags": {
+                    "building": "kindergarten"
+                },
+                "name": "Preschool/Kindergarten Building"
+            },
             "building/public": {
                 "icon": "building",
                 "fields": [
@@ -66409,7 +67077,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -66425,7 +67092,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -66442,7 +67108,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -66453,12 +67118,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "building/roof": {
                 "icon": "building",
                 "fields": [
-                    "address",
-                    "levels"
+                    "address"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -66474,9 +67137,14 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "academy",
+                    "elementary school",
+                    "middle school",
+                    "high school"
+                ],
                 "tags": {
                     "building": "school"
                 },
@@ -66490,7 +67158,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -66506,7 +67173,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -66522,7 +67188,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -66538,7 +67203,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -66571,9 +67235,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "college"
+                ],
                 "tags": {
                     "building": "university"
                 },
@@ -66587,7 +67253,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -66595,948 +67260,871 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "name": "Warehouse"
             },
-            "craft/basket_maker": {
-                "name": "Basket Maker",
+            "craft": {
+                "icon": "marker-stroked",
+                "fields": [
+                    "craft",
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "basket",
-                    "basketry",
-                    "basket maker",
-                    "basket weaver"
-                ],
                 "tags": {
-                    "craft": "basket_maker"
+                    "craft": "*"
                 },
+                "terms": [],
+                "name": "Craft"
+            },
+            "craft/basket_maker": {
                 "icon": "art-gallery",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "craft": "basket_maker"
+                },
+                "name": "Basket Maker"
             },
             "craft/beekeeper": {
-                "name": "Beekeeper",
+                "icon": "farm",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "bees",
-                    "beekeeper",
-                    "bee box"
-                ],
                 "tags": {
                     "craft": "beekeeper"
                 },
+                "name": "Beekeeper"
+            },
+            "craft/blacksmith": {
                 "icon": "farm",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/blacksmith": {
-                "name": "Blacksmith",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "blacksmith"
-                ],
                 "tags": {
                     "craft": "blacksmith"
                 },
-                "icon": "farm",
+                "name": "Blacksmith"
+            },
+            "craft/boatbuilder": {
+                "icon": "marker-stroked",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/boatbuilder": {
-                "name": "Boat Builder",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "boat builder"
-                ],
                 "tags": {
                     "craft": "boatbuilder"
                 },
-                "icon": "marker-stroked",
+                "name": "Boat Builder"
+            },
+            "craft/bookbinder": {
+                "icon": "library",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/bookbinder": {
-                "name": "Bookbinder",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
-                    "bookbinder",
                     "book repair"
                 ],
                 "tags": {
                     "craft": "bookbinder"
                 },
-                "icon": "library",
+                "name": "Bookbinder"
+            },
+            "craft/brewery": {
+                "icon": "beer",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/brewery": {
-                "name": "Brewery",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
-                    "brewery"
+                    "beer",
+                    "bier"
                 ],
                 "tags": {
                     "craft": "brewery"
                 },
-                "icon": "beer",
+                "name": "Brewery"
+            },
+            "craft/carpenter": {
+                "icon": "logging",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/carpenter": {
-                "name": "Carpenter",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
-                    "carpenter",
                     "woodworker"
                 ],
                 "tags": {
                     "craft": "carpenter"
                 },
-                "icon": "logging",
+                "name": "Carpenter"
+            },
+            "craft/carpet_layer": {
+                "icon": "square",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/carpet_layer": {
-                "name": "Carpet Layer",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "carpet layer"
-                ],
                 "tags": {
                     "craft": "carpet_layer"
                 },
-                "icon": "square",
+                "name": "Carpet Layer"
+            },
+            "craft/caterer": {
+                "icon": "bakery",
                 "fields": [
-                    "building_area",
-                    "address",
+                    "cuisine",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/caterer": {
-                "name": "Caterer",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "Caterer",
-                    "Catering"
-                ],
                 "tags": {
                     "craft": "caterer"
                 },
-                "icon": "bakery",
+                "name": "Caterer"
+            },
+            "craft/clockmaker": {
+                "icon": "circle-stroked",
                 "fields": [
-                    "cuisine",
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/clockmaker": {
-                "name": "Clockmaker",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "clock",
-                    "clockmaker",
-                    "clock repair"
-                ],
                 "tags": {
                     "craft": "clockmaker"
                 },
-                "icon": "circle-stroked",
+                "name": "Clockmaker"
+            },
+            "craft/confectionary": {
+                "icon": "bakery",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/confectionary": {
-                "name": "Confectionary",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
-                    "confectionary",
                     "sweets",
                     "candy"
                 ],
                 "tags": {
                     "craft": "confectionary"
                 },
-                "icon": "bakery",
+                "name": "Confectionary"
+            },
+            "craft/dressmaker": {
+                "icon": "clothing-store",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/dressmaker": {
-                "name": "Dressmaker",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
-                    "dress",
-                    "dressmaker"
+                    "seamstress"
                 ],
                 "tags": {
                     "craft": "dressmaker"
                 },
-                "icon": "clothing-store",
+                "name": "Dressmaker"
+            },
+            "craft/electrician": {
+                "icon": "marker-stroked",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/electrician": {
-                "name": "Electrician",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
-                    "electrician"
+                    "power",
+                    "wire"
                 ],
                 "tags": {
                     "craft": "electrician"
                 },
-                "icon": "marker-stroked",
+                "name": "Electrician"
+            },
+            "craft/gardener": {
+                "icon": "garden",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/gardener": {
-                "name": "Gardener",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
-                    "gardener",
                     "landscaper",
                     "grounds keeper"
                 ],
                 "tags": {
                     "craft": "gardener"
                 },
-                "icon": "garden",
+                "name": "Gardener"
+            },
+            "craft/glaziery": {
+                "icon": "fire-station",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/glaziery": {
-                "name": "Glaziery",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
                     "glass",
-                    "glass foundry",
                     "stained-glass",
                     "window"
                 ],
                 "tags": {
                     "craft": "glaziery"
                 },
-                "icon": "fire-station",
+                "name": "Glaziery"
+            },
+            "craft/handicraft": {
+                "icon": "art-gallery",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/handicraft": {
-                "name": "Handicraft",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "handicraft"
-                ],
                 "tags": {
                     "craft": "handicraft"
                 },
-                "icon": "art-gallery",
+                "name": "Handicraft"
+            },
+            "craft/hvac": {
+                "icon": "marker-stroked",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/hvac": {
-                "name": "HVAC",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
-                    "heating",
-                    "ventilating",
-                    "air-conditioning",
+                    "heat*",
+                    "vent*",
                     "air conditioning"
                 ],
                 "tags": {
                     "craft": "hvac"
                 },
+                "name": "HVAC"
+            },
+            "craft/insulator": {
                 "icon": "marker-stroked",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/insulator": {
-                "name": "Insulator",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "insulation",
-                    "insulator"
-                ],
                 "tags": {
                     "craft": "insulation"
                 },
+                "name": "Insulator"
+            },
+            "craft/jeweler": {
                 "icon": "marker-stroked",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/jeweler": {
-                "name": "Jeweler",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "jeweler",
-                    "gem",
-                    "diamond"
-                ],
                 "tags": {
                     "craft": "jeweler"
                 },
+                "name": "Jeweler",
+                "searchable": false
+            },
+            "craft/key_cutter": {
                 "icon": "marker-stroked",
-                "searchable": false,
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/key_cutter": {
-                "name": "Key Cutter",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "key",
-                    "key cutter"
-                ],
                 "tags": {
                     "craft": "key_cutter"
                 },
+                "name": "Key Cutter"
+            },
+            "craft/locksmith": {
                 "icon": "marker-stroked",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/locksmith": {
-                "name": "Locksmith",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "locksmith",
-                    "lock"
-                ],
                 "tags": {
                     "craft": "locksmith"
                 },
+                "name": "Locksmith",
+                "searchable": false
+            },
+            "craft/metal_construction": {
                 "icon": "marker-stroked",
-                "searchable": false,
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/metal_construction": {
-                "name": "Metal Construction",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "metal construction"
-                ],
                 "tags": {
                     "craft": "metal_construction"
                 },
+                "name": "Metal Construction"
+            },
+            "craft/optician": {
                 "icon": "marker-stroked",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/optician": {
-                "name": "Optician",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "glasses",
-                    "optician"
-                ],
                 "tags": {
                     "craft": "optician"
                 },
-                "icon": "marker-stroked",
-                "searchable": false,
+                "name": "Optician",
+                "searchable": false
+            },
+            "craft/painter": {
+                "icon": "art-gallery",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/painter": {
-                "name": "Painter",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "painter"
-                ],
                 "tags": {
                     "craft": "painter"
                 },
-                "icon": "art-gallery",
+                "name": "Painter"
+            },
+            "craft/photographer": {
+                "icon": "camera",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/photographer": {
-                "name": "Photographer",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "photographer"
-                ],
                 "tags": {
                     "craft": "photographer"
                 },
+                "name": "Photographer"
+            },
+            "craft/photographic_laboratory": {
                 "icon": "camera",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/photographic_laboratory": {
-                "name": "Photographic Laboratory",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
-                    "photographic laboratory",
-                    "film developer"
+                    "film"
                 ],
                 "tags": {
                     "craft": "photographic_laboratory"
                 },
-                "icon": "camera",
+                "name": "Photographic Laboratory"
+            },
+            "craft/plasterer": {
+                "icon": "marker-stroked",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/plasterer": {
-                "name": "Plasterer",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "plasterer"
-                ],
                 "tags": {
                     "craft": "plasterer"
                 },
+                "name": "Plasterer"
+            },
+            "craft/plumber": {
                 "icon": "marker-stroked",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/plumber": {
-                "name": "Plumber",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
-                    "pumber"
+                    "pipe"
                 ],
                 "tags": {
                     "craft": "plumber"
                 },
-                "icon": "marker-stroked",
+                "name": "Plumber"
+            },
+            "craft/pottery": {
+                "icon": "art-gallery",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/pottery": {
-                "name": "Pottery",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
-                    "pottery",
-                    "potter"
+                    "ceramic"
                 ],
                 "tags": {
                     "craft": "pottery"
                 },
-                "icon": "art-gallery",
+                "name": "Pottery"
+            },
+            "craft/rigger": {
+                "icon": "marker-stroked",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/rigger": {
-                "name": "Rigger",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "rigger"
-                ],
                 "tags": {
                     "craft": "rigger"
                 },
+                "name": "Rigger"
+            },
+            "craft/roofer": {
                 "icon": "marker-stroked",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/roofer": {
-                "name": "Roofer",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "roofer"
-                ],
                 "tags": {
                     "craft": "roofer"
                 },
+                "name": "Roofer"
+            },
+            "craft/saddler": {
                 "icon": "marker-stroked",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/saddler": {
-                "name": "Saddler",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "saddler"
-                ],
                 "tags": {
                     "craft": "saddler"
                 },
+                "name": "Saddler"
+            },
+            "craft/sailmaker": {
                 "icon": "marker-stroked",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/sailmaker": {
-                "name": "Sailmaker",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "sailmaker"
-                ],
                 "tags": {
                     "craft": "sailmaker"
                 },
-                "icon": "marker-stroked",
+                "name": "Sailmaker"
+            },
+            "craft/sawmill": {
+                "icon": "park",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/sawmill": {
-                "name": "Sawmill",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
-                    "sawmill",
                     "lumber"
                 ],
                 "tags": {
                     "craft": "sawmill"
                 },
-                "icon": "park",
+                "name": "Sawmill"
+            },
+            "craft/scaffolder": {
+                "icon": "marker-stroked",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/scaffolder": {
-                "name": "Scaffolder",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "scaffolder"
-                ],
                 "tags": {
                     "craft": "scaffolder"
                 },
-                "icon": "marker-stroked",
+                "name": "Scaffolder"
+            },
+            "craft/sculpter": {
+                "icon": "art-gallery",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/sculpter": {
-                "name": "Sculpter",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "sculpter"
-                ],
                 "tags": {
                     "craft": "sculpter"
                 },
-                "icon": "art-gallery",
+                "name": "Sculpter"
+            },
+            "craft/shoemaker": {
+                "icon": "marker-stroked",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/shoemaker": {
-                "name": "Shoemaker",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
-                    "shoe repair",
-                    "shoemaker"
+                    "cobbler"
                 ],
                 "tags": {
                     "craft": "shoemaker"
                 },
+                "name": "Shoemaker"
+            },
+            "craft/stonemason": {
                 "icon": "marker-stroked",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/stonemason": {
-                "name": "Stonemason",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
-                    "stonemason",
                     "masonry"
                 ],
                 "tags": {
                     "craft": "stonemason"
                 },
+                "name": "Stonemason"
+            },
+            "craft/sweep": {
                 "icon": "marker-stroked",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/sweep": {
-                "name": "Chimney Sweep",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "sweep",
-                    "chimney sweep"
-                ],
                 "tags": {
                     "craft": "sweep"
                 },
-                "icon": "marker-stroked",
+                "name": "Chimney Sweep"
+            },
+            "craft/tailor": {
+                "icon": "clothing-store",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/tailor": {
-                "name": "Tailor",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
-                    "tailor",
-                    "clothes"
+                    "clothes",
+                    "suit"
                 ],
                 "tags": {
                     "craft": "tailor"
                 },
-                "icon": "clothing-store",
+                "name": "Tailor",
+                "searchable": false
+            },
+            "craft/tiler": {
+                "icon": "marker-stroked",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
                 ],
-                "searchable": false
-            },
-            "craft/tiler": {
-                "name": "Tiler",
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "tiler"
-                ],
                 "tags": {
                     "craft": "tiler"
                 },
+                "name": "Tiler"
+            },
+            "craft/tinsmith": {
                 "icon": "marker-stroked",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/tinsmith": {
-                "name": "Tinsmith",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "tinsmith"
-                ],
                 "tags": {
                     "craft": "tinsmith"
                 },
+                "name": "Tinsmith"
+            },
+            "craft/upholsterer": {
                 "icon": "marker-stroked",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/upholsterer": {
-                "name": "Upholsterer",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "upholsterer"
-                ],
                 "tags": {
                     "craft": "upholsterer"
                 },
-                "icon": "marker-stroked",
+                "name": "Upholsterer"
+            },
+            "craft/watchmaker": {
+                "icon": "circle-stroked",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/watchmaker": {
-                "name": "Watchmaker",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "terms": [
-                    "watch",
-                    "watchmaker",
-                    "watch repair"
-                ],
                 "tags": {
                     "craft": "watchmaker"
                 },
-                "icon": "circle-stroked",
+                "name": "Watchmaker"
+            },
+            "craft/window_construction": {
+                "icon": "marker-stroked",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
-            },
-            "craft/window_construction": {
-                "name": "Window Construction",
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
-                    "window",
-                    "window maker",
-                    "window construction"
+                    "glass"
                 ],
                 "tags": {
                     "craft": "window_construction"
                 },
-                "icon": "marker-stroked",
+                "name": "Window Construction"
+            },
+            "craft/winery": {
+                "icon": "alcohol-shop",
                 "fields": [
-                    "building_area",
-                    "address",
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "craft": "winery"
+                },
+                "name": "Winery"
             },
             "embankment": {
                 "geometry": [
@@ -67549,13 +68137,20 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "matchScore": 0.2
             },
             "emergency/ambulance_station": {
+                "icon": "hospital",
                 "fields": [
-                    "operator"
+                    "operator",
+                    "building_area",
+                    "address"
                 ],
                 "geometry": [
-                    "area",
                     "point",
-                    "vertex"
+                    "area"
+                ],
+                "terms": [
+                    "EMS",
+                    "EMT",
+                    "rescue"
                 ],
                 "tags": {
                     "emergency": "ambulance_station"
@@ -67639,7 +68234,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "crossing": "zebra"
                 },
                 "terms": [
-                    "crosswalk",
                     "zebra crossing"
                 ],
                 "name": "Crosswalk"
@@ -67708,9 +68302,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "leisure": "pitch",
                     "sport": "golf"
                 },
-                "terms": [
-                    "putting green"
-                ],
                 "name": "Putting Green"
             },
             "golf/hole": {
@@ -67808,10 +68399,8 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "terms": [
                     "bridleway",
-                    "equestrian trail",
-                    "horse riding path",
-                    "bridle road",
-                    "horse trail"
+                    "equestrian",
+                    "horse"
                 ],
                 "name": "Bridle Path"
             },
@@ -67860,7 +68449,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "crossing": "zebra"
                 },
                 "terms": [
-                    "crosswalk",
                     "zebra crossing"
                 ],
                 "name": "Crosswalk"
@@ -67881,7 +68469,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "tags": {
                     "highway": "cycleway"
                 },
-                "terms": [],
+                "terms": [
+                    "bike"
+                ],
                 "name": "Cycle Path"
             },
             "highway/footway": {
@@ -67898,29 +68488,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "area"
                 ],
                 "terms": [
-                    "beaten path",
-                    "boulevard",
-                    "clearing",
-                    "course",
-                    "cut*",
-                    "drag*",
-                    "footpath",
-                    "highway",
-                    "lane",
-                    "line",
-                    "orbit",
-                    "passage",
-                    "pathway",
-                    "rail",
-                    "rails",
-                    "road",
-                    "roadway",
-                    "route",
-                    "street",
-                    "thoroughfare",
+                    "hike",
+                    "hiking",
                     "trackway",
                     "trail",
-                    "trajectory",
                     "walk"
                 ],
                 "tags": {
@@ -68030,10 +68601,16 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "geometry": [
                     "line"
                 ],
+                "terms": [
+                    "hike",
+                    "hiking",
+                    "trackway",
+                    "trail",
+                    "walk"
+                ],
                 "tags": {
                     "highway": "path"
                 },
-                "terms": [],
                 "name": "Path"
             },
             "highway/pedestrian": {
@@ -68098,6 +68675,31 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 ],
                 "name": "Primary Link"
             },
+            "highway/raceway": {
+                "icon": "highway-unclassified",
+                "fields": [
+                    "oneway",
+                    "surface",
+                    "sport_racing",
+                    "structure"
+                ],
+                "geometry": [
+                    "line"
+                ],
+                "tags": {
+                    "highway": "raceway"
+                },
+                "addTags": {
+                    "highway": "raceway",
+                    "sport": "motor"
+                },
+                "terms": [
+                    "auto*",
+                    "race*",
+                    "nascar"
+                ],
+                "name": "Motor Raceway"
+            },
             "highway/residential": {
                 "icon": "highway-residential",
                 "fields": [
@@ -68126,9 +68728,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "highway": "rest_area"
                 },
                 "terms": [
-                    "rest stop",
-                    "turnout",
-                    "lay-by"
+                    "rest stop"
                 ],
                 "name": "Rest Area"
             },
@@ -68424,7 +69024,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "tags": {
                     "highway": "track"
                 },
-                "terms": [],
+                "terms": [
+                    "woods road",
+                    "fire road"
+                ],
                 "name": "Track"
             },
             "highway/traffic_signals": {
@@ -68492,7 +69095,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "tags": {
                     "highway": "turning_circle"
                 },
-                "terms": [],
+                "terms": [
+                    "cul-de-sac"
+                ],
                 "name": "Turning Circle"
             },
             "highway/unclassified": {
@@ -68551,7 +69156,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "historic/castle": {
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -68915,6 +69519,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "name": "Common"
             },
             "leisure/dog_park": {
+                "icon": "dog-park",
                 "geometry": [
                     "point",
                     "area"
@@ -68923,8 +69528,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "tags": {
                     "leisure": "dog_park"
                 },
-                "name": "Dog Park",
-                "icon": "dog-park"
+                "name": "Dog Park"
             },
             "leisure/firepit": {
                 "geometry": [
@@ -68956,26 +69560,30 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "golf",
                 "fields": [
                     "operator",
-                    "address"
+                    "address",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "tags": {
-                    "leisure": "golf_course"
-                },
                 "terms": [
                     "links"
                 ],
+                "tags": {
+                    "leisure": "golf_course"
+                },
                 "name": "Golf Course"
             },
             "leisure/ice_rink": {
                 "icon": "pitch",
                 "fields": [
-                    "building_area",
                     "seasonal",
-                    "sport_ice"
+                    "sport_ice",
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
@@ -68998,6 +69606,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "vertex",
                     "area"
                 ],
+                "terms": [
+                    "boat"
+                ],
                 "tags": {
                     "leisure": "marina"
                 },
@@ -69044,8 +69655,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "leisure": "picnic_table"
                 },
                 "terms": [
-                    "bench",
-                    "table"
+                    "bench"
                 ],
                 "name": "Picnic Table"
             },
@@ -69063,7 +69673,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "tags": {
                     "leisure": "pitch"
                 },
-                "terms": [],
+                "terms": [
+                    "field"
+                ],
                 "name": "Sport Pitch"
             },
             "leisure/pitch/american_football": {
@@ -69191,20 +69803,43 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "point",
                     "area"
                 ],
-                "tags": {
-                    "leisure": "playground"
-                },
-                "name": "Playground",
                 "terms": [
                     "jungle gym",
                     "play area"
-                ]
+                ],
+                "tags": {
+                    "leisure": "playground"
+                },
+                "name": "Playground"
+            },
+            "leisure/running_track": {
+                "icon": "pitch",
+                "fields": [
+                    "surface",
+                    "sport_racing",
+                    "lit",
+                    "width",
+                    "lanes"
+                ],
+                "geometry": [
+                    "point",
+                    "line"
+                ],
+                "tags": {
+                    "leisure": "track",
+                    "sport": "running"
+                },
+                "name": "Running Track"
             },
             "leisure/slipway": {
                 "geometry": [
                     "point",
                     "line"
                 ],
+                "terms": [
+                    "boat launch",
+                    "boat ramp"
+                ],
                 "tags": {
                     "leisure": "slipway"
                 },
@@ -69212,6 +69847,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             },
             "leisure/sports_center": {
                 "icon": "pitch",
+                "fields": [
+                    "sport",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
                     "area"
@@ -69222,13 +69863,14 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "terms": [
                     "gym"
                 ],
-                "fields": [
-                    "sport"
-                ],
                 "name": "Sports Center / Gym"
             },
             "leisure/stadium": {
                 "icon": "pitch",
+                "fields": [
+                    "sport",
+                    "address"
+                ],
                 "geometry": [
                     "point",
                     "area"
@@ -69236,14 +69878,14 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "tags": {
                     "leisure": "stadium"
                 },
-                "fields": [
-                    "sport"
-                ],
                 "name": "Stadium"
             },
             "leisure/swimming_pool": {
+                "icon": "swimming",
                 "fields": [
-                    "access_simple"
+                    "access_simple",
+                    "operator",
+                    "address"
                 ],
                 "geometry": [
                     "point",
@@ -69253,25 +69895,25 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "tags": {
                     "leisure": "swimming_pool"
                 },
-                "icon": "swimming",
                 "name": "Swimming Pool"
             },
             "leisure/track": {
-                "icon": "pitch",
+                "icon": "highway-road",
                 "fields": [
                     "surface",
+                    "sport_racing",
                     "lit",
-                    "width"
+                    "width",
+                    "lanes"
                 ],
                 "geometry": [
                     "point",
-                    "line",
-                    "area"
+                    "line"
                 ],
                 "tags": {
                     "leisure": "track"
                 },
-                "name": "Race Track"
+                "name": "Racetrack (non-Motorsport)"
             },
             "line": {
                 "name": "Line",
@@ -69336,6 +69978,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "embassy"
             },
             "man_made/lighthouse": {
+                "icon": "lighthouse",
                 "geometry": [
                     "point",
                     "area"
@@ -69343,8 +69986,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "tags": {
                     "man_made": "lighthouse"
                 },
-                "name": "Lighthouse",
-                "icon": "lighthouse"
+                "name": "Lighthouse"
             },
             "man_made/observation": {
                 "geometry": [
@@ -69372,21 +70014,24 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "name": "Pier"
             },
             "man_made/pipeline": {
+                "icon": "pipeline",
+                "fields": [
+                    "location",
+                    "operator"
+                ],
                 "geometry": [
                     "line"
                 ],
                 "tags": {
                     "man_made": "pipeline"
                 },
-                "fields": [
-                    "location",
-                    "operator"
-                ],
-                "name": "Pipeline",
-                "icon": "pipeline"
+                "name": "Pipeline"
             },
             "man_made/survey_point": {
                 "icon": "monument",
+                "fields": [
+                    "ref"
+                ],
                 "geometry": [
                     "point",
                     "vertex"
@@ -69394,12 +70039,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "tags": {
                     "man_made": "survey_point"
                 },
-                "fields": [
-                    "ref"
-                ],
                 "name": "Survey Point"
             },
             "man_made/tower": {
+                "fields": [
+                    "towertype"
+                ],
                 "geometry": [
                     "point",
                     "area"
@@ -69407,30 +70052,33 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "tags": {
                     "man_made": "tower"
                 },
-                "fields": [
-                    "towertype"
-                ],
                 "name": "Tower"
             },
             "man_made/wastewater_plant": {
                 "icon": "water",
+                "fields": [
+                    "operator",
+                    "address"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
-                "tags": {
-                    "man_made": "wastewater_plant"
-                },
-                "name": "Wastewater Plant",
                 "terms": [
-                    "sewage works",
-                    "sewage treatment plant",
+                    "sewage*",
                     "water treatment plant",
                     "reclamation plant"
-                ]
+                ],
+                "tags": {
+                    "man_made": "wastewater_plant"
+                },
+                "name": "Wastewater Plant"
             },
             "man_made/water_tower": {
                 "icon": "water",
+                "fields": [
+                    "operator"
+                ],
                 "geometry": [
                     "point",
                     "area"
@@ -69441,6 +70089,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "name": "Water Tower"
             },
             "man_made/water_well": {
+                "fields": [
+                    "operator"
+                ],
                 "geometry": [
                     "point",
                     "area"
@@ -69448,10 +70099,14 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "tags": {
                     "man_made": "water_well"
                 },
-                "name": "Water well"
+                "name": "Water Well"
             },
             "man_made/water_works": {
                 "icon": "water",
+                "fields": [
+                    "operator",
+                    "address"
+                ],
                 "geometry": [
                     "point",
                     "area"
@@ -69462,17 +70117,17 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "name": "Water Works"
             },
             "military/airfield": {
+                "icon": "airfield",
                 "geometry": [
                     "point",
                     "vertex",
                     "area"
                 ],
+                "terms": [],
                 "tags": {
                     "military": "airfield"
                 },
-                "terms": [],
-                "name": "Airfield",
-                "icon": "airfield"
+                "name": "Airfield"
             },
             "military/barracks": {
                 "geometry": [
@@ -69480,10 +70135,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "vertex",
                     "area"
                 ],
+                "terms": [],
                 "tags": {
                     "military": "barracks"
                 },
-                "terms": [],
                 "name": "Barracks"
             },
             "military/bunker": {
@@ -69492,10 +70147,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "vertex",
                     "area"
                 ],
+                "terms": [],
                 "tags": {
                     "military": "bunker"
                 },
-                "terms": [],
                 "name": "Bunker"
             },
             "military/range": {
@@ -69504,10 +70159,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "vertex",
                     "area"
                 ],
+                "terms": [],
                 "tags": {
                     "military": "range"
                 },
-                "terms": [],
                 "name": "Military Range"
             },
             "natural": {
@@ -69786,6 +70441,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "fields": [
                     "office",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -69804,6 +70460,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "commercial",
                 "fields": [
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
@@ -69821,6 +70478,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "commercial",
                 "fields": [
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
@@ -69838,6 +70496,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "commercial",
                 "fields": [
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
@@ -69855,6 +70514,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "commercial",
                 "fields": [
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -69873,6 +70533,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "commercial",
                 "fields": [
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
@@ -69890,6 +70551,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "commercial",
                 "fields": [
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
@@ -69900,13 +70562,16 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "tags": {
                     "office": "employment_agency"
                 },
-                "terms": [],
+                "terms": [
+                    "job"
+                ],
                 "name": "Employment Agency"
             },
             "office/estate_agent": {
                 "icon": "commercial",
                 "fields": [
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
@@ -69924,6 +70589,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "commercial",
                 "fields": [
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
@@ -69941,6 +70607,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "commercial",
                 "fields": [
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
@@ -69958,6 +70625,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "commercial",
                 "fields": [
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
@@ -69975,6 +70643,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "commercial",
                 "fields": [
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
@@ -69992,6 +70661,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "commercial",
                 "fields": [
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
@@ -70009,6 +70679,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "commercial",
                 "fields": [
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
@@ -70026,6 +70697,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "commercial",
                 "fields": [
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -70044,6 +70716,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "commercial",
                 "fields": [
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
@@ -70061,6 +70734,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "commercial",
                 "fields": [
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
@@ -70078,6 +70752,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "commercial",
                 "fields": [
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
@@ -70095,6 +70770,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "commercial",
                 "fields": [
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
@@ -70112,6 +70788,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "commercial",
                 "fields": [
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
@@ -70129,6 +70806,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "suitcase",
                 "fields": [
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
@@ -70344,7 +71022,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "name": "Power"
             },
             "power/generator": {
-                "name": "Power Generator",
+                "fields": [
+                    "operator",
+                    "generator/source",
+                    "generator/method",
+                    "generator/type"
+                ],
                 "geometry": [
                     "point",
                     "vertex",
@@ -70353,11 +71036,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "tags": {
                     "power": "generator"
                 },
-                "fields": [
-                    "generator/source",
-                    "generator/method",
-                    "generator/type"
-                ]
+                "name": "Power Generator"
             },
             "power/line": {
                 "geometry": [
@@ -70620,6 +71299,8 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "railway/station": {
                 "icon": "rail",
                 "fields": [
+                    "operator",
+                    "address",
                     "building_area"
                 ],
                 "geometry": [
@@ -70706,12 +71387,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "fields": [
                     "shop",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -70723,54 +71405,125 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "shop/alcohol": {
                 "icon": "alcohol-shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "alcohol",
+                    "beer",
+                    "booze",
+                    "wine"
+                ],
                 "tags": {
                     "shop": "alcohol"
                 },
-                "terms": [
-                    "alcohol"
-                ],
                 "name": "Liquor Store"
             },
+            "shop/anime": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "anime"
+                },
+                "name": "Anime Shop"
+            },
+            "shop/antiques": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "antiques"
+                },
+                "name": "Antiques Shop"
+            },
             "shop/art": {
                 "icon": "art-gallery",
                 "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "art"
+                },
+                "name": "Art Gallery"
+            },
+            "shop/baby_goods": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "baby_goods"
+                },
+                "name": "Baby Goods Store"
+            },
+            "shop/bag": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
-                    "art store",
-                    "art gallery"
+                    "handbag",
+                    "purse"
                 ],
                 "tags": {
-                    "shop": "art"
+                    "shop": "bag"
                 },
-                "name": "Art Shop"
+                "name": "Bag/Luggage Store"
             },
             "shop/bakery": {
                 "icon": "bakery",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -70778,16 +71531,33 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "name": "Bakery"
             },
+            "shop/bathroom_furnishing": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "bathroom_furnishing"
+                },
+                "name": "Bathroom Furnishing Store"
+            },
             "shop/beauty": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
@@ -70801,16 +71571,33 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "name": "Beauty Shop"
             },
+            "shop/bed": {
+                "icon": "lodging",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "bed"
+                },
+                "name": "Bedding/Mattress Store"
+            },
             "shop/beverages": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -70821,13 +71608,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "shop/bicycle": {
                 "icon": "bicycle",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -70838,13 +71625,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "shop/bookmaker": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -70855,30 +71642,30 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "shop/books": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
                     "shop": "books"
                 },
-                "name": "Bookstore"
+                "name": "Book Store"
             },
             "shop/boutique": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -70889,31 +71676,55 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "shop/butcher": {
                 "icon": "slaughterhouse",
                 "fields": [
+                    "operator",
+                    "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
-                "terms": [],
+                "terms": [
+                    "meat"
+                ],
                 "tags": {
                     "shop": "butcher"
                 },
                 "name": "Butcher"
             },
+            "shop/candles": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "candles"
+                },
+                "name": "Candle Shop"
+            },
             "shop/car": {
                 "icon": "car",
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "auto"
+                ],
                 "tags": {
                     "shop": "car"
                 },
@@ -70922,15 +71733,18 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "shop/car_parts": {
                 "icon": "car",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "auto"
+                ],
                 "tags": {
                     "shop": "car_parts"
                 },
@@ -70939,404 +71753,735 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "shop/car_repair": {
                 "icon": "car",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "auto"
+                ],
                 "tags": {
                     "shop": "car_repair"
                 },
                 "name": "Car Repair Shop"
             },
-            "shop/chemist": {
-                "icon": "chemist",
+            "shop/carpet": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "rug"
+                ],
                 "tags": {
-                    "shop": "chemist"
+                    "shop": "carpet"
                 },
-                "name": "Chemist"
+                "name": "Carpet Store"
             },
-            "shop/clothes": {
-                "icon": "clothing-store",
+            "shop/cheese": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "clothes"
+                    "shop": "cheese"
                 },
-                "name": "Clothing Store"
+                "name": "Cheese Store"
             },
-            "shop/computer": {
-                "icon": "shop",
+            "shop/chemist": {
+                "icon": "chemist",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "computer"
+                    "shop": "chemist"
                 },
-                "name": "Computer Store"
+                "name": "Chemist"
             },
-            "shop/confectionery": {
+            "shop/chocolate": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "confectionery"
+                    "shop": "chocolate"
                 },
-                "name": "Confectionery"
+                "name": "Chocolate Store"
             },
-            "shop/convenience": {
-                "icon": "shop",
+            "shop/clothes": {
+                "icon": "clothing-store",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "convenience"
+                    "shop": "clothes"
                 },
-                "name": "Convenience Store"
+                "name": "Clothing Store"
             },
-            "shop/deli": {
-                "icon": "restaurant",
+            "shop/computer": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "deli"
+                    "shop": "computer"
                 },
-                "name": "Deli"
+                "name": "Computer Store"
             },
-            "shop/department_store": {
+            "shop/confectionery": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "department_store"
+                    "shop": "confectionery"
                 },
-                "name": "Department Store"
+                "name": "Candy Store"
             },
-            "shop/doityourself": {
+            "shop/convenience": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "doityourself"
+                    "shop": "convenience"
                 },
-                "name": "DIY Store"
+                "name": "Convenience Store"
             },
-            "shop/dry_cleaning": {
+            "shop/copyshop": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "dry_cleaning"
+                    "shop": "copyshop"
                 },
-                "name": "Dry Cleaners"
+                "name": "Copy Store"
             },
-            "shop/electronics": {
+            "shop/cosmetics": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "electronics"
+                    "shop": "cosmetics"
                 },
-                "name": "Electronics Store"
+                "name": "Cosmetics Store"
             },
-            "shop/farm": {
-                "icon": "shop",
+            "shop/craft": {
+                "icon": "art-gallery",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "farm"
+                    "shop": "craft"
                 },
-                "terms": [
-                    "farm shop",
-                    "farm stand"
-                ],
-                "name": "Produce Stand"
+                "name": "Arts and Crafts Store"
             },
-            "shop/fishmonger": {
+            "shop/curtain": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "drape*",
+                    "window"
+                ],
                 "tags": {
-                    "shop": "fishmonger"
+                    "shop": "curtain"
                 },
-                "name": "Fishmonger",
-                "searchable": false
+                "name": "Curtain Store"
             },
-            "shop/florist": {
+            "shop/dairy": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "milk",
+                    "egg",
+                    "cheese"
+                ],
                 "tags": {
-                    "shop": "florist"
+                    "shop": "dairy"
                 },
-                "name": "Florist"
+                "name": "Dairy Store"
             },
-            "shop/funeral_directors": {
-                "icon": "cemetery",
+            "shop/deli": {
+                "icon": "restaurant",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
-                    "religion",
-                    "denomination"
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
-                "tags": {
-                    "shop": "funeral_directors"
-                },
                 "terms": [
-                    "undertaker",
-                    "funeral parlour",
-                    "funeral parlor",
-                    "memorial home"
+                    "lunch",
+                    "meat",
+                    "sandwich"
                 ],
-                "name": "Funeral Home"
+                "tags": {
+                    "shop": "deli"
+                },
+                "name": "Deli"
             },
-            "shop/furniture": {
+            "shop/department_store": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "furniture"
+                    "shop": "department_store"
                 },
-                "name": "Furniture Store"
+                "name": "Department Store"
             },
-            "shop/garden_centre": {
+            "shop/doityourself": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
-                "terms": [
-                    "garden centre"
-                ],
                 "tags": {
-                    "shop": "garden_centre"
+                    "shop": "doityourself"
                 },
-                "name": "Garden Center"
+                "name": "DIY Store"
             },
-            "shop/gift": {
+            "shop/dry_cleaning": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "gift"
+                    "shop": "dry_cleaning"
                 },
-                "name": "Gift Shop"
+                "name": "Dry Cleaner"
             },
-            "shop/greengrocer": {
+            "shop/electronics": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "appliance",
+                    "audio",
+                    "computer",
+                    "tv"
+                ],
                 "tags": {
-                    "shop": "greengrocer"
+                    "shop": "electronics"
                 },
-                "name": "Greengrocer"
+                "name": "Electronics Store"
             },
-            "shop/hairdresser": {
-                "icon": "hairdresser",
+            "shop/erotic": {
+                "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "sex",
+                    "porn"
+                ],
                 "tags": {
-                    "shop": "hairdresser"
+                    "shop": "erotic"
                 },
-                "name": "Hairdresser"
+                "name": "Erotic Store"
             },
-            "shop/hardware": {
+            "shop/fabric": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "sew"
+                ],
                 "tags": {
-                    "shop": "hardware"
+                    "shop": "fabric"
                 },
-                "name": "Hardware Store"
+                "name": "Fabric Store"
             },
-            "shop/hifi": {
+            "shop/farm": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "farm shop",
+                    "farm stand"
+                ],
+                "tags": {
+                    "shop": "farm"
+                },
+                "name": "Produce Stand"
+            },
+            "shop/fashion": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "fashion"
+                },
+                "name": "Fashion Store"
+            },
+            "shop/fishmonger": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "fishmonger"
+                },
+                "name": "Fishmonger",
+                "searchable": false
+            },
+            "shop/florist": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "flower"
+                ],
+                "tags": {
+                    "shop": "florist"
+                },
+                "name": "Florist"
+            },
+            "shop/frame": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "frame"
+                },
+                "name": "Framing Shop"
+            },
+            "shop/funeral_directors": {
+                "icon": "cemetery",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "religion",
+                    "denomination"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "undertaker",
+                    "memorial home"
+                ],
+                "tags": {
+                    "shop": "funeral_directors"
+                },
+                "name": "Funeral Home"
+            },
+            "shop/furnace": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "oven",
+                    "stove"
+                ],
+                "tags": {
+                    "shop": "furnace"
+                },
+                "name": "Furnace Store"
+            },
+            "shop/furniture": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "chair",
+                    "sofa",
+                    "table"
+                ],
+                "tags": {
+                    "shop": "furniture"
+                },
+                "name": "Furniture Store"
+            },
+            "shop/garden_centre": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "landscape",
+                    "mulch",
+                    "shrub",
+                    "tree"
+                ],
+                "tags": {
+                    "shop": "garden_centre"
+                },
+                "name": "Garden Center"
+            },
+            "shop/gift": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "gift"
+                },
+                "name": "Gift Shop"
+            },
+            "shop/greengrocer": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "fruit",
+                    "vegetable"
+                ],
+                "tags": {
+                    "shop": "greengrocer"
+                },
+                "name": "Greengrocer"
+            },
+            "shop/hairdresser": {
+                "icon": "hairdresser",
+                "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "tags": {
+                    "shop": "hairdresser"
+                },
+                "name": "Hairdresser"
+            },
+            "shop/hardware": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "hardware"
+                },
+                "name": "Hardware Store"
+            },
+            "shop/hearing_aids": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "hearing_aids"
+                },
+                "name": "Hearing Aids Store"
+            },
+            "shop/herbalist": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "herbalist"
+                },
+                "name": "Herbalist"
+            },
+            "shop/hifi": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "stereo",
+                    "video"
+                ],
                 "tags": {
                     "shop": "hifi"
                 },
                 "name": "Hifi Store"
             },
+            "shop/interior_decoration": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "interior_decoration"
+                },
+                "name": "Interior Decoration Store"
+            },
             "shop/jewelry": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "diamond",
+                    "gem",
+                    "ring"
+                ],
                 "tags": {
                     "shop": "jewelry"
                 },
@@ -71345,30 +72490,47 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "shop/kiosk": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
                     "shop": "kiosk"
                 },
-                "name": "Kiosk"
+                "name": "News Kiosk"
+            },
+            "shop/kitchen": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "kitchen"
+                },
+                "name": "Kitchen Design Store"
             },
             "shop/laundry": {
                 "icon": "laundry",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -71376,20 +72538,38 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "name": "Laundry"
             },
+            "shop/leather": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "leather"
+                },
+                "name": "Leather Store"
+            },
             "shop/locksmith": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
-                    "keys"
+                    "key",
+                    "lockpick"
                 ],
                 "tags": {
                     "shop": "locksmith"
@@ -71399,13 +72579,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "shop/lottery": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -71416,13 +72596,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "shop/mall": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -71430,16 +72610,50 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "name": "Mall"
             },
+            "shop/massage": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "massage"
+                },
+                "name": "Massage Shop"
+            },
+            "shop/medical_supply": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "medical_supply"
+                },
+                "name": "Medical Supply Store"
+            },
             "shop/mobile_phone": {
                 "icon": "mobilephone",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -71447,16 +72661,33 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "name": "Mobile Phone Store"
             },
+            "shop/money_lender": {
+                "icon": "bank",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "money_lender"
+                },
+                "name": "Money Lender"
+            },
             "shop/motorcycle": {
                 "icon": "scooter",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -71467,83 +72698,170 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "shop/music": {
                 "icon": "music",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "CD",
+                    "vinyl"
+                ],
                 "tags": {
                     "shop": "music"
                 },
                 "name": "Music Store"
             },
+            "shop/musical_instrument": {
+                "icon": "music",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "musical_instrument"
+                },
+                "name": "Musical Instrument Store"
+            },
             "shop/newsagent": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
                     "shop": "newsagent"
                 },
-                "name": "Newsagent"
+                "name": "Newspaper/Magazine Shop"
             },
             "shop/optician": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "eye",
+                    "glasses"
+                ],
                 "tags": {
                     "shop": "optician"
                 },
                 "name": "Optician"
             },
+            "shop/organic": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "supermarket",
+                    "organic": "only"
+                },
+                "name": "Organic Goods Store"
+            },
             "shop/outdoor": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "camping",
+                    "climbing",
+                    "hiking"
+                ],
                 "tags": {
                     "shop": "outdoor"
                 },
-                "name": "Outdoor Store"
+                "name": "Outdoors Store"
+            },
+            "shop/paint": {
+                "icon": "water",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "paint"
+                },
+                "name": "Paint Store"
+            },
+            "shop/pawnbroker": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "pawnbroker"
+                },
+                "name": "Pawn Shop"
             },
             "shop/pet": {
                 "icon": "dog-park",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "cat",
+                    "dog",
+                    "fish"
+                ],
                 "tags": {
                     "shop": "pet"
                 },
@@ -71552,50 +72870,148 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "shop/photo": {
                 "icon": "camera",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "camera",
+                    "film"
+                ],
                 "tags": {
                     "shop": "photo"
                 },
                 "name": "Photography Store"
             },
-            "shop/seafood": {
+            "shop/pyrotechnics": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "seafood"
+                    "shop": "pyrotechnics"
+                },
+                "name": "Fireworks Store"
+            },
+            "shop/radiotechnics": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "radiotechnics"
+                },
+                "name": "Radio/Electronic Component Store"
+            },
+            "shop/religion": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours",
+                    "religion",
+                    "denomination"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "religion"
                 },
+                "name": "Religious Store"
+            },
+            "shop/scuba_diving": {
+                "icon": "swimming",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "scuba_diving"
+                },
+                "name": "Scuba Diving Shop"
+            },
+            "shop/seafood": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
                 "terms": [
                     "fishmonger"
                 ],
+                "tags": {
+                    "shop": "seafood"
+                },
                 "name": "Seafood Shop"
             },
+            "shop/second_hand": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "secondhand",
+                    "second hand",
+                    "resale",
+                    "thrift",
+                    "used"
+                ],
+                "tags": {
+                    "shop": "second_hand"
+                },
+                "name": "Consignment/Thrift Store"
+            },
             "shop/shoes": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -71606,13 +73022,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "shop/sports": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -71623,15 +73039,19 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "shop/stationery": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "card",
+                    "paper"
+                ],
                 "tags": {
                     "shop": "stationery"
                 },
@@ -71641,37 +73061,18 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
-                    "bazaar",
-                    "boutique",
-                    "chain",
-                    "co-op",
-                    "cut-rate store",
-                    "discount store",
-                    "five-and-dime",
-                    "flea market",
-                    "galleria",
-                    "grocery store",
-                    "mall",
-                    "mart",
-                    "outlet",
-                    "outlet store",
-                    "shop",
-                    "shopping center",
-                    "shopping centre",
-                    "shopping plaza",
-                    "stand",
+                    "grocery",
                     "store",
-                    "supermarket",
-                    "thrift shop"
+                    "shop"
                 ],
                 "tags": {
                     "shop": "supermarket"
@@ -71679,36 +73080,104 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "name": "Supermarket"
             },
             "shop/tailor": {
-                "name": "Tailor",
+                "icon": "clothing-store",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
                 "geometry": [
                     "point",
                     "area"
                 ],
                 "terms": [
-                    "tailor",
-                    "clothes"
+                    "clothes",
+                    "suit"
                 ],
                 "tags": {
                     "shop": "tailor"
                 },
-                "icon": "clothing-store",
+                "name": "Tailor"
+            },
+            "shop/tattoo": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "tattoo"
+                },
+                "name": "Tattoo Parlor"
+            },
+            "shop/tea": {
+                "icon": "cafe",
                 "fields": [
+                    "operator",
+                    "address",
                     "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "tea"
+                },
+                "name": "Tea Store"
+            },
+            "shop/ticket": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
                     "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "ticket"
+                },
+                "name": "Ticket Seller"
+            },
+            "shop/tobacco": {
+                "icon": "shop",
+                "fields": [
                     "operator",
+                    "address",
+                    "building_area",
                     "opening_hours"
-                ]
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "tobacco"
+                },
+                "name": "Tobacco Shop"
             },
             "shop/toys": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -71719,13 +73188,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "shop/travel_agency": {
                 "icon": "suitcase",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -71736,13 +73205,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "shop/tyres": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -71753,30 +73222,46 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "shop/vacant": {
                 "icon": "shop",
                 "fields": [
+                    "address",
+                    "building_area"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "vacant"
+                },
+                "name": "Vacant Shop",
+                "searchable": false
+            },
+            "shop/vacuum_cleaner": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
-                    "shop": "vacant"
+                    "shop": "vacuum_cleaner"
                 },
-                "name": "Vacant Shop"
+                "name": "Vacuum Cleaner Store"
             },
             "shop/variety_store": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -71787,38 +73272,112 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "shop/video": {
                 "icon": "shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
+                "terms": [
+                    "DVD"
+                ],
                 "tags": {
                     "shop": "video"
                 },
                 "name": "Video Store"
             },
+            "shop/video_games": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "video_games"
+                },
+                "name": "Video Game Store"
+            },
+            "shop/water_sports": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "water_sports"
+                },
+                "name": "Watersport/Swim Shop"
+            },
+            "shop/weapons": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "terms": [
+                    "ammo",
+                    "gun",
+                    "knife",
+                    "knives"
+                ],
+                "tags": {
+                    "shop": "weapons"
+                },
+                "name": "Weapon Shop"
+            },
+            "shop/window_blind": {
+                "icon": "shop",
+                "fields": [
+                    "operator",
+                    "address",
+                    "building_area",
+                    "opening_hours"
+                ],
+                "geometry": [
+                    "point",
+                    "area"
+                ],
+                "tags": {
+                    "shop": "window_blind"
+                },
+                "name": "Window Blind Store"
+            },
             "shop/wine": {
                 "icon": "alcohol-shop",
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
                     "shop": "wine"
                 },
-                "terms": [
-                    "winery"
-                ],
                 "name": "Wine Shop"
             },
             "tourism": {
@@ -71839,11 +73398,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "lodging",
                 "fields": [
                     "operator",
-                    "address"
+                    "address",
+                    "building_area"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -71852,11 +73411,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "name": "Alpine Hut"
             },
             "tourism/artwork": {
+                "icon": "art-gallery",
                 "fields": [
                     "artwork_type",
                     "artist"
                 ],
-                "icon": "art-gallery",
                 "geometry": [
                     "point",
                     "vertex",
@@ -71900,9 +73459,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "vertex",
                     "area"
                 ],
-                "terms": [
-                    "camping"
-                ],
                 "tags": {
                     "tourism": "camp_site"
                 },
@@ -71928,13 +73484,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "lodging",
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "smoking"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -71947,11 +73502,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "fields": [
                     "operator",
                     "address",
+                    "building_area",
                     "smoking"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -71959,7 +73514,6 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "terms": [
                     "B&B",
-                    "Bed & Breakfast",
                     "Bed and Breakfast"
                 ],
                 "name": "Guest House"
@@ -71968,13 +73522,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "lodging",
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "smoking"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -71986,16 +73539,14 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "lodging",
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "smoking"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
-                "terms": [],
                 "tags": {
                     "tourism": "hotel"
                 },
@@ -72004,9 +73555,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "tourism/information": {
                 "fields": [
                     "information",
-                    "building_area",
+                    "operator",
                     "address",
-                    "operator"
+                    "building_area"
                 ],
                 "geometry": [
                     "point",
@@ -72022,13 +73573,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "lodging",
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "smoking"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -72040,28 +73590,20 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "museum",
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "terms": [
                     "exhibition",
-                    "exhibits archive",
                     "foundation",
                     "gallery",
                     "hall",
-                    "institution",
-                    "library",
-                    "menagerie",
-                    "repository",
-                    "salon",
-                    "storehouse",
-                    "treasury",
-                    "vault"
+                    "institution"
                 ],
                 "tags": {
                     "tourism": "museum"
@@ -72080,7 +73622,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "vertex",
                     "area"
                 ],
-                "terms": [],
+                "terms": [
+                    "camp"
+                ],
                 "tags": {
                     "tourism": "picnic_site"
                 },
@@ -72089,11 +73633,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "tourism/theme_park": {
                 "fields": [
                     "operator",
-                    "address"
+                    "address",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -72115,11 +73659,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "zoo",
                 "fields": [
                     "operator",
-                    "address"
+                    "address",
+                    "opening_hours"
                 ],
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "tags": {
@@ -72428,7 +73972,8 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "name": "Road Route",
                 "icon": "route-road",
                 "fields": [
-                    "ref"
+                    "ref",
+                    "network"
                 ]
             },
             "type/route/train": {
@@ -72652,13 +74197,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72671,13 +74216,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72690,13 +74235,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72709,13 +74254,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72728,13 +74273,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72747,13 +74292,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72766,13 +74311,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72785,13 +74330,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72804,13 +74349,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72823,13 +74368,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72842,13 +74387,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72861,13 +74406,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72880,13 +74425,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72899,13 +74444,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72918,13 +74463,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72937,13 +74482,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72956,13 +74501,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72975,13 +74520,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -72994,13 +74539,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73013,13 +74558,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73032,13 +74577,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73051,13 +74596,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73070,13 +74615,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73089,13 +74634,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73108,13 +74653,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73127,13 +74672,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73146,13 +74691,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73165,13 +74710,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73184,13 +74729,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73203,13 +74748,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73222,13 +74767,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73241,13 +74786,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73260,13 +74805,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73279,13 +74824,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73298,13 +74843,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73317,13 +74862,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73336,13 +74881,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73355,13 +74900,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73374,13 +74919,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73393,13 +74938,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73412,13 +74957,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73431,13 +74976,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73450,13 +74995,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73469,13 +75014,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73488,13 +75033,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73507,13 +75052,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73526,13 +75071,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73545,13 +75090,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73564,13 +75109,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73583,13 +75128,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73602,13 +75147,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73621,13 +75166,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73640,13 +75185,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73659,13 +75204,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73678,13 +75223,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73697,13 +75242,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73716,13 +75261,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73735,13 +75280,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73754,13 +75299,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73773,13 +75318,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73792,13 +75337,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73811,13 +75356,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73830,13 +75375,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73849,13 +75394,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73868,13 +75413,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73887,13 +75432,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73906,13 +75451,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73925,13 +75470,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73944,13 +75489,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73963,13 +75508,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -73982,13 +75527,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74001,13 +75546,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74020,13 +75565,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74039,13 +75584,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74058,13 +75603,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74077,13 +75622,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74096,13 +75641,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74115,13 +75660,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74134,13 +75679,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74153,13 +75698,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74172,13 +75717,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74191,13 +75736,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74210,13 +75755,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74229,13 +75774,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74248,13 +75793,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74267,13 +75812,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74286,13 +75831,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74305,13 +75850,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74324,13 +75869,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74343,13 +75888,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74362,13 +75907,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74381,13 +75926,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74400,13 +75945,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74419,13 +75964,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74438,13 +75983,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74457,13 +76002,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74476,13 +76021,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74495,13 +76040,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74514,13 +76059,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74533,13 +76078,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74552,13 +76097,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74571,13 +76116,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74590,13 +76135,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74609,13 +76154,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74628,13 +76173,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74647,13 +76192,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74666,13 +76211,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74685,13 +76230,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74704,13 +76249,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74723,13 +76268,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74742,13 +76287,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74761,13 +76306,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74780,13 +76325,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74799,13 +76344,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74818,13 +76363,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74837,13 +76382,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74856,13 +76401,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74875,13 +76420,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74894,13 +76439,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74913,13 +76458,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74932,13 +76477,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74951,13 +76496,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74970,13 +76515,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -74989,13 +76534,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75008,13 +76553,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75027,13 +76572,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75046,13 +76591,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75065,13 +76610,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75084,13 +76629,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75103,13 +76648,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75122,13 +76667,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75141,13 +76686,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75160,13 +76705,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75179,13 +76724,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75198,13 +76743,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75217,13 +76762,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75236,13 +76781,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75255,13 +76800,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75274,13 +76819,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75293,13 +76838,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75313,13 +76858,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75332,13 +76877,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75351,13 +76896,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75370,13 +76915,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75389,13 +76934,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75408,13 +76953,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75427,13 +76972,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75446,13 +76991,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75465,13 +77010,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75484,13 +77029,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75503,13 +77048,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75522,13 +77067,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75541,13 +77086,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75560,13 +77105,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75579,13 +77124,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75598,13 +77143,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75617,13 +77162,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75636,13 +77181,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75655,13 +77200,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75674,13 +77219,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75693,13 +77238,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75712,13 +77257,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75731,13 +77276,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75750,13 +77295,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75769,13 +77314,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75788,13 +77333,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75807,13 +77352,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75826,13 +77371,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75845,13 +77390,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75864,13 +77409,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fuel",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
                     "address",
-                    "building_area"
+                    "building_area",
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -75883,12 +77428,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75903,12 +77447,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75923,12 +77466,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75943,12 +77485,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75963,12 +77504,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -75983,12 +77523,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76003,12 +77542,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76023,12 +77561,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76043,12 +77580,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76063,12 +77599,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76083,12 +77618,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76103,12 +77637,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76123,12 +77656,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76143,12 +77675,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76163,12 +77694,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76183,12 +77713,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76203,12 +77732,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76223,12 +77751,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76243,12 +77770,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76263,12 +77789,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76283,12 +77808,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76303,12 +77827,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76323,12 +77846,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76343,12 +77865,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76363,12 +77884,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76383,12 +77903,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76403,12 +77922,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76423,12 +77941,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76443,12 +77960,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76463,12 +77979,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76483,12 +77998,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76503,12 +78017,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76523,12 +78036,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76543,12 +78055,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76563,12 +78074,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76583,12 +78093,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76603,12 +78112,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76623,12 +78131,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76643,12 +78150,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76663,12 +78169,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76683,12 +78188,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76703,12 +78207,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76723,12 +78226,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76743,12 +78245,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76763,12 +78264,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "beer",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76783,13 +78283,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76805,13 +78305,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76827,13 +78327,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76849,13 +78349,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76870,13 +78370,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76892,13 +78392,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76913,13 +78413,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76935,13 +78435,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76957,13 +78457,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76978,13 +78478,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -76999,13 +78499,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77020,13 +78520,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77041,13 +78541,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77063,13 +78563,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77084,13 +78584,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77105,13 +78605,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77127,13 +78627,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77148,13 +78648,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77169,13 +78669,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77190,13 +78690,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77211,13 +78711,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77232,13 +78732,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77253,13 +78753,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77274,13 +78774,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77295,13 +78795,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77316,13 +78816,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77338,13 +78838,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77359,13 +78859,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77380,13 +78880,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77401,13 +78901,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77422,13 +78922,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77443,13 +78943,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77465,13 +78965,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77487,13 +78987,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77508,13 +79008,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77530,13 +79030,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77551,13 +79051,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77572,13 +79072,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77594,13 +79094,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77615,13 +79115,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77636,13 +79136,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77657,13 +79157,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77679,13 +79179,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77700,13 +79200,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77721,13 +79221,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77743,13 +79243,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77766,13 +79266,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77787,13 +79287,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77808,13 +79308,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77829,13 +79329,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77850,13 +79350,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77871,13 +79371,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77894,13 +79394,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77915,13 +79415,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77936,13 +79436,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77958,13 +79458,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -77979,13 +79479,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -78000,13 +79500,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -78021,13 +79521,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -78042,13 +79542,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -78063,13 +79563,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -78085,13 +79585,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -78106,13 +79606,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -78127,13 +79627,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -78148,13 +79648,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -78169,13 +79669,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -78190,13 +79690,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -78211,13 +79711,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -78232,13 +79732,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -78254,13 +79754,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -78275,13 +79775,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -78296,13 +79796,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -78317,13 +79817,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -78339,13 +79839,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -78361,13 +79861,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -78382,13 +79882,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -78403,13 +79903,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "fast-food",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -78424,13 +79924,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78446,13 +79945,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78468,13 +79966,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78490,13 +79987,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78512,13 +80008,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78534,13 +80029,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78556,13 +80050,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78578,13 +80071,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78600,13 +80092,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78622,13 +80113,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78644,13 +80134,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78666,13 +80155,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78688,13 +80176,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78710,13 +80197,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78732,13 +80218,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78754,13 +80239,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78776,13 +80260,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78798,13 +80281,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78820,13 +80302,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78842,13 +80323,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78864,13 +80344,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78886,13 +80365,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78908,13 +80386,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78930,13 +80407,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78952,13 +80428,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78974,13 +80449,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -78996,13 +80470,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79018,13 +80491,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79040,13 +80512,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79062,13 +80533,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79084,13 +80554,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79106,13 +80575,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79128,13 +80596,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79150,13 +80617,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79172,13 +80638,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79194,13 +80659,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79216,13 +80680,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79238,13 +80701,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79260,13 +80722,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79282,13 +80743,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79304,13 +80764,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79326,13 +80785,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79348,13 +80806,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79370,13 +80827,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79392,13 +80848,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79414,13 +80869,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79436,13 +80890,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79458,13 +80911,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79480,13 +80932,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79502,13 +80953,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79524,13 +80974,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79546,13 +80995,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79568,13 +81016,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79590,13 +81037,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79612,13 +81058,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79634,13 +81079,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79656,13 +81100,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79678,13 +81121,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79700,13 +81142,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79722,13 +81163,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79744,13 +81184,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79766,13 +81205,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79788,13 +81226,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79810,13 +81247,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79832,13 +81268,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79854,13 +81289,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79876,13 +81310,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79898,13 +81331,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79920,13 +81352,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79942,13 +81373,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79964,13 +81394,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -79986,13 +81415,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80008,13 +81436,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80030,13 +81457,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80052,13 +81478,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80074,13 +81499,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80096,13 +81520,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80118,13 +81541,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80140,13 +81562,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80162,13 +81583,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80184,13 +81604,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80206,13 +81625,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80228,13 +81646,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80250,13 +81667,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80272,13 +81688,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80294,13 +81709,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80316,13 +81730,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80338,13 +81751,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80360,13 +81772,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80382,13 +81793,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80404,13 +81814,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80426,13 +81835,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80448,13 +81856,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80470,13 +81877,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80492,13 +81898,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80514,13 +81919,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80536,13 +81940,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80558,13 +81961,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80580,13 +81982,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80602,13 +82003,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80624,13 +82024,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80646,13 +82045,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80668,13 +82066,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80691,13 +82088,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80713,13 +82109,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80735,13 +82130,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80757,13 +82151,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80779,13 +82172,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80801,13 +82193,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80823,13 +82214,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80845,13 +82235,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80867,13 +82256,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80889,13 +82277,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80911,13 +82298,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80933,13 +82319,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80955,13 +82340,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80977,13 +82361,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -80999,13 +82382,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -81021,13 +82403,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -81043,13 +82424,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -81065,13 +82445,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -81087,13 +82466,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -81109,13 +82487,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -81131,13 +82508,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -81153,13 +82529,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "restaurant",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "capacity",
                     "smoking"
@@ -81175,13 +82550,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81195,13 +82570,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81215,13 +82590,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81235,13 +82610,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81255,13 +82630,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81275,13 +82650,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81295,13 +82670,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81315,13 +82690,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81335,13 +82710,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81355,13 +82730,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81375,13 +82750,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81395,13 +82770,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81415,13 +82790,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81435,13 +82810,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81455,13 +82830,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81475,13 +82850,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81495,13 +82870,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81515,13 +82890,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81535,13 +82910,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81555,13 +82930,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81575,13 +82950,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81595,13 +82970,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81615,13 +82990,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81635,13 +83010,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81655,13 +83030,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81675,13 +83050,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81695,13 +83070,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81715,13 +83090,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81735,13 +83110,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81755,13 +83130,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81775,13 +83150,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81795,13 +83170,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81815,13 +83190,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81835,13 +83210,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81855,13 +83230,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81875,13 +83250,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81895,13 +83270,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81915,13 +83290,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81935,13 +83310,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81955,13 +83330,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81975,13 +83350,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -81995,13 +83370,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82015,13 +83390,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82035,13 +83410,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82055,13 +83430,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82075,13 +83450,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82095,13 +83470,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82115,13 +83490,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82135,13 +83510,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82155,13 +83530,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82175,13 +83550,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82195,13 +83570,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82215,13 +83590,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82235,13 +83610,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82255,13 +83630,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82275,13 +83650,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82295,13 +83670,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82315,13 +83690,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82335,13 +83710,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82355,13 +83730,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82375,13 +83750,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82395,13 +83770,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82415,13 +83790,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82435,13 +83810,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82455,13 +83830,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82475,13 +83850,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82495,13 +83870,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82515,13 +83890,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82535,13 +83910,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82555,13 +83930,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82575,13 +83950,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82595,13 +83970,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82615,13 +83990,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82635,13 +84010,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82655,13 +84030,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82675,13 +84050,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82695,13 +84070,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82715,13 +84090,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82735,13 +84110,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82755,13 +84130,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82775,13 +84150,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82795,13 +84170,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82815,13 +84190,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82835,13 +84210,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82855,13 +84230,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82875,13 +84250,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82895,13 +84270,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82915,13 +84290,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82935,13 +84310,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82955,13 +84330,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82975,13 +84350,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -82995,13 +84370,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83015,13 +84390,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83035,13 +84410,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83055,13 +84430,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83075,13 +84450,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83095,13 +84470,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83115,13 +84490,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83135,13 +84510,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83155,13 +84530,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83175,13 +84550,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83195,13 +84570,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83215,13 +84590,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83235,13 +84610,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83255,13 +84630,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83275,13 +84650,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83295,13 +84670,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83315,13 +84690,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83335,13 +84710,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83355,13 +84730,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83375,13 +84750,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83395,13 +84770,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83415,13 +84790,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83435,13 +84810,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83455,13 +84830,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83475,13 +84850,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83495,13 +84870,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83515,13 +84890,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83535,13 +84910,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83555,13 +84930,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83575,13 +84950,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83595,13 +84970,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83615,13 +84990,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83635,13 +85010,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83655,13 +85030,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83675,13 +85050,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83695,13 +85070,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83715,13 +85090,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83735,13 +85110,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83755,13 +85130,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83775,13 +85150,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83795,13 +85170,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83815,13 +85190,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83835,13 +85210,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83855,13 +85230,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83875,13 +85250,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83895,13 +85270,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83915,13 +85290,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83935,13 +85310,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83955,13 +85330,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83975,13 +85350,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -83995,13 +85370,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84015,13 +85390,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84035,13 +85410,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84055,13 +85430,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84075,13 +85450,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84095,13 +85470,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84115,13 +85490,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84135,13 +85510,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84155,13 +85530,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84175,13 +85550,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84195,13 +85570,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84215,13 +85590,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84235,13 +85610,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84255,13 +85630,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84275,13 +85650,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84295,13 +85670,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84315,13 +85690,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84335,13 +85710,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84355,13 +85730,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84375,13 +85750,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84395,13 +85770,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84415,13 +85790,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84435,13 +85810,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84455,13 +85830,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84475,13 +85850,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84495,13 +85870,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84515,13 +85890,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84535,13 +85910,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84555,13 +85930,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84575,13 +85950,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84595,13 +85970,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84615,13 +85990,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84635,13 +86010,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84655,13 +86030,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84675,13 +86050,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84695,13 +86070,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84715,13 +86090,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84735,13 +86110,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84755,13 +86130,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84775,13 +86150,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84795,13 +86170,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84815,13 +86190,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84835,13 +86210,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84855,13 +86230,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84875,13 +86250,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84895,13 +86270,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84915,13 +86290,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84935,13 +86310,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84955,13 +86330,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84975,13 +86350,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -84995,13 +86370,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85015,13 +86390,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85035,13 +86410,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85055,13 +86430,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85075,13 +86450,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85095,13 +86470,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85115,13 +86490,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85135,13 +86510,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85155,13 +86530,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85175,13 +86550,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85195,13 +86570,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85215,13 +86590,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85235,13 +86610,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85255,13 +86630,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85275,13 +86650,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85295,13 +86670,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85315,13 +86690,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85335,13 +86710,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85355,13 +86730,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85375,13 +86750,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85395,13 +86770,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85416,13 +86791,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85437,13 +86812,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85458,13 +86833,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85479,13 +86854,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85500,13 +86875,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85520,13 +86895,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85540,13 +86915,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85560,13 +86935,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85580,13 +86955,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85600,13 +86975,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85620,13 +86995,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85640,13 +87015,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85661,13 +87036,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85681,13 +87056,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85701,13 +87076,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85721,13 +87096,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85741,13 +87116,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85761,13 +87136,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85781,13 +87156,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85801,13 +87176,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85821,13 +87196,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85841,13 +87216,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85861,13 +87236,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85881,13 +87256,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85901,13 +87276,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85921,13 +87296,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85941,13 +87316,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85961,13 +87336,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -85981,13 +87356,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86001,13 +87376,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86021,13 +87396,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86041,13 +87416,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86062,13 +87437,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86082,13 +87457,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86102,13 +87477,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86122,13 +87497,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86142,13 +87517,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86162,13 +87537,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86182,13 +87557,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86202,13 +87577,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bank",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "atm",
-                    "building_area",
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86334,13 +87709,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86354,13 +87728,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86374,13 +87747,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86394,13 +87766,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86414,13 +87785,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86434,13 +87804,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86454,13 +87823,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86474,13 +87842,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86494,13 +87861,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86514,13 +87880,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86534,13 +87899,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86554,13 +87918,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86574,13 +87937,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86594,13 +87956,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86614,13 +87975,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86634,13 +87994,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86654,13 +88013,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86674,13 +88032,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86694,13 +88051,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86714,13 +88070,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86734,13 +88089,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86754,13 +88108,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86774,13 +88127,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86794,13 +88146,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86814,13 +88165,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86834,13 +88184,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86854,13 +88203,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86874,13 +88222,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86894,13 +88241,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86914,13 +88260,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86934,13 +88279,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86954,13 +88298,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86974,13 +88317,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -86994,13 +88336,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87014,13 +88355,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87034,13 +88374,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87054,13 +88393,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87074,13 +88412,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87094,13 +88431,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87114,13 +88450,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87134,13 +88469,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87154,13 +88488,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87174,13 +88507,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87194,13 +88526,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87214,13 +88545,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87234,13 +88564,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87254,13 +88583,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87274,13 +88602,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87294,13 +88621,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87314,13 +88640,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87334,13 +88659,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87354,13 +88678,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87374,13 +88697,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87394,13 +88716,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87414,13 +88735,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87434,13 +88754,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87454,13 +88773,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87474,13 +88792,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87494,13 +88811,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87514,13 +88830,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87534,13 +88849,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87554,13 +88868,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87574,13 +88887,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87594,13 +88906,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87614,13 +88925,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87634,13 +88944,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87654,13 +88963,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87674,13 +88982,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87694,13 +89001,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87714,13 +89020,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87734,13 +89039,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87754,13 +89058,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87774,13 +89077,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87794,13 +89096,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "pharmacy",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -87815,14 +89116,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87837,14 +89137,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87859,14 +89158,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87881,14 +89179,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87903,14 +89200,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87925,14 +89221,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87947,14 +89242,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87969,14 +89263,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -87992,14 +89285,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -88014,14 +89306,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -88036,14 +89327,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -88058,14 +89348,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -88080,14 +89369,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -88102,14 +89390,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -88125,14 +89412,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -88147,14 +89433,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -88169,14 +89454,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -88191,14 +89475,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -88214,14 +89497,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -88236,14 +89518,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -88258,14 +89539,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -88280,14 +89560,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -88302,14 +89581,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -88324,14 +89602,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -88346,14 +89623,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -88368,14 +89644,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -88391,14 +89666,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -88413,14 +89687,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "cafe",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "cuisine",
                     "internet_access",
-                    "building_area",
                     "address",
+                    "building_area",
                     "opening_hours",
                     "smoking"
                 ],
@@ -88435,13 +89708,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88454,13 +89727,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88473,13 +89746,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88492,13 +89765,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88511,13 +89784,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88530,13 +89803,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88549,13 +89822,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88568,13 +89841,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88587,13 +89860,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88606,13 +89879,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88625,13 +89898,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88644,13 +89917,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88663,13 +89936,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88682,13 +89955,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88701,13 +89974,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88720,13 +89993,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88739,13 +90012,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88758,13 +90031,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88777,13 +90050,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88796,13 +90069,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88815,13 +90088,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88834,13 +90107,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88853,13 +90126,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88872,13 +90145,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88891,13 +90164,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88910,13 +90183,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88929,13 +90202,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88948,13 +90221,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88967,13 +90240,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -88986,13 +90259,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89005,13 +90278,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89024,13 +90297,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89043,13 +90316,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89062,13 +90335,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89081,13 +90354,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89100,13 +90373,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89119,13 +90392,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89138,13 +90411,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89157,13 +90430,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89176,13 +90449,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89195,13 +90468,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89214,13 +90487,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89233,13 +90506,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89252,13 +90525,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89271,13 +90544,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89290,13 +90563,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89309,13 +90582,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89328,13 +90601,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89347,13 +90620,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89366,13 +90639,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89385,13 +90658,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89404,13 +90677,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89423,13 +90696,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89442,13 +90715,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89461,13 +90734,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89480,13 +90753,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89499,13 +90772,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89518,13 +90791,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89537,13 +90810,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89556,13 +90829,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89575,13 +90848,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89594,13 +90867,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89613,13 +90886,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89632,13 +90905,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89651,13 +90924,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89670,13 +90943,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89689,13 +90962,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89708,13 +90981,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89727,13 +91000,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89746,13 +91019,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89765,13 +91038,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89784,13 +91057,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89803,13 +91076,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89822,13 +91095,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89841,13 +91114,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89860,13 +91133,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89879,13 +91152,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89898,13 +91171,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89917,13 +91190,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89936,13 +91209,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89955,13 +91228,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89974,13 +91247,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -89993,13 +91266,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90012,13 +91285,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90031,13 +91304,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90050,13 +91323,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90069,13 +91342,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90088,13 +91361,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90107,13 +91380,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90126,13 +91399,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90145,13 +91418,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90164,13 +91437,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90183,13 +91456,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90202,13 +91475,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90221,13 +91494,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90240,13 +91513,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90259,13 +91532,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90278,13 +91551,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90297,13 +91570,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90316,13 +91589,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90335,13 +91608,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90354,13 +91627,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90373,13 +91646,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90392,13 +91665,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90411,13 +91684,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90430,13 +91703,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90449,13 +91722,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90468,13 +91741,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90487,13 +91760,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90506,13 +91779,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90525,13 +91798,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90544,13 +91817,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90563,13 +91836,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90582,13 +91855,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90601,13 +91874,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90620,13 +91893,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90639,13 +91912,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90658,13 +91931,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90677,13 +91950,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90696,13 +91969,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90715,13 +91988,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90734,13 +92007,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90753,13 +92026,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90772,13 +92045,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90791,13 +92064,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90810,13 +92083,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90829,13 +92102,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90848,13 +92121,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90867,13 +92140,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90886,13 +92159,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90905,13 +92178,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90924,13 +92197,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90943,13 +92216,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90962,13 +92235,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -90981,13 +92254,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91000,13 +92273,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91019,13 +92292,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91038,13 +92311,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91057,13 +92330,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91076,13 +92349,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91095,13 +92368,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91114,13 +92387,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91133,13 +92406,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91152,13 +92425,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91171,13 +92444,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91190,13 +92463,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91209,13 +92482,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91228,13 +92501,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91247,13 +92520,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91266,13 +92539,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91285,13 +92558,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91304,13 +92577,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91323,13 +92596,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91342,13 +92615,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91361,13 +92634,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91380,13 +92653,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91399,13 +92672,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91418,13 +92691,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91437,13 +92710,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91456,13 +92729,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91475,13 +92748,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91494,13 +92767,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91513,13 +92786,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91532,13 +92805,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91551,13 +92824,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91570,13 +92843,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91589,13 +92862,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91608,13 +92881,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91627,13 +92900,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91646,13 +92919,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91665,13 +92938,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91684,13 +92957,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91703,13 +92976,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91722,13 +92995,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91741,13 +93014,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91760,13 +93033,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91779,13 +93052,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91798,13 +93071,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91817,13 +93090,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91836,13 +93109,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91855,13 +93128,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91874,13 +93147,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91893,13 +93166,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91912,13 +93185,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91931,13 +93204,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91950,13 +93223,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91969,13 +93242,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -91988,13 +93261,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92007,13 +93280,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92026,13 +93299,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92045,13 +93318,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92064,13 +93337,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92083,13 +93356,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92102,13 +93375,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92121,13 +93394,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92140,13 +93413,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92159,13 +93432,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92178,13 +93451,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92197,13 +93470,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92216,13 +93489,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92235,13 +93508,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92254,13 +93527,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92273,13 +93546,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92292,13 +93565,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92311,13 +93584,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92330,13 +93603,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92349,13 +93622,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92368,13 +93641,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92387,13 +93660,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92406,13 +93679,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92425,13 +93698,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92444,13 +93717,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92463,13 +93736,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92482,13 +93755,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92501,13 +93774,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92520,13 +93793,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92539,13 +93812,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92558,13 +93831,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92577,13 +93850,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92596,13 +93869,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92615,13 +93888,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92634,13 +93907,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92653,13 +93926,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92672,13 +93945,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92691,13 +93964,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92710,13 +93983,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92729,13 +94002,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92748,13 +94021,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92767,13 +94040,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92786,13 +94059,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92805,13 +94078,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92824,13 +94097,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "grocery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
                     "operator",
+                    "address",
                     "building_area",
-                    "address"
+                    "opening_hours"
                 ],
                 "suggestion": true
             },
@@ -92843,10 +94116,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92862,10 +94135,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92881,10 +94154,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92900,10 +94173,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92919,10 +94192,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92938,10 +94211,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92957,10 +94230,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92976,10 +94249,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -92995,10 +94268,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93014,10 +94287,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93033,10 +94306,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93052,10 +94325,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93071,10 +94344,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93090,10 +94363,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93109,10 +94382,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93128,10 +94401,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93147,10 +94420,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93166,10 +94439,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93185,10 +94458,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93204,10 +94477,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93223,10 +94496,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93242,10 +94515,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93261,10 +94534,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93280,10 +94553,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93299,10 +94572,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93318,10 +94591,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93337,10 +94610,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93356,10 +94629,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93376,10 +94649,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93396,10 +94669,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93415,10 +94688,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93434,10 +94707,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93453,10 +94726,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93472,10 +94745,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93491,10 +94764,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93510,10 +94783,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93529,10 +94802,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93548,10 +94821,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93567,10 +94840,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93586,10 +94859,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93605,10 +94878,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93624,10 +94897,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93643,10 +94916,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93663,10 +94936,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93683,10 +94956,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93702,10 +94975,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93721,10 +94994,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93740,10 +95013,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93759,10 +95032,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93778,10 +95051,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93797,10 +95070,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93817,10 +95090,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93836,10 +95109,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93855,10 +95128,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93874,10 +95147,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93893,10 +95166,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93912,10 +95185,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93931,10 +95204,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93950,10 +95223,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93970,10 +95243,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -93989,10 +95262,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94008,10 +95281,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94027,10 +95300,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94046,10 +95319,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94065,10 +95338,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94084,10 +95357,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94103,10 +95376,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94122,10 +95395,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94141,10 +95414,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94160,10 +95433,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94179,10 +95452,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94198,10 +95471,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94217,10 +95490,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94236,10 +95509,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94255,10 +95528,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94274,10 +95547,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94293,10 +95566,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94312,10 +95585,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94331,10 +95604,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94350,10 +95623,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94369,10 +95642,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94388,10 +95661,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94407,10 +95680,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94426,10 +95699,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94445,10 +95718,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94464,10 +95737,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94483,10 +95756,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94502,10 +95775,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94521,10 +95794,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94540,10 +95813,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94559,10 +95832,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94578,10 +95851,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94597,10 +95870,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94616,10 +95889,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94635,10 +95908,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94654,10 +95927,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94673,10 +95946,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94692,10 +95965,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94711,10 +95984,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94730,10 +96003,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94749,10 +96022,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94768,10 +96041,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94787,10 +96060,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94806,10 +96079,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94825,10 +96098,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94844,10 +96117,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94863,10 +96136,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94882,10 +96155,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94901,10 +96174,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94920,10 +96193,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94939,10 +96212,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94958,10 +96231,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94977,10 +96250,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -94996,10 +96269,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95015,10 +96288,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95034,10 +96307,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95053,10 +96326,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95072,10 +96345,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95091,10 +96364,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95110,10 +96383,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "chemist",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95129,10 +96402,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "chemist",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95148,10 +96421,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "chemist",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95167,10 +96440,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "chemist",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95186,10 +96459,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "chemist",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95205,10 +96478,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "chemist",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95224,10 +96497,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "chemist",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95243,10 +96516,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "chemist",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95262,10 +96535,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "chemist",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95281,10 +96554,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "chemist",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95300,10 +96573,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95319,10 +96592,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95338,10 +96611,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95357,10 +96630,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95376,10 +96649,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95395,10 +96668,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95414,10 +96687,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95433,10 +96706,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95452,10 +96725,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95471,10 +96744,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95490,10 +96763,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95509,10 +96782,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95528,10 +96801,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95547,10 +96820,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95566,10 +96839,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95585,10 +96858,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95604,10 +96877,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95623,10 +96896,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95642,10 +96915,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95661,10 +96934,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95680,10 +96953,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95699,10 +96972,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95718,10 +96991,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95737,10 +97010,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95756,10 +97029,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95775,10 +97048,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95794,10 +97067,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95813,10 +97086,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95832,10 +97105,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95851,10 +97124,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95870,10 +97143,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95889,10 +97162,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95908,10 +97181,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95927,10 +97200,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95946,10 +97219,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95965,10 +97238,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -95984,10 +97257,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96003,10 +97276,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96022,10 +97295,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96041,10 +97314,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96060,10 +97333,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96079,10 +97352,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96098,10 +97371,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96117,10 +97390,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96136,10 +97409,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96155,10 +97428,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96174,10 +97447,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96193,10 +97466,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96212,10 +97485,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96231,10 +97504,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96250,10 +97523,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96269,10 +97542,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96288,10 +97561,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96307,10 +97580,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96326,10 +97599,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96345,10 +97618,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96364,10 +97637,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96383,10 +97656,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96402,10 +97675,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96421,10 +97694,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96440,10 +97713,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96459,10 +97732,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96478,10 +97751,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96497,10 +97770,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96516,10 +97789,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96535,10 +97808,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96554,11 +97827,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96572,11 +97846,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96590,11 +97865,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96608,11 +97884,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96626,11 +97903,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96644,11 +97922,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96662,11 +97941,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96680,11 +97960,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96698,11 +97979,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96716,11 +97998,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96734,11 +98017,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96752,11 +98036,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96770,11 +98055,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96788,11 +98074,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96806,11 +98093,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96824,11 +98112,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96842,11 +98131,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96860,11 +98150,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96878,11 +98169,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96896,11 +98188,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96914,11 +98207,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96932,11 +98226,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96950,11 +98245,12 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "car",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
+                    "building_area",
                     "opening_hours"
                 ],
                 "suggestion": true
@@ -96968,10 +98264,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -96987,10 +98283,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97006,10 +98302,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97025,10 +98321,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97044,10 +98340,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97063,10 +98359,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97082,10 +98378,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97101,10 +98397,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97120,10 +98416,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97139,10 +98435,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97158,10 +98454,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97177,10 +98473,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97196,10 +98492,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97215,10 +98511,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97234,10 +98530,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97253,10 +98549,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97272,10 +98568,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97291,10 +98587,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97310,10 +98606,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97329,10 +98625,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97348,10 +98644,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97367,10 +98663,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97386,10 +98682,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97405,10 +98701,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97424,10 +98720,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97443,10 +98739,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97462,10 +98758,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97481,10 +98777,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97500,10 +98796,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97519,10 +98815,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97538,10 +98834,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97557,10 +98853,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97576,10 +98872,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97595,10 +98891,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97614,10 +98910,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97633,10 +98929,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97652,10 +98948,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97671,10 +98967,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97690,10 +98986,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97709,10 +99005,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97728,10 +99024,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97747,10 +99043,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97766,10 +99062,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97785,10 +99081,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97804,10 +99100,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97823,10 +99119,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97842,10 +99138,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97861,10 +99157,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97880,10 +99176,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97899,10 +99195,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97918,10 +99214,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97937,10 +99233,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97956,10 +99252,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97975,10 +99271,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -97994,10 +99290,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98013,10 +99309,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98032,10 +99328,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98051,10 +99347,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98070,10 +99366,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98089,10 +99385,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98108,10 +99404,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98127,10 +99423,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98146,10 +99442,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98165,10 +99461,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98184,10 +99480,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98203,10 +99499,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98222,10 +99518,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98241,10 +99537,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98260,10 +99556,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98279,10 +99575,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98298,10 +99594,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98317,10 +99613,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98336,10 +99632,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98355,10 +99651,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "clothing-store",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98374,10 +99670,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98393,10 +99689,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98412,10 +99708,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98431,10 +99727,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98450,10 +99746,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98469,10 +99765,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98488,10 +99784,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98507,10 +99803,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98526,10 +99822,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98545,10 +99841,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98564,10 +99860,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98583,10 +99879,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98602,10 +99898,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98621,10 +99917,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98640,10 +99936,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98659,10 +99955,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98678,10 +99974,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98697,10 +99993,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98716,10 +100012,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98735,10 +100031,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98754,10 +100050,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "alcohol-shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98773,10 +100069,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "alcohol-shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98792,10 +100088,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "alcohol-shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98811,10 +100107,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "alcohol-shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98830,10 +100126,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "alcohol-shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98849,10 +100145,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "alcohol-shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98868,10 +100164,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "alcohol-shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98887,10 +100183,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "alcohol-shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98906,10 +100202,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "alcohol-shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98925,10 +100221,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "alcohol-shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98944,10 +100240,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "alcohol-shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98963,10 +100259,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "alcohol-shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -98982,10 +100278,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99001,10 +100297,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99020,10 +100316,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99039,10 +100335,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99058,10 +100354,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99077,10 +100373,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99096,10 +100392,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99115,10 +100411,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99134,10 +100430,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99153,10 +100449,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99172,10 +100468,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99191,10 +100487,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99210,10 +100506,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99229,10 +100525,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99248,10 +100544,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99267,10 +100563,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99286,10 +100582,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99305,10 +100601,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99324,10 +100620,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99343,10 +100639,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99362,10 +100658,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99381,10 +100677,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99400,10 +100696,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99419,10 +100715,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99438,10 +100734,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99457,10 +100753,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99476,10 +100772,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99495,10 +100791,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "bakery",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99514,10 +100810,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99533,10 +100829,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99552,10 +100848,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99571,10 +100867,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99590,10 +100886,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99609,10 +100905,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99628,10 +100924,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99647,10 +100943,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99666,10 +100962,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99685,10 +100981,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99704,10 +101000,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99723,10 +101019,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "dog-park",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99742,10 +101038,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "dog-park",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99761,10 +101057,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "dog-park",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99780,10 +101076,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "dog-park",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99799,10 +101095,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "dog-park",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99818,10 +101114,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "dog-park",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99837,10 +101133,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99856,10 +101152,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99875,10 +101171,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99894,10 +101190,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99913,10 +101209,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99932,10 +101228,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99951,10 +101247,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99970,10 +101266,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -99989,10 +101285,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100008,10 +101304,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100027,10 +101323,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100046,10 +101342,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100065,10 +101361,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100084,10 +101380,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100103,10 +101399,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100122,10 +101418,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100141,10 +101437,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100160,10 +101456,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100179,10 +101475,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100198,10 +101494,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100217,10 +101513,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100236,10 +101532,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "suitcase",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100255,10 +101551,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "suitcase",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100274,10 +101570,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100293,10 +101589,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100312,10 +101608,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100331,10 +101627,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100350,10 +101646,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100369,10 +101665,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100388,10 +101684,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100407,10 +101703,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100426,10 +101722,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100445,10 +101741,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100464,10 +101760,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100483,10 +101779,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100502,10 +101798,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100521,10 +101817,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100540,10 +101836,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100559,10 +101855,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100578,10 +101874,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100597,10 +101893,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100616,10 +101912,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100635,10 +101931,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100654,10 +101950,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100673,10 +101969,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100692,10 +101988,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100711,10 +102007,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100730,10 +102026,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100749,10 +102045,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100768,10 +102064,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100787,10 +102083,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100806,10 +102102,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100825,10 +102121,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100844,10 +102140,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100863,10 +102159,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100882,10 +102178,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100901,10 +102197,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100920,10 +102216,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "mobilephone",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100939,10 +102235,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100958,10 +102254,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100977,10 +102273,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "hairdresser",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -100996,10 +102292,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "hairdresser",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -101015,10 +102311,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "hairdresser",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -101034,10 +102330,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "hairdresser",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -101053,10 +102349,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "hairdresser",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -101072,10 +102368,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "hairdresser",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -101091,10 +102387,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "hairdresser",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -101110,10 +102406,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "hairdresser",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -101129,10 +102425,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "hairdresser",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -101148,10 +102444,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -101167,10 +102463,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "shop",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -101186,10 +102482,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "icon": "scooter",
                 "geometry": [
                     "point",
-                    "vertex",
                     "area"
                 ],
                 "fields": [
+                    "operator",
                     "address",
                     "building_area",
                     "opening_hours"
@@ -101684,6 +102980,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "type": "check",
                 "label": "Covered"
             },
+            "craft": {
+                "key": "craft",
+                "type": "typeCombo",
+                "label": "Type"
+            },
             "crop": {
                 "key": "crop",
                 "type": "combo",
@@ -102376,6 +103677,20 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "ice_stock"
                 ]
             },
+            "sport_racing": {
+                "key": "sport",
+                "type": "combo",
+                "label": "Sport",
+                "options": [
+                    "cycling",
+                    "dog_racing",
+                    "horse_racing",
+                    "karting",
+                    "motor",
+                    "motocross",
+                    "running"
+                ]
+            },
             "structure": {
                 "type": "radio",
                 "keys": [
@@ -114518,6 +115833,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
     "locales": [
         "af",
         "sq",
+        "sq-AL",
         "ar",
         "ar-AA",
         "hy",
@@ -114538,6 +115854,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
         "da",
         "nl",
         "en-GB",
+        "eo",
         "et",
         "fi",
         "fr",
@@ -114550,6 +115867,8 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
         "it",
         "ja",
         "kn",
+        "km",
+        "km-KH",
         "ko",
         "ko-KR",
         "lv",
@@ -114933,6 +116252,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             "zoom": "Zoom to GPX track",
             "browse": "Browse for a .gpx file"
         },
+        "mapillary": {
+            "tooltip": "Street-level photos from Mapillary",
+            "title": "Photo Overlay (Mapillary)",
+            "view_on_mapillary": "View this image on Mapillary"
+        },
         "help": {
             "title": "Help",
             "help": "# Help\n\nThis is an editor for [OpenStreetMap](http://www.openstreetmap.org/), the\nfree and editable map of the world. You can use it to add and update\ndata in your area, making an open-source and open-data map of the world\nbetter for everyone.\n\nEdits that you make on this map will be visible to everyone who uses\nOpenStreetMap. In order to make an edit, you'll need a\n[free OpenStreetMap account](https://www.openstreetmap.org/user/new).\n\nThe [iD editor](http://ideditor.com/) is a collaborative project with [source\ncode available on GitHub](https://github.com/openstreetmap/iD).\n",
@@ -114968,7 +116292,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
             },
             "areas": {
                 "title": "Areas",
-                "add": "Areas are a more detailed way to represent features. They provide information on the boundaries of the feature. Areas can be used for most feature types points can be used for, and are often preferred. **Click the Area button to add a new area.**",
+                "add": "Areas are used to show the boundaries of features like lakes, buildings, and residential areas. They can be also be used for more detailed mapping of many features you might normally map as points. **Click the Area button to add a new area.**",
                 "corner": "Areas are drawn by placing nodes that mark the boundary of the area. **Place the starting node on one of the corners of the playground.**",
                 "place": "Draw the area by placing more nodes. Finish the area by clicking on the starting node. **Draw an area for the playground.**",
                 "search": "**Search for '{name}'.**",
@@ -115207,6 +116531,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "covered": {
                     "label": "Covered"
                 },
+                "craft": {
+                    "label": "Type"
+                },
                 "crop": {
                     "label": "Crop"
                 },
@@ -115633,6 +116960,9 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 "sport_ice": {
                     "label": "Sport"
                 },
+                "sport_racing": {
+                    "label": "Sport"
+                },
                 "structure": {
                     "label": "Structure",
                     "placeholder": "Unknown",
@@ -115819,23 +117149,23 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "amenity/arts_centre": {
                     "name": "Arts Center",
-                    "terms": "arts,arts centre"
+                    "terms": ""
                 },
                 "amenity/atm": {
                     "name": "ATM",
-                    "terms": ""
+                    "terms": "money,cash,machine"
                 },
                 "amenity/bank": {
                     "name": "Bank",
-                    "terms": "coffer,countinghouse,credit union,depository,exchequer,fund,hoard,investment firm,repository,reserve,reservoir,safe,savings,stock,stockpile,store,storehouse,thrift,treasury,trust company,vault"
+                    "terms": "credit union,check,deposit,fund,investment,repository,reserve,safe,savings,stock,treasury,trust,vault"
                 },
                 "amenity/bar": {
                     "name": "Bar",
-                    "terms": ""
+                    "terms": "dive,beer,bier,booze"
                 },
                 "amenity/bbq": {
                     "name": "Barbecue/Grill",
-                    "terms": "barbecue,bbq,grill"
+                    "terms": "bbq"
                 },
                 "amenity/bench": {
                     "name": "Bench",
@@ -115843,23 +117173,27 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "amenity/bicycle_parking": {
                     "name": "Bicycle Parking",
-                    "terms": ""
+                    "terms": "bike"
                 },
                 "amenity/bicycle_rental": {
                     "name": "Bicycle Rental",
-                    "terms": ""
+                    "terms": "bike"
                 },
                 "amenity/boat_rental": {
                     "name": "Boat Rental",
                     "terms": ""
                 },
+                "amenity/bureau_de_change": {
+                    "name": "Currency Exchange",
+                    "terms": "bureau de change,money changer"
+                },
                 "amenity/bus_station": {
                     "name": "Bus Station",
                     "terms": ""
                 },
                 "amenity/cafe": {
                     "name": "Cafe",
-                    "terms": "coffee,tea,coffee shop"
+                    "terms": "coffee,tea"
                 },
                 "amenity/car_rental": {
                     "name": "Car Rental",
@@ -115878,24 +117212,24 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "terms": "EV,Electric Vehicle,Supercharger"
                 },
                 "amenity/childcare": {
-                    "name": "Childcare",
-                    "terms": "nursery,orphanage,playgroup"
+                    "name": "Nursery/Childcare",
+                    "terms": "daycare,orphanage,playgroup"
                 },
                 "amenity/cinema": {
                     "name": "Cinema",
-                    "terms": "big screen,bijou,cine,drive-in,film,flicks,motion pictures,movie house,movie theater,moving pictures,nabes,photoplay,picture show,pictures,playhouse,show,silver screen"
+                    "terms": "drive-in,film,flick,movie,theater,picture,show,screen"
                 },
                 "amenity/clinic": {
                     "name": "Clinic",
-                    "terms": "clinic,medical clinic"
+                    "terms": "medical,urgentcare"
                 },
                 "amenity/clock": {
                     "name": "Clock",
                     "terms": ""
                 },
                 "amenity/college": {
-                    "name": "College",
-                    "terms": ""
+                    "name": "College Grounds",
+                    "terms": "university"
                 },
                 "amenity/compressed_air": {
                     "name": "Compressed Air",
@@ -115907,19 +117241,19 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "amenity/dentist": {
                     "name": "Dentist",
-                    "terms": "dentist,dentist's office"
+                    "terms": "tooth,teeth"
                 },
                 "amenity/doctor": {
                     "name": "Doctor",
-                    "terms": "doctor,doctor's office"
+                    "terms": "medic*"
                 },
                 "amenity/dojo": {
                     "name": "Dojo / Martial Arts Academy",
-                    "terms": "martial arts,dojo,dojang"
+                    "terms": "martial arts,dojang"
                 },
                 "amenity/drinking_water": {
                     "name": "Drinking Water",
-                    "terms": "water fountain,potable water"
+                    "terms": "fountain,potable"
                 },
                 "amenity/embassy": {
                     "name": "Embassy",
@@ -115927,7 +117261,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "amenity/fast_food": {
                     "name": "Fast Food",
-                    "terms": ""
+                    "terms": "restaurant"
                 },
                 "amenity/fire_station": {
                     "name": "Fire Station",
@@ -115947,15 +117281,15 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "amenity/hospital": {
                     "name": "Hospital Grounds",
-                    "terms": "clinic,emergency room,health service,hospice,infirmary,institution,nursing home,rest home,sanatorium,sanitarium,sick bay,surgery,ward"
+                    "terms": "clinic,doctor,emergency room,health service,hospice,infirmary,institution,nursing home,sanatorium,sanitarium,sick,surgery,ward"
                 },
                 "amenity/kindergarten": {
-                    "name": "Kindergarten Grounds",
-                    "terms": "nursery,preschool"
+                    "name": "Preschool/Kindergarten Grounds",
+                    "terms": "kindergarden,pre-school"
                 },
                 "amenity/library": {
                     "name": "Library",
-                    "terms": ""
+                    "terms": "book"
                 },
                 "amenity/marketplace": {
                     "name": "Marketplace",
@@ -115975,7 +117309,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "amenity/pharmacy": {
                     "name": "Pharmacy",
-                    "terms": ""
+                    "terms": "drug,medicine"
                 },
                 "amenity/place_of_worship": {
                     "name": "Place of Worship",
@@ -115987,31 +117321,31 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "amenity/place_of_worship/christian": {
                     "name": "Church",
-                    "terms": "christian,abbey,basilica,bethel,cathedral,chancel,chantry,chapel,church,fold,house of God,house of prayer,house of worship,minster,mission,oratory,parish,sacellum,sanctuary,shrine,tabernacle,temple"
+                    "terms": "christian,abbey,basilica,bethel,cathedral,chancel,chantry,chapel,fold,house of God,house of prayer,house of worship,minster,mission,oratory,parish,sacellum,sanctuary,shrine,tabernacle,temple"
                 },
                 "amenity/place_of_worship/jewish": {
                     "name": "Synagogue",
-                    "terms": "jewish,synagogue"
+                    "terms": "jewish"
                 },
                 "amenity/place_of_worship/muslim": {
                     "name": "Mosque",
-                    "terms": "muslim,mosque"
+                    "terms": "muslim"
                 },
                 "amenity/police": {
                     "name": "Police",
-                    "terms": "badge,bear,blue,bluecoat,bobby,boy scout,bull,constable,constabulary,cop,copper,corps,county mounty,detective,fed,flatfoot,force,fuzz,gendarme,gumshoe,heat,law,law enforcement,man,narc,officers,patrolman,police"
+                    "terms": "badge,constable,constabulary,cop,detective,fed,law,enforcement,officer,patrol"
                 },
                 "amenity/post_box": {
                     "name": "Mailbox",
-                    "terms": "letter drop,letterbox,mail drop,mailbox,pillar box,postbox"
+                    "terms": "letter,post"
                 },
                 "amenity/post_office": {
                     "name": "Post Office",
-                    "terms": ""
+                    "terms": "letter,mail"
                 },
                 "amenity/pub": {
                     "name": "Pub",
-                    "terms": ""
+                    "terms": "dive,beer,bier,booze"
                 },
                 "amenity/ranger_station": {
                     "name": "Ranger Station",
@@ -116019,19 +117353,19 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "amenity/recycling": {
                     "name": "Recycling",
-                    "terms": ""
+                    "terms": "can,bottle,garbage,scrap,trash"
                 },
                 "amenity/restaurant": {
                     "name": "Restaurant",
-                    "terms": "bar,cafeteria,café,canteen,chophouse,coffee shop,diner,dining room,dive*,doughtnut shop,drive-in,eatery,eating house,eating place,fast-food place,fish and chips,greasy spoon,grill,hamburger stand,hashery,hideaway,hotdog stand,inn,joint*,luncheonette,lunchroom,night club,outlet*,pizzeria,saloon,soda fountain,watering hole"
+                    "terms": "bar,breakfast,cafe,café,canteen,coffee,dine,dining,dinner,drive-in,eat,grill,lunch,table"
                 },
                 "amenity/school": {
                     "name": "School Grounds",
-                    "terms": "academy,alma mater,blackboard,college,department,discipline,establishment,faculty,hall,halls of ivy,institute,institution,jail*,schoolhouse,seminary,university"
+                    "terms": "academy,elementary school,middle school,high school"
                 },
                 "amenity/shelter": {
                     "name": "Shelter",
-                    "terms": "lean-to"
+                    "terms": "lean-to,gazebo,picnic"
                 },
                 "amenity/social_facility": {
                     "name": "Social Facility",
@@ -116042,8 +117376,8 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "terms": ""
                 },
                 "amenity/social_facility/group_home": {
-                    "name": "Group Home",
-                    "terms": "elderly,old,senior living"
+                    "name": "Elderly Group Home",
+                    "terms": "old,senior,living"
                 },
                 "amenity/social_facility/homeless_shelter": {
                     "name": "Homeless Shelter",
@@ -116051,7 +117385,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "amenity/studio": {
                     "name": "Studio",
-                    "terms": "recording studio,studio,radio,radio studio,television,television studio"
+                    "terms": "recording,radio,television"
                 },
                 "amenity/swimming_pool": {
                     "name": "Swimming Pool",
@@ -116075,15 +117409,15 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "amenity/townhall": {
                     "name": "Town Hall",
-                    "terms": "village hall,city government,courthouse,municipal building,municipal center,municipal centre"
+                    "terms": "village,city,government,courthouse,municipal"
                 },
                 "amenity/university": {
-                    "name": "University",
+                    "name": "University Grounds",
                     "terms": "college"
                 },
                 "amenity/vending_machine": {
                     "name": "Vending Machine",
-                    "terms": ""
+                    "terms": "snack,soda,ticket"
                 },
                 "amenity/veterinary": {
                     "name": "Veterinary",
@@ -116091,7 +117425,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "amenity/waste_basket": {
                     "name": "Waste Basket",
-                    "terms": "rubbish bin,litter bin,trash can,garbage can"
+                    "terms": "rubbish,litter,trash,garbage"
                 },
                 "area": {
                     "name": "Area",
@@ -116201,6 +117535,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "name": "Church",
                     "terms": ""
                 },
+                "building/college": {
+                    "name": "College Building",
+                    "terms": "university"
+                },
                 "building/commercial": {
                     "name": "Commercial Building",
                     "terms": ""
@@ -116253,6 +117591,10 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "name": "Industrial Building",
                     "terms": ""
                 },
+                "building/kindergarten": {
+                    "name": "Preschool/Kindergarten Building",
+                    "terms": "kindergarden,pre-school"
+                },
                 "building/public": {
                     "name": "Public Building",
                     "terms": ""
@@ -116271,7 +117613,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "building/school": {
                     "name": "School Building",
-                    "terms": ""
+                    "terms": "academy,elementary school,middle school,high school"
                 },
                 "building/shed": {
                     "name": "Shed",
@@ -116295,191 +117637,199 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "building/university": {
                     "name": "University Building",
-                    "terms": ""
+                    "terms": "college"
                 },
                 "building/warehouse": {
                     "name": "Warehouse",
                     "terms": ""
                 },
+                "craft": {
+                    "name": "Craft",
+                    "terms": ""
+                },
                 "craft/basket_maker": {
                     "name": "Basket Maker",
-                    "terms": "basket,basketry,basket maker,basket weaver"
+                    "terms": ""
                 },
                 "craft/beekeeper": {
                     "name": "Beekeeper",
-                    "terms": "bees,beekeeper,bee box"
+                    "terms": ""
                 },
                 "craft/blacksmith": {
                     "name": "Blacksmith",
-                    "terms": "blacksmith"
+                    "terms": ""
                 },
                 "craft/boatbuilder": {
                     "name": "Boat Builder",
-                    "terms": "boat builder"
+                    "terms": ""
                 },
                 "craft/bookbinder": {
                     "name": "Bookbinder",
-                    "terms": "bookbinder,book repair"
+                    "terms": "book repair"
                 },
                 "craft/brewery": {
                     "name": "Brewery",
-                    "terms": "brewery"
+                    "terms": "beer,bier"
                 },
                 "craft/carpenter": {
                     "name": "Carpenter",
-                    "terms": "carpenter,woodworker"
+                    "terms": "woodworker"
                 },
                 "craft/carpet_layer": {
                     "name": "Carpet Layer",
-                    "terms": "carpet layer"
+                    "terms": ""
                 },
                 "craft/caterer": {
                     "name": "Caterer",
-                    "terms": "Caterer,Catering"
+                    "terms": ""
                 },
                 "craft/clockmaker": {
                     "name": "Clockmaker",
-                    "terms": "clock,clockmaker,clock repair"
+                    "terms": ""
                 },
                 "craft/confectionary": {
                     "name": "Confectionary",
-                    "terms": "confectionary,sweets,candy"
+                    "terms": "sweets,candy"
                 },
                 "craft/dressmaker": {
                     "name": "Dressmaker",
-                    "terms": "dress,dressmaker"
+                    "terms": "seamstress"
                 },
                 "craft/electrician": {
                     "name": "Electrician",
-                    "terms": "electrician"
+                    "terms": "power,wire"
                 },
                 "craft/gardener": {
                     "name": "Gardener",
-                    "terms": "gardener,landscaper,grounds keeper"
+                    "terms": "landscaper,grounds keeper"
                 },
                 "craft/glaziery": {
                     "name": "Glaziery",
-                    "terms": "glass,glass foundry,stained-glass,window"
+                    "terms": "glass,stained-glass,window"
                 },
                 "craft/handicraft": {
                     "name": "Handicraft",
-                    "terms": "handicraft"
+                    "terms": ""
                 },
                 "craft/hvac": {
                     "name": "HVAC",
-                    "terms": "heating,ventilating,air-conditioning,air conditioning"
+                    "terms": "heat*,vent*,air conditioning"
                 },
                 "craft/insulator": {
                     "name": "Insulator",
-                    "terms": "insulation,insulator"
+                    "terms": ""
                 },
                 "craft/jeweler": {
                     "name": "Jeweler",
-                    "terms": "jeweler,gem,diamond"
+                    "terms": ""
                 },
                 "craft/key_cutter": {
                     "name": "Key Cutter",
-                    "terms": "key,key cutter"
+                    "terms": ""
                 },
                 "craft/locksmith": {
                     "name": "Locksmith",
-                    "terms": "locksmith,lock"
+                    "terms": ""
                 },
                 "craft/metal_construction": {
                     "name": "Metal Construction",
-                    "terms": "metal construction"
+                    "terms": ""
                 },
                 "craft/optician": {
                     "name": "Optician",
-                    "terms": "glasses,optician"
+                    "terms": ""
                 },
                 "craft/painter": {
                     "name": "Painter",
-                    "terms": "painter"
+                    "terms": ""
                 },
                 "craft/photographer": {
                     "name": "Photographer",
-                    "terms": "photographer"
+                    "terms": ""
                 },
                 "craft/photographic_laboratory": {
                     "name": "Photographic Laboratory",
-                    "terms": "photographic laboratory,film developer"
+                    "terms": "film"
                 },
                 "craft/plasterer": {
                     "name": "Plasterer",
-                    "terms": "plasterer"
+                    "terms": ""
                 },
                 "craft/plumber": {
                     "name": "Plumber",
-                    "terms": "pumber"
+                    "terms": "pipe"
                 },
                 "craft/pottery": {
                     "name": "Pottery",
-                    "terms": "pottery,potter"
+                    "terms": "ceramic"
                 },
                 "craft/rigger": {
                     "name": "Rigger",
-                    "terms": "rigger"
+                    "terms": ""
                 },
                 "craft/roofer": {
                     "name": "Roofer",
-                    "terms": "roofer"
+                    "terms": ""
                 },
                 "craft/saddler": {
                     "name": "Saddler",
-                    "terms": "saddler"
+                    "terms": ""
                 },
                 "craft/sailmaker": {
                     "name": "Sailmaker",
-                    "terms": "sailmaker"
+                    "terms": ""
                 },
                 "craft/sawmill": {
                     "name": "Sawmill",
-                    "terms": "sawmill,lumber"
+                    "terms": "lumber"
                 },
                 "craft/scaffolder": {
                     "name": "Scaffolder",
-                    "terms": "scaffolder"
+                    "terms": ""
                 },
                 "craft/sculpter": {
                     "name": "Sculpter",
-                    "terms": "sculpter"
+                    "terms": ""
                 },
                 "craft/shoemaker": {
                     "name": "Shoemaker",
-                    "terms": "shoe repair,shoemaker"
+                    "terms": "cobbler"
                 },
                 "craft/stonemason": {
                     "name": "Stonemason",
-                    "terms": "stonemason,masonry"
+                    "terms": "masonry"
                 },
                 "craft/sweep": {
                     "name": "Chimney Sweep",
-                    "terms": "sweep,chimney sweep"
+                    "terms": ""
                 },
                 "craft/tailor": {
                     "name": "Tailor",
-                    "terms": "tailor,clothes"
+                    "terms": "clothes,suit"
                 },
                 "craft/tiler": {
                     "name": "Tiler",
-                    "terms": "tiler"
+                    "terms": ""
                 },
                 "craft/tinsmith": {
                     "name": "Tinsmith",
-                    "terms": "tinsmith"
+                    "terms": ""
                 },
                 "craft/upholsterer": {
                     "name": "Upholsterer",
-                    "terms": "upholsterer"
+                    "terms": ""
                 },
                 "craft/watchmaker": {
                     "name": "Watchmaker",
-                    "terms": "watch,watchmaker,watch repair"
+                    "terms": ""
                 },
                 "craft/window_construction": {
                     "name": "Window Construction",
-                    "terms": "window,window maker,window construction"
+                    "terms": "glass"
+                },
+                "craft/winery": {
+                    "name": "Winery",
+                    "terms": ""
                 },
                 "embankment": {
                     "name": "Embankment",
@@ -116487,7 +117837,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "emergency/ambulance_station": {
                     "name": "Ambulance Station",
-                    "terms": ""
+                    "terms": "EMS,EMT,rescue"
                 },
                 "emergency/fire_hydrant": {
                     "name": "Fire Hydrant",
@@ -116507,7 +117857,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "footway/crosswalk": {
                     "name": "Crosswalk",
-                    "terms": "crosswalk,zebra crossing"
+                    "terms": "zebra crossing"
                 },
                 "footway/sidewalk": {
                     "name": "Sidewalk",
@@ -116527,7 +117877,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "golf/green": {
                     "name": "Putting Green",
-                    "terms": "putting green"
+                    "terms": ""
                 },
                 "golf/hole": {
                     "name": "Golf Hole",
@@ -116555,7 +117905,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "highway/bridleway": {
                     "name": "Bridle Path",
-                    "terms": "bridleway,equestrian trail,horse riding path,bridle road,horse trail"
+                    "terms": "bridleway,equestrian,horse"
                 },
                 "highway/bus_stop": {
                     "name": "Bus Stop",
@@ -116567,15 +117917,15 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "highway/crosswalk": {
                     "name": "Crosswalk",
-                    "terms": "crosswalk,zebra crossing"
+                    "terms": "zebra crossing"
                 },
                 "highway/cycleway": {
                     "name": "Cycle Path",
-                    "terms": ""
+                    "terms": "bike"
                 },
                 "highway/footway": {
                     "name": "Foot Path",
-                    "terms": "beaten path,boulevard,clearing,course,cut*,drag*,footpath,highway,lane,line,orbit,passage,pathway,rail,rails,road,roadway,route,street,thoroughfare,trackway,trail,trajectory,walk"
+                    "terms": "hike,hiking,trackway,trail,walk"
                 },
                 "highway/living_street": {
                     "name": "Living Street",
@@ -116599,7 +117949,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "highway/path": {
                     "name": "Path",
-                    "terms": ""
+                    "terms": "hike,hiking,trackway,trail,walk"
                 },
                 "highway/pedestrian": {
                     "name": "Pedestrian",
@@ -116613,13 +117963,17 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "name": "Primary Link",
                     "terms": "ramp,on ramp,off ramp"
                 },
+                "highway/raceway": {
+                    "name": "Motor Raceway",
+                    "terms": "auto*,race*,nascar"
+                },
                 "highway/residential": {
                     "name": "Residential Road",
                     "terms": ""
                 },
                 "highway/rest_area": {
                     "name": "Rest Area",
-                    "terms": "rest stop,turnout,lay-by"
+                    "terms": "rest stop"
                 },
                 "highway/road": {
                     "name": "Unknown Road",
@@ -116683,7 +118037,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "highway/track": {
                     "name": "Track",
-                    "terms": ""
+                    "terms": "woods road,fire road"
                 },
                 "highway/traffic_signals": {
                     "name": "Traffic Signals",
@@ -116699,7 +118053,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "highway/turning_circle": {
                     "name": "Turning Circle",
-                    "terms": ""
+                    "terms": "cul-de-sac"
                 },
                 "highway/unclassified": {
                     "name": "Unclassified Road",
@@ -116855,7 +118209,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "leisure/marina": {
                     "name": "Marina",
-                    "terms": ""
+                    "terms": "boat"
                 },
                 "leisure/park": {
                     "name": "Park",
@@ -116863,11 +118217,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "leisure/picnic_table": {
                     "name": "Picnic Table",
-                    "terms": "bench,table"
+                    "terms": "bench"
                 },
                 "leisure/pitch": {
                     "name": "Sport Pitch",
-                    "terms": ""
+                    "terms": "field"
                 },
                 "leisure/pitch/american_football": {
                     "name": "American Football Field",
@@ -116901,9 +118255,13 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "name": "Playground",
                     "terms": "jungle gym,play area"
                 },
+                "leisure/running_track": {
+                    "name": "Running Track",
+                    "terms": ""
+                },
                 "leisure/slipway": {
                     "name": "Slipway",
-                    "terms": ""
+                    "terms": "boat launch,boat ramp"
                 },
                 "leisure/sports_center": {
                     "name": "Sports Center / Gym",
@@ -116918,7 +118276,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "terms": ""
                 },
                 "leisure/track": {
-                    "name": "Race Track",
+                    "name": "Racetrack (non-Motorsport)",
                     "terms": ""
                 },
                 "line": {
@@ -116971,14 +118329,14 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "man_made/wastewater_plant": {
                     "name": "Wastewater Plant",
-                    "terms": "sewage works,sewage treatment plant,water treatment plant,reclamation plant"
+                    "terms": "sewage*,water treatment plant,reclamation plant"
                 },
                 "man_made/water_tower": {
                     "name": "Water Tower",
                     "terms": ""
                 },
                 "man_made/water_well": {
-                    "name": "Water well",
+                    "name": "Water Well",
                     "terms": ""
                 },
                 "man_made/water_works": {
@@ -117107,7 +118465,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "office/employment_agency": {
                     "name": "Employment Agency",
-                    "terms": ""
+                    "terms": "job"
                 },
                 "office/estate_agent": {
                     "name": "Real Estate Office",
@@ -117323,20 +118681,44 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "shop/alcohol": {
                     "name": "Liquor Store",
-                    "terms": "alcohol"
+                    "terms": "alcohol,beer,booze,wine"
+                },
+                "shop/anime": {
+                    "name": "Anime Shop",
+                    "terms": ""
+                },
+                "shop/antiques": {
+                    "name": "Antiques Shop",
+                    "terms": ""
                 },
                 "shop/art": {
-                    "name": "Art Shop",
-                    "terms": "art store,art gallery"
+                    "name": "Art Gallery",
+                    "terms": ""
+                },
+                "shop/baby_goods": {
+                    "name": "Baby Goods Store",
+                    "terms": ""
+                },
+                "shop/bag": {
+                    "name": "Bag/Luggage Store",
+                    "terms": "handbag,purse"
                 },
                 "shop/bakery": {
                     "name": "Bakery",
                     "terms": ""
                 },
+                "shop/bathroom_furnishing": {
+                    "name": "Bathroom Furnishing Store",
+                    "terms": ""
+                },
                 "shop/beauty": {
                     "name": "Beauty Shop",
                     "terms": "nail spa,spa,salon,tanning"
                 },
+                "shop/bed": {
+                    "name": "Bedding/Mattress Store",
+                    "terms": ""
+                },
                 "shop/beverages": {
                     "name": "Beverage Store",
                     "terms": ""
@@ -117350,7 +118732,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "terms": ""
                 },
                 "shop/books": {
-                    "name": "Bookstore",
+                    "name": "Book Store",
                     "terms": ""
                 },
                 "shop/boutique": {
@@ -117359,24 +118741,40 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "shop/butcher": {
                     "name": "Butcher",
+                    "terms": "meat"
+                },
+                "shop/candles": {
+                    "name": "Candle Shop",
                     "terms": ""
                 },
                 "shop/car": {
                     "name": "Car Dealership",
-                    "terms": ""
+                    "terms": "auto"
                 },
                 "shop/car_parts": {
                     "name": "Car Parts Store",
-                    "terms": ""
+                    "terms": "auto"
                 },
                 "shop/car_repair": {
                     "name": "Car Repair Shop",
+                    "terms": "auto"
+                },
+                "shop/carpet": {
+                    "name": "Carpet Store",
+                    "terms": "rug"
+                },
+                "shop/cheese": {
+                    "name": "Cheese Store",
                     "terms": ""
                 },
                 "shop/chemist": {
                     "name": "Chemist",
                     "terms": ""
                 },
+                "shop/chocolate": {
+                    "name": "Chocolate Store",
+                    "terms": ""
+                },
                 "shop/clothes": {
                     "name": "Clothing Store",
                     "terms": ""
@@ -117386,16 +118784,36 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "terms": ""
                 },
                 "shop/confectionery": {
-                    "name": "Confectionery",
+                    "name": "Candy Store",
                     "terms": ""
                 },
                 "shop/convenience": {
                     "name": "Convenience Store",
                     "terms": ""
                 },
+                "shop/copyshop": {
+                    "name": "Copy Store",
+                    "terms": ""
+                },
+                "shop/cosmetics": {
+                    "name": "Cosmetics Store",
+                    "terms": ""
+                },
+                "shop/craft": {
+                    "name": "Arts and Crafts Store",
+                    "terms": ""
+                },
+                "shop/curtain": {
+                    "name": "Curtain Store",
+                    "terms": "drape*,window"
+                },
+                "shop/dairy": {
+                    "name": "Dairy Store",
+                    "terms": "milk,egg,cheese"
+                },
                 "shop/deli": {
                     "name": "Deli",
-                    "terms": ""
+                    "terms": "lunch,meat,sandwich"
                 },
                 "shop/department_store": {
                     "name": "Department Store",
@@ -117406,36 +118824,56 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "terms": ""
                 },
                 "shop/dry_cleaning": {
-                    "name": "Dry Cleaners",
+                    "name": "Dry Cleaner",
                     "terms": ""
                 },
                 "shop/electronics": {
                     "name": "Electronics Store",
-                    "terms": ""
+                    "terms": "appliance,audio,computer,tv"
+                },
+                "shop/erotic": {
+                    "name": "Erotic Store",
+                    "terms": "sex,porn"
+                },
+                "shop/fabric": {
+                    "name": "Fabric Store",
+                    "terms": "sew"
                 },
                 "shop/farm": {
                     "name": "Produce Stand",
                     "terms": "farm shop,farm stand"
                 },
+                "shop/fashion": {
+                    "name": "Fashion Store",
+                    "terms": ""
+                },
                 "shop/fishmonger": {
                     "name": "Fishmonger",
                     "terms": ""
                 },
                 "shop/florist": {
                     "name": "Florist",
+                    "terms": "flower"
+                },
+                "shop/frame": {
+                    "name": "Framing Shop",
                     "terms": ""
                 },
                 "shop/funeral_directors": {
                     "name": "Funeral Home",
-                    "terms": "undertaker,funeral parlour,funeral parlor,memorial home"
+                    "terms": "undertaker,memorial home"
+                },
+                "shop/furnace": {
+                    "name": "Furnace Store",
+                    "terms": "oven,stove"
                 },
                 "shop/furniture": {
                     "name": "Furniture Store",
-                    "terms": ""
+                    "terms": "chair,sofa,table"
                 },
                 "shop/garden_centre": {
                     "name": "Garden Center",
-                    "terms": "garden centre"
+                    "terms": "landscape,mulch,shrub,tree"
                 },
                 "shop/gift": {
                     "name": "Gift Shop",
@@ -117443,7 +118881,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "shop/greengrocer": {
                     "name": "Greengrocer",
-                    "terms": ""
+                    "terms": "fruit,vegetable"
                 },
                 "shop/hairdresser": {
                     "name": "Hairdresser",
@@ -117453,25 +118891,45 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "name": "Hardware Store",
                     "terms": ""
                 },
+                "shop/hearing_aids": {
+                    "name": "Hearing Aids Store",
+                    "terms": ""
+                },
+                "shop/herbalist": {
+                    "name": "Herbalist",
+                    "terms": ""
+                },
                 "shop/hifi": {
                     "name": "Hifi Store",
+                    "terms": "stereo,video"
+                },
+                "shop/interior_decoration": {
+                    "name": "Interior Decoration Store",
                     "terms": ""
                 },
                 "shop/jewelry": {
                     "name": "Jeweler",
-                    "terms": ""
+                    "terms": "diamond,gem,ring"
                 },
                 "shop/kiosk": {
-                    "name": "Kiosk",
+                    "name": "News Kiosk",
+                    "terms": ""
+                },
+                "shop/kitchen": {
+                    "name": "Kitchen Design Store",
                     "terms": ""
                 },
                 "shop/laundry": {
                     "name": "Laundry",
                     "terms": ""
                 },
+                "shop/leather": {
+                    "name": "Leather Store",
+                    "terms": ""
+                },
                 "shop/locksmith": {
                     "name": "Locksmith",
-                    "terms": "keys"
+                    "terms": "key,lockpick"
                 },
                 "shop/lottery": {
                     "name": "Lottery Shop",
@@ -117481,42 +118939,90 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "name": "Mall",
                     "terms": ""
                 },
+                "shop/massage": {
+                    "name": "Massage Shop",
+                    "terms": ""
+                },
+                "shop/medical_supply": {
+                    "name": "Medical Supply Store",
+                    "terms": ""
+                },
                 "shop/mobile_phone": {
                     "name": "Mobile Phone Store",
                     "terms": ""
                 },
+                "shop/money_lender": {
+                    "name": "Money Lender",
+                    "terms": ""
+                },
                 "shop/motorcycle": {
                     "name": "Motorcycle Dealership",
                     "terms": ""
                 },
                 "shop/music": {
                     "name": "Music Store",
+                    "terms": "CD,vinyl"
+                },
+                "shop/musical_instrument": {
+                    "name": "Musical Instrument Store",
                     "terms": ""
                 },
                 "shop/newsagent": {
-                    "name": "Newsagent",
+                    "name": "Newspaper/Magazine Shop",
                     "terms": ""
                 },
                 "shop/optician": {
                     "name": "Optician",
+                    "terms": "eye,glasses"
+                },
+                "shop/organic": {
+                    "name": "Organic Goods Store",
                     "terms": ""
                 },
                 "shop/outdoor": {
-                    "name": "Outdoor Store",
+                    "name": "Outdoors Store",
+                    "terms": "camping,climbing,hiking"
+                },
+                "shop/paint": {
+                    "name": "Paint Store",
+                    "terms": ""
+                },
+                "shop/pawnbroker": {
+                    "name": "Pawn Shop",
                     "terms": ""
                 },
                 "shop/pet": {
                     "name": "Pet Store",
-                    "terms": ""
+                    "terms": "cat,dog,fish"
                 },
                 "shop/photo": {
                     "name": "Photography Store",
+                    "terms": "camera,film"
+                },
+                "shop/pyrotechnics": {
+                    "name": "Fireworks Store",
+                    "terms": ""
+                },
+                "shop/radiotechnics": {
+                    "name": "Radio/Electronic Component Store",
+                    "terms": ""
+                },
+                "shop/religion": {
+                    "name": "Religious Store",
+                    "terms": ""
+                },
+                "shop/scuba_diving": {
+                    "name": "Scuba Diving Shop",
                     "terms": ""
                 },
                 "shop/seafood": {
                     "name": "Seafood Shop",
                     "terms": "fishmonger"
                 },
+                "shop/second_hand": {
+                    "name": "Consignment/Thrift Store",
+                    "terms": "secondhand,second hand,resale,thrift,used"
+                },
                 "shop/shoes": {
                     "name": "Shoe Store",
                     "terms": ""
@@ -117527,15 +119033,31 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "shop/stationery": {
                     "name": "Stationery Store",
-                    "terms": ""
+                    "terms": "card,paper"
                 },
                 "shop/supermarket": {
                     "name": "Supermarket",
-                    "terms": "bazaar,boutique,chain,co-op,cut-rate store,discount store,five-and-dime,flea market,galleria,grocery store,mall,mart,outlet,outlet store,shop,shopping center,shopping centre,shopping plaza,stand,store,supermarket,thrift shop"
+                    "terms": "grocery,store,shop"
                 },
                 "shop/tailor": {
                     "name": "Tailor",
-                    "terms": "tailor,clothes"
+                    "terms": "clothes,suit"
+                },
+                "shop/tattoo": {
+                    "name": "Tattoo Parlor",
+                    "terms": ""
+                },
+                "shop/tea": {
+                    "name": "Tea Store",
+                    "terms": ""
+                },
+                "shop/ticket": {
+                    "name": "Ticket Seller",
+                    "terms": ""
+                },
+                "shop/tobacco": {
+                    "name": "Tobacco Shop",
+                    "terms": ""
                 },
                 "shop/toys": {
                     "name": "Toy Store",
@@ -117553,17 +119075,37 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                     "name": "Vacant Shop",
                     "terms": ""
                 },
+                "shop/vacuum_cleaner": {
+                    "name": "Vacuum Cleaner Store",
+                    "terms": ""
+                },
                 "shop/variety_store": {
                     "name": "Variety Store",
                     "terms": ""
                 },
                 "shop/video": {
                     "name": "Video Store",
+                    "terms": "DVD"
+                },
+                "shop/video_games": {
+                    "name": "Video Game Store",
+                    "terms": ""
+                },
+                "shop/water_sports": {
+                    "name": "Watersport/Swim Shop",
+                    "terms": ""
+                },
+                "shop/weapons": {
+                    "name": "Weapon Shop",
+                    "terms": "ammo,gun,knife,knives"
+                },
+                "shop/window_blind": {
+                    "name": "Window Blind Store",
                     "terms": ""
                 },
                 "shop/wine": {
                     "name": "Wine Shop",
-                    "terms": "winery"
+                    "terms": ""
                 },
                 "tourism": {
                     "name": "Tourism",
@@ -117583,7 +119125,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "tourism/camp_site": {
                     "name": "Camp Site",
-                    "terms": "camping"
+                    "terms": ""
                 },
                 "tourism/caravan_site": {
                     "name": "RV Park",
@@ -117595,7 +119137,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "tourism/guest_house": {
                     "name": "Guest House",
-                    "terms": "B&B,Bed & Breakfast,Bed and Breakfast"
+                    "terms": "B&B,Bed and Breakfast"
                 },
                 "tourism/hostel": {
                     "name": "Hostel",
@@ -117615,11 +119157,11 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
                 },
                 "tourism/museum": {
                     "name": "Museum",
-                    "terms": "exhibition,exhibits archive,foundation,gallery,hall,institution,library,menagerie,repository,salon,storehouse,treasury,vault"
+                    "terms": "exhibition,foundation,gallery,hall,institution"
                 },
                 "tourism/picnic_site": {
                     "name": "Picnic Site",
-                    "terms": ""
+                    "terms": "camp"
                 },
                 "tourism/theme_park": {
                     "name": "Theme Park",