Update to iD v2.12.1

This commit is contained in:
Bryan Housel 2018-12-05 02:04:18 -05:00
parent d0dd5302ac
commit b02728076b
8 changed files with 170 additions and 70 deletions

View file

@ -29706,7 +29706,10 @@
};
tooltip.destroy = function(selection$$1) {
tooltip.destroy = function(selection$$1, selector$$1) {
// by default, just destroy the current tooltip
selector$$1 = selector$$1 || '.tooltip-' + _id;
selection$$1
.on('mouseenter.tooltip', null)
.on('mouseleave.tooltip', null)
@ -29714,11 +29717,16 @@
return this.getAttribute('data-original-title') || this.getAttribute('title');
})
.attr('data-original-title', null)
.selectAll('.tooltip-' + _id)
.selectAll(selector$$1)
.remove();
};
tooltip.destroyAny = function(selection$$1) {
selection$$1.call(tooltip.destroy, '.tooltip');
};
function setup() {
var root = select(this);
var animate = _animation.apply(this, arguments);
@ -63562,7 +63570,10 @@
// Setup data layers (only OSM)
var layers = context.layers();
layers.all().forEach(function(item) {
item.layer.enabled(item.id === 'osm');
// if the layer has the function `enabled`
if (typeof item.layer.enabled === 'function') {
item.layer.enabled(item.id === 'osm');
}
});
// Mock geocoder
@ -68286,6 +68297,8 @@
var description = d.description();
var isOverflowing = (span.property('clientWidth') !== span.property('scrollWidth'));
item.call(tooltip().destroyAny);
if (d === _previousBackground) {
item.call(tooltip()
.placement(placement)
@ -68300,8 +68313,6 @@
.placement(placement)
.title(description || d.name())
);
} else {
item.call(tooltip().destroy);
}
});
}
@ -83817,7 +83828,7 @@
function coreContext() {
var context = {};
context.version = '2.12.0';
context.version = '2.12.1';
// create a special translation that contains the keys in place of the strings
var tkeys = cloneDeep(en);

View file

@ -7820,19 +7820,48 @@
}
}
},
"osm-india-forum": {
"name": "OpenStreetMap Indien Forum",
"description": "OpenStreetMap Indien Web Forum"
},
"osm-india-github": {
"name": "OpenStreetMap Indien GitHub",
"description": "Programmiere mit uns: {url}"
},
"OSM-india-mailinglist": {
"name": "OpenStreetMap Indien Mailingliste",
"description": "Talk-in ist die offizielle Mailingliste für die indische Community"
},
"osm-india-telegram": {
"name": "OpenStreetMap Indien Telegram",
"description": "Schließen Sie sich unserer Gemeinschaft an: {url}"
},
"OSM-india-twitter": {
"name": "OpenStreetMap Indien Twitter",
"description": "Wir sind nur einen Tweet weit weg: {url}"
},
"osm-india-website": {
"name": "OpenStreetMap Indien",
"description": "Mapper und OpenStreetMap Benutzer in Indien"
},
"osm-india-wiki": {
"name": "OpenStreetMap Wikiproject Indien",
"description": "Alles was du über Mappen in Indien wissen musst: {url}"
},
"osm-india-youtube": {
"name": "OpenStreetMap Indien Youtube",
"description": "Abonniere unseren Kanal: {url}"
},
"OSM-India-Puducherry-Facebook": {
"name": "Freie Software Hardware Bewegung - Facebook",
"description": "FSHM Facebook Seite für Veranstaltungen und Aktivitäten der Gemeinschaft",
"extendedDescription": "FSHM organisiert Veranstaltungen für freie Software/Hard, Technologie, Aktivismus für OpenStreetMap. Seine Facebook Seite ist der beste Weg um in Kontakt mit sweinen Veranstaltungen zu bleiben."
},
"OSM-Puducherry-Mailing-List": {
"name": "Freie Software Hardware Bewegung - Mailing Liste",
"description": "FSHM Puducherry Mailing Liste um Mappen in Puducherry und anderes zu diskutieren.",
"extendedDescription": "FSHM organisiert Treffen über Freie Software/Hardware, Technologie und Aktivismus für OpenStreetMap."
},
"OSM-India-Puducherry-Matrix": {
"name": "Freie Software Hardware Bewegung - Matrix",
"description": "FSHM Riot Gruppe zum diskutieren, plaudern und mehr über Mapping Aktivitäten zu erfahren, Veranstaltungen in und um Puducherry",

View file

@ -5554,7 +5554,7 @@
},
"man_made/petroleum_well": {
"name": "Pozo de petróleo",
"terms": "pozo, petróleo, plataforma de perforación, torre de perforación, perforación de petróleo, plataforma petrolera"
"terms": "pozo, pozo petrolero, petróleo, plataforma de perforación, torre de perforación, perforación de petróleo, plataforma petrolera"
},
"man_made/pier": {
"name": "Embarcadero",

View file

@ -5,7 +5,9 @@
"information": "info",
"remove": "supprimer",
"undo": "annuler",
"zoom_to": "zoomer dessus"
"zoom_to": "zoomer dessus",
"copy": "copier",
"open_wikidata": "ouvrir sur wikidata"
},
"modes": {
"add_area": {
@ -1437,6 +1439,11 @@
"coordinate": "{coordinate}{direction}",
"coordinate_pair": "{latitude}, {longitude}"
},
"wikidata": {
"identifier": "Identifiant",
"label": "Étiquette",
"description": "Description"
},
"presets": {
"categories": {
"category-barrier": {
@ -3158,6 +3165,9 @@
"width": {
"label": "Largeur (mètres)"
},
"wikidata": {
"label": "Wikidata"
},
"wikipedia": {
"label": "Wikipédia"
},
@ -3451,6 +3461,18 @@
"name": "Restauration rapide",
"terms": "fast food, restauration rapide, service au comptoir, vente à emporter, à emporter, a emporter, burger, sandwich, kebab, panini, tacos"
},
"amenity/fast_food/burger": {
"name": "Fast food de burger",
"terms": "burger,fast-food,macdo,mcdo"
},
"amenity/fast_food/chicken": {
"name": "Fast food de poulet",
"terms": "poulet,kfc,fast-food"
},
"amenity/fast_food/fish_and_chips": {
"name": "Fast food de fish & chips",
"terms": "fish and chips,fish & chips,fast-food,poisson"
},
"amenity/fast_food/kebab": {
"name": "Kebab",
"terms": "kebab,grec,kébab,sandwich,kebap,doner,döner"
@ -3527,6 +3549,10 @@
"amenity/monastery": {
"name": "Terrain de monastère"
},
"amenity/money_transfer": {
"name": "Transfert d'argent",
"terms": "transfert d'argent,western union,banque,argent,échange"
},
"amenity/motorcycle_parking": {
"name": "Parking pour motocyclettes",
"terms": "Parc à motos,Stationnement motos"
@ -3558,6 +3584,14 @@
"name": "Place de parking",
"terms": "Parking, Zone de stationnement"
},
"amenity/payment_centre": {
"name": "Centre de paiement",
"terms": "taxe,payement,paiement,chèque,facture,finance,argent"
},
"amenity/payment_terminal": {
"name": "Terminal de paiement",
"terms": "terminal de paiement,atm,dab,finance,argent,paiement"
},
"amenity/pharmacy": {
"name": "Pharmacie",
"terms": "Pharmacie"
@ -3649,7 +3683,8 @@
"terms": "Restaurant,brasserie"
},
"amenity/restaurant/american": {
"name": "Restaurant américain"
"name": "Restaurant américain",
"terms": "restaurant américain,café,diner,bar,grill"
},
"amenity/restaurant/asian": {
"name": "Restaurant asiatique",
@ -3664,45 +3699,60 @@
"terms": "restaurant français,restaurant francais,cuisine française,cuisine francaise"
},
"amenity/restaurant/german": {
"name": "Restaurant allemand"
"name": "Restaurant allemand",
"terms": "restaurant allemand,café,bar"
},
"amenity/restaurant/greek": {
"name": "Restaurant grec"
"name": "Restaurant grec",
"terms": "restaurant grecque,café,bar"
},
"amenity/restaurant/indian": {
"name": "Restaurant indien"
"name": "Restaurant indien",
"terms": "restaurant indien,café,bar"
},
"amenity/restaurant/italian": {
"name": "Restaurant italien",
"terms": "restaurant italien,pizzeria,cuisine italienne,pizza,pates,pâtes,risotto"
},
"amenity/restaurant/japanese": {
"name": "Restaurant japonais"
"name": "Restaurant japonais",
"terms": "restaurant japonais,café,bar,sushi,maki,miso"
},
"amenity/restaurant/mexican": {
"name": "Restaurant mexicain"
"name": "Restaurant mexicain",
"terms": "restaurant mexicain,café,bar,burritos,enchiladas,fajitas,nachos,tortillas,salsa,tamales"
},
"amenity/restaurant/noodle": {
"name": "Restaurant de nouilles"
"name": "Restaurant de nouilles",
"terms": "restaurant de pâtes,café,bar,ramen,soba,nouilles,pâtes,vermicelles"
},
"amenity/restaurant/pizza": {
"name": "Pizzeria",
"terms": "pizzeria,pizza"
},
"amenity/restaurant/seafood": {
"name": "Restaurant de fruits de mer"
"name": "Restaurant de fruits de mer",
"terms": "restaurant de fruits de mer,bar,café,poisson,crabe,crustacés,huitres,moules,coquillages"
},
"amenity/restaurant/steakhouse": {
"name": "Steakhouse",
"terms": "restaurant de steak,café,bar,steak,bœuf,grill"
},
"amenity/restaurant/sushi": {
"name": "Restaurant sushi"
"name": "Restaurant sushi",
"terms": "restaurant de sushi,bar,café,sushi,japonais,restaurant japonais"
},
"amenity/restaurant/thai": {
"name": "Restaurant thaïlandais"
"name": "Restaurant thaïlandais",
"terms": "restaurant thaïlandais,café,bar,thai"
},
"amenity/restaurant/turkish": {
"name": "Restaurant turc"
"name": "Restaurant turc",
"terms": "restaurant turque,café,bar"
},
"amenity/restaurant/vietnamese": {
"name": "Restaurant vietnamien"
"name": "Restaurant vietnamien",
"terms": "restaurant vietnamien,café,bar"
},
"amenity/sanitary_dump_station": {
"name": "Station de vidange sanitaire",
@ -3997,10 +4047,18 @@
"name": "Clôture",
"terms": "clôture, cloture, grillage, grille, barrière, palissade, enceinte, enclos, barrier fence, fence"
},
"barrier/fence/railing": {
"name": "garde-fou",
"terms": "garde-fou,garde-corps,rampe"
},
"barrier/gate": {
"name": "Portail",
"terms": "portail, porte, passage, ouverture, entrée, portillon, entree, barrière, barriere, fermeture, barrier gate, gate"
},
"barrier/guard_rail": {
"name": "barrière de sécurité",
"terms": "barrière de sécurité,barre de sécurité,garde-fou,garde-corps,rampe"
},
"barrier/hedge": {
"name": "Haie",
"terms": "haie, arbustes, arbres, plantes, buisson, clôture, brise-vent, rangée, broussaille, bordure, cloture, buis, ifs, barrier hedge, hedge"
@ -4009,6 +4067,10 @@
"name": "Trottoir",
"terms": "trottoir,bord"
},
"barrier/kerb/flush": {
"name": "Bordure de trottoir affleurante",
"terms": "abaissement de trottoir,bordure de trottoir abaissée,bordure abaissée,rampe d'accès,plan incliné,charretière,abaissement,affleurement"
},
"barrier/kerb/lowered": {
"name": "Bordure de trottoir abaissée",
"terms": "abaissement de trottoir,bateau,bordure abaissée,rampe d'accès,plan incliné,charretière"
@ -5130,7 +5192,8 @@
"terms": "Emplacement de feu de camp"
},
"leisure/fishing": {
"name": "Lieu de pêche"
"name": "Lieu de pêche",
"terms": "lieu de pêche,zone de pêche"
},
"leisure/fitness_centre": {
"name": "Centre de fitness / gym",
@ -5413,16 +5476,20 @@
"terms": "communication,antenne,radio,télécommunication,téléphonie"
},
"man_made/mast/communication": {
"name": "Mât de communication"
"name": "Mât de communication",
"terms": "Émetteur de téléphonie mobile, émetteur de téléphonie cellulaire, mât de transmission, pylône de transmission, tour haubanée, émetteur radio, émetteur de télévision, tour de télévision, tour de télédiffusion"
},
"man_made/mast/communication/mobile_phone": {
"name": "Mât de téléphonie mobile"
"name": "Mât de téléphonie mobile",
"terms": "Émetteur de téléphonie mobile, émetteur de téléphonie cellulaire, mât de transmission, pylône de transmission, tour haubanée, émetteur radio, émetteur de télévision, tour de télévision, tour de télédiffusion"
},
"man_made/mast/communication/radio": {
"name": "Mât de transmission radio"
"name": "Mât de transmission radio",
"terms": "émetteur radio,antenne,tour,communication,mât,radio,transmission"
},
"man_made/mast/communication/television": {
"name": "Mât de télédiffusion"
"name": "Mât de télédiffusion",
"terms": "antenne,diffusion,tour de télédiffusion,mât de communication,tour,mât de télévision,télévision,transmission,tv"
},
"man_made/monitoring_station": {
"name": "Station de surveillance",
@ -5450,7 +5517,7 @@
},
"man_made/silo": {
"name": "Silo",
"terms": "Réservoir, emplacement de stockage, ..."
"terms": "Réservoir, emplacement de stockage"
},
"man_made/storage_tank": {
"name": "Réservoir de stockage",
@ -5473,10 +5540,12 @@
"terms": "Tour"
},
"man_made/tower/communication": {
"name": "Tour de communication"
"name": "Tour de communication",
"terms": "tour de télécommunication,diffusion,antenne,téléphone portable,téléphone cellulaire,gsm,tour,radio,mât de transmission,pylône de transmission"
},
"man_made/tower/observation": {
"name": "Tour d'observation"
"name": "Tour d'observation",
"terms": "tour d'observation,mirador"
},
"man_made/wastewater_plant": {
"name": "Station d'épuration",
@ -5511,7 +5580,8 @@
"name": "Collecteur d'eaux pluviales"
},
"manhole/telecom": {
"name": "Puit de télécommunication"
"name": "Puits de télécommunication",
"terms": "couvert,puits,trou,télécom,téléphone"
},
"natural": {
"name": "Nature",
@ -5763,7 +5833,8 @@
"terms": "Autorité administrative indépendante, ONG quasi-autonome, AAI, QUANGO."
},
"office/religion": {
"name": "Bureau religieux"
"name": "Bureau religieux",
"terms": "bureau religieux,administration religieuse,secrétariat religieux,intendance religieuse"
},
"office/research": {
"name": "Organisme de recherche",
@ -7622,19 +7693,48 @@
}
}
},
"osm-india-forum": {
"name": "Forum OpenStreetMap Inde",
"description": "Forum OpenStreetMap Inde sur le web"
},
"osm-india-github": {
"name": "Github d'OpenstreetMap Inde",
"description": "Codons ensenble : {url}"
},
"OSM-india-mailinglist": {
"name": "Liste de diffusion OpenStreetMap Inde",
"description": "Talk-in est la liste de diffusion officielle pour la communauté OSM d'Inde"
},
"osm-india-telegram": {
"name": "Telegram d'OpenStreetMap Inde",
"description": "Rejoignez notre famille : {url}"
},
"OSM-india-twitter": {
"name": "Fil Twitter d'OpenStreetMap Inde",
"description": "Nous ne sommes qu'à un tweet : {url}"
},
"osm-india-website": {
"name": "OpenStreetMap Inde",
"description": "Cartographes et utilisateurs d'OpenStreetMap en Inde"
},
"osm-india-wiki": {
"name": "Wikiproject OpenStreetMap Inde",
"description": "Tout ce dont vous avez besoin pour cartographier en Inde : {url}"
},
"osm-india-youtube": {
"name": "Chaîne Youtube d'OpenStreetMap Inde",
"description": "Abonnez-vous à notre chaîne : {url}"
},
"OSM-India-Puducherry-Facebook": {
"name": "Mouvement logiciel libre et matériel (Free Software Hardware Movement, FSHM) - Facebook",
"description": "Page Facebook de FSHM pour en connaître plus sur les événements communautaires et les activités",
"extendedDescription": "FSHM organise des événements liés au logiciel et au matériel libre, les technologies, l'activisme et OpenStreetMap. Sa page FB est le meilleur moyen de rester en contact avec ses événements"
},
"OSM-Puducherry-Mailing-List": {
"name": "Mouvement logiciel libre et matériel (Free Software Hardware Movement, FSHM) - Liste de diffusion",
"description": "Liste de diffusion de FSHM Pondichéry pour discuter de cartographie à Pondichéry et d'autres choses.",
"extendedDescription": "FSHM organise des événements liés au logiciel et au matériel libre, les technologies, l'activisme et OpenStreetMap."
},
"OSM-India-Puducherry-Matrix": {
"name": "Mouvement logiciel libre et matériel (Free Software Hardware Movement, FSHM) - Matrix",
"description": "Group riot FSHM pour discutter, partager et mettre à jour les activités de cartographie, les événements à et autour de Puducherry",

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 8.5 KiB

View file

@ -1,3 +0,0 @@
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18">
<path fill="#FFFFFF" d="M9,18A9,9,0,1,0,0,9a9,9,0,0,0,9,9H9Zm0-6A3,3,0,1,0,6,9a3,3,0,0,0,3,3H9Z"/>
</svg>

Before

Width:  |  Height:  |  Size: 202 B

View file

@ -1,20 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="256px" height="256px" viewBox="0 0 256 256" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
<!-- Generator: Sketch 3.4.4 (17249) - http://www.bohemiancoding.com/sketch -->
<title>pano</title>
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
<g id="pano" sketch:type="MSArtboardGroup">
<g id="Rectangle-1-Copy-+-Rectangle-1-Copy-2-+-Oval-1" sketch:type="MSLayerGroup" transform="translate(61.572384, 84.192352)">
<path d="M135.855232,101.615296 C135.855232,101.615296 103.382746,92.2132101 67.9276161,92.2132101 C32.4724863,92.2132101 0,101.615296 0,101.615296 L0,0 C0,0 30.4122297,10.0360786 67.9276161,10.0360786 C105.443003,10.0360786 135.855232,0 135.855232,0 L135.855232,101.615296 Z" id="Rectangle-1-Copy" stroke="#FFFFFF" stroke-width="8" stroke-linecap="square" sketch:type="MSShapeGroup"></path>
<path d="M65.2515468,92.2308451 C66.141358,92.2191889 67.0335387,92.2132101 67.9276161,92.2132101 C103.382746,92.2132101 135.855232,101.615296 135.855232,101.615296 L135.855232,84.0980298 L98.3326441,48.9258831 L76.4197966,75.0316935 L50.9457121,57.298266 L26.0895311,75.0316935 L15.1908438,65.499134 L1.06628275,83.4616565 L0.396784939,97.363561 L5.38768417,100.205177 C15.5281798,97.7097096 38.7177244,92.7317312 64.01058,92.2507818 L65.3398193,92.1152917 L65.2515468,92.2308451 L65.2515468,92.2308451 Z" id="Rectangle-1-Copy-2" fill="#FFFFFF" sketch:type="MSShapeGroup"></path>
<ellipse id="Oval-1" fill="#FFFFFF" sketch:type="MSShapeGroup" cx="24.2149372" cy="29.7946083" rx="12.2647085" ry="12.2314708"></ellipse>
</g>
<path d="M218.346443,139.284176 L218.346443,151.634652 L252.65332,134.481213 L218.346443,117.327775 L218.346443,128.305975 L207.368243,128.305975 L207.368243,139.284176 L218.346443,139.284176 Z" id="Triangle-1-Copy-3" fill="#FFFFFF" sketch:type="MSShapeGroup"></path>
<path d="M40.6535565,139.284176 L40.6535565,151.634652 L6.34667969,134.481213 L40.6535565,117.327775 L40.6535565,128.305975 L51.6317571,128.305975 L51.6317571,139.284176 L40.6535565,139.284176 Z" id="Triangle-1-Copy-4" fill="#FFFFFF" sketch:type="MSShapeGroup"></path>
<path d="M134.336433,73.2141516 L146.686909,73.2141516 L129.53347,38.9072747 L112.380032,73.2141516 L123.358232,73.2141516 L123.358232,84.1923522 L134.336433,84.1923522 L134.336433,73.2141516 Z" id="Triangle-1-Copy-5" fill="#FFFFFF" sketch:type="MSShapeGroup"></path>
<path d="M134.336433,196.785848 L146.686909,196.785848 L129.53347,231.092725 L112.380032,196.785848 L123.358232,196.785848 L123.358232,185.807648 L134.336433,185.807648 L134.336433,196.785848 Z" id="Triangle-1-Copy-6" fill="#FFFFFF" sketch:type="MSShapeGroup"></path>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3 KiB

View file

@ -1 +0,0 @@
<svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><title>spinner</title><path d="M16 3.368c.93 0 1.684-.754 1.684-1.684C17.684.754 16.93 0 16 0c-.93 0-1.684.754-1.684 1.684 0 .93.754 1.684 1.684 1.684zm4.82.956c.857.364 1.845-.036 2.21-.892.362-.856-.037-1.845-.894-2.208-.856-.364-1.844.036-2.208.892-.363.856.036 1.845.892 2.208zm4.112 2.744c.658.658 1.724.658 2.382 0 .657-.658.657-1.724 0-2.382-.658-.657-1.724-.657-2.382 0-.658.658-.658 1.724 0 2.382zm2.732 4.085c.35.862 1.33 1.28 2.193.93.862-.348 1.28-1.33.93-2.192-.348-.862-1.33-1.278-2.192-.93-.862.348-1.28 1.33-.93 2.193zM28.632 16c0 .93.754 1.684 1.684 1.684.93 0 1.684-.754 1.684-1.684 0-.93-.754-1.684-1.684-1.684-.93 0-1.684.754-1.684 1.684zm-.956 4.82c-.364.857.036 1.845.892 2.21.856.362 1.845-.037 2.208-.894.364-.856-.036-1.844-.892-2.208-.856-.363-1.845.036-2.208.892zm-2.744 4.112c-.658.658-.658 1.724 0 2.382.658.657 1.724.657 2.382 0 .657-.658.657-1.724 0-2.382-.658-.658-1.724-.658-2.382 0zm-4.085 2.732c-.862.35-1.28 1.33-.93 2.193.348.862 1.33 1.28 2.192.93.862-.348 1.278-1.33.93-2.192-.348-.862-1.33-1.28-2.193-.93zM16 28.632c-.93 0-1.684.754-1.684 1.684 0 .93.754 1.684 1.684 1.684.93 0 1.684-.754 1.684-1.684 0-.93-.754-1.684-1.684-1.684zm-4.82-.956c-.857-.364-1.845.036-2.21.892-.362.856.037 1.845.894 2.208.856.364 1.844-.036 2.208-.892.363-.856-.036-1.845-.892-2.208zm-4.112-2.744c-.658-.658-1.724-.658-2.382 0-.657.658-.657 1.724 0 2.382.658.657 1.724.657 2.382 0 .658-.658.658-1.724 0-2.382zM4.324 20.82c-.363-.856-1.352-1.255-2.208-.892-.856.364-1.256 1.352-.892 2.208.363.857 1.352 1.256 2.208.893.856-.365 1.256-1.353.892-2.21zM3.368 16c0-.93-.754-1.684-1.684-1.684C.754 14.316 0 15.07 0 16c0 .93.754 1.684 1.684 1.684.93 0 1.684-.754 1.684-1.684zm.956-4.82c.364-.857-.036-1.845-.892-2.21-.856-.362-1.845.037-2.208.894-.364.856.036 1.844.892 2.208.856.363 1.845-.036 2.208-.892zm2.744-4.112c.658-.658.658-1.724 0-2.382-.658-.657-1.724-.657-2.382 0-.657.658-.657 1.724 0 2.382.658.658 1.724.658 2.382 0zm4.085-2.732c.862-.35 1.28-1.33.93-2.193-.348-.862-1.33-1.28-2.192-.93-.862.348-1.278 1.33-.93 2.192.348.862 1.33 1.28 2.193.93z" fill="#ABB1B9" fill-rule="evenodd"/></svg>

Before

Width:  |  Height:  |  Size: 2.1 KiB