├── .buckconfig ├── .circleci └── config.yml ├── .env.sample ├── .eslintrc.json ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .nvmrc ├── .watchmanconfig ├── App.js ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── __mocks__ ├── react-native-config.js ├── redux-persist.js └── redux-persist │ └── lib │ └── storage.js ├── __tests__ ├── App.js ├── actions │ ├── __snapshots__ │ │ ├── edit.test.js.snap │ │ └── trace.test.js.snap │ ├── camera.test.js │ ├── edit.test.js │ ├── map.test.js │ ├── observeApi.test.js │ └── trace.test.js ├── fixtures │ ├── dc-nodes.json │ ├── nodes.json │ ├── opencage-response.json │ ├── osm-change-upload-response.xml │ ├── osm-changeset-download-response.xml │ ├── osm-geojson-dc.geojson │ ├── osm-geojson.geojson │ ├── osm-node.xml │ ├── osm-response-for-updated-tile.xml │ ├── osm-xml-for-bbox.xml │ ├── osm-xml-for-quadkey.xml │ ├── osm-xml-with-relations.xml │ ├── state-conflict.json │ ├── state.json │ └── way-343446026 │ │ ├── node-3502789251.xml │ │ ├── node-3502789252.xml │ │ ├── node-3502789253.xml │ │ ├── node-3502789254.xml │ │ └── way-343446026.xml ├── offline-tiles.test.js ├── reducers │ ├── camera.test.js │ ├── edit.test.js │ ├── map.test.js │ ├── observeApi.test.js │ └── traces.test.js ├── services │ ├── __snapshots__ │ │ ├── nodecache.test.js.snap │ │ └── osm-api.test.js.snap │ ├── nodecache.test.js │ └── osm-api.test.js ├── setup │ ├── mock-fetch.js │ └── mock.js ├── test-utils.js └── utils │ ├── __snapshots__ │ ├── add-icon-url.test.js.snap │ ├── edit-to-osm-change.test.js.snap │ ├── edit-utils.test.js.snap │ ├── filter-tags.test.js.snap │ ├── filter-xml.test.js.snap │ ├── get-changeset-xml.test.js.snap │ ├── get-feature-fields.test.js.snap │ ├── get-fields.test.js.snap │ ├── get-parent-preset.js.snap │ ├── get-preset-by-tags.test.js.snap │ ├── nearest.test.js.snap │ └── properties-diff.test.js.snap │ ├── add-icon-url.test.js │ ├── edit-to-osm-change.test.js │ ├── edit-utils.test.js │ ├── errors.test.js │ ├── filter-tags.test.js │ ├── filter-xml.test.js │ ├── get-changeset-xml.test.js │ ├── get-feature-fields.test.js │ ├── get-fields.test.js │ ├── get-parent-preset.js │ ├── get-place-name.test.js │ ├── get-preset-by-tags.test.js │ ├── get-taginfo.test.js │ ├── nearest.test.js │ ├── order-presets.test.js │ └── properties-diff.test.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── proguard-rules.pro │ ├── src │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ ├── fonts │ │ │ │ ├── AntDesign.ttf │ │ │ │ ├── Collecticons.ttf │ │ │ │ ├── Entypo.ttf │ │ │ │ ├── EvilIcons.ttf │ │ │ │ ├── Feather.ttf │ │ │ │ ├── FontAwesome.ttf │ │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ │ ├── Fontisto.ttf │ │ │ │ ├── Foundation.ttf │ │ │ │ ├── Ionicons.ttf │ │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ │ ├── MaterialIcons.ttf │ │ │ │ ├── ObserveIcons.ttf │ │ │ │ ├── Octicons.ttf │ │ │ │ ├── SimpleLineIcons.ttf │ │ │ │ └── Zocial.ttf │ │ │ ├── osm.json │ │ │ └── satellite.json │ │ │ ├── java │ │ │ └── com │ │ │ │ └── developmentseed │ │ │ │ └── observe │ │ │ │ ├── MainActivity.java │ │ │ │ ├── MainApplication.java │ │ │ │ ├── ReadOnlyJavaNetCookieJar.java │ │ │ │ └── generated │ │ │ │ └── BasePackageList.java │ │ │ └── res │ │ │ ├── drawable-xxhdpi │ │ │ ├── far_clone.png │ │ │ ├── far_credit_card.png │ │ │ ├── far_dot_circle.png │ │ │ ├── far_times_circle.png │ │ │ ├── fas_ambulance.png │ │ │ ├── fas_apple_alt.png │ │ │ ├── fas_archive.png │ │ │ ├── fas_archway.png │ │ │ ├── fas_baby.png │ │ │ ├── fas_baby_carriage.png │ │ │ ├── fas_balance_scale.png │ │ │ ├── fas_bath.png │ │ │ ├── fas_beer.png │ │ │ ├── fas_bell.png │ │ │ ├── fas_biking.png │ │ │ ├── fas_blender.png │ │ │ ├── fas_book.png │ │ │ ├── fas_box.png │ │ │ ├── fas_box_open.png │ │ │ ├── fas_bullseye.png │ │ │ ├── fas_burn.png │ │ │ ├── fas_calendar_alt.png │ │ │ ├── fas_camera_retro.png │ │ │ ├── fas_cannabis.png │ │ │ ├── fas_car_battery.png │ │ │ ├── fas_car_crash.png │ │ │ ├── fas_carrot.png │ │ │ ├── fas_cat.png │ │ │ ├── fas_charging_station.png │ │ │ ├── fas_cheese.png │ │ │ ├── fas_chess_bishop.png │ │ │ ├── fas_chess_knight.png │ │ │ ├── fas_chess_pawn.png │ │ │ ├── fas_chevron_circle_up.png │ │ │ ├── fas_child.png │ │ │ ├── fas_church.png │ │ │ ├── fas_code.png │ │ │ ├── fas_coins.png │ │ │ ├── fas_comment.png │ │ │ ├── fas_comments.png │ │ │ ├── fas_compact_disc.png │ │ │ ├── fas_concierge_bell.png │ │ │ ├── fas_couch.png │ │ │ ├── fas_crown.png │ │ │ ├── fas_crutch.png │ │ │ ├── fas_cube.png │ │ │ ├── fas_cut.png │ │ │ ├── fas_dice.png │ │ │ ├── fas_directions.png │ │ │ ├── fas_dolly.png │ │ │ ├── fas_door_closed.png │ │ │ ├── fas_door_open.png │ │ │ ├── fas_drafting_compass.png │ │ │ ├── fas_dragon.png │ │ │ ├── fas_drumstick_bite.png │ │ │ ├── fas_dumbbell.png │ │ │ ├── fas_dumpster.png │ │ │ ├── fas_dungeon.png │ │ │ ├── fas_eye.png │ │ │ ├── fas_film.png │ │ │ ├── fas_fire_extinguisher.png │ │ │ ├── fas_fish.png │ │ │ ├── fas_flask.png │ │ │ ├── fas_frog.png │ │ │ ├── fas_futbol.png │ │ │ ├── fas_gavel.png │ │ │ ├── fas_guitar.png │ │ │ ├── fas_handshake.png │ │ │ ├── fas_hashtag.png │ │ │ ├── fas_hat_cowboy_side.png │ │ │ ├── fas_hiking.png │ │ │ ├── fas_horse.png │ │ │ ├── fas_hospital_alt.png │ │ │ ├── fas_hotdog.png │ │ │ ├── fas_hotel.png │ │ │ ├── fas_house_damage.png │ │ │ ├── fas_i_cursor.png │ │ │ ├── fas_ice_cream.png │ │ │ ├── fas_key.png │ │ │ ├── fas_laptop.png │ │ │ ├── fas_leaf.png │ │ │ ├── fas_life_ring.png │ │ │ ├── fas_lock.png │ │ │ ├── fas_long_arrow_alt_right.png │ │ │ ├── fas_mail_bulk.png │ │ │ ├── fas_map.png │ │ │ ├── fas_map_signs.png │ │ │ ├── fas_medkit.png │ │ │ ├── fas_microchip.png │ │ │ ├── fas_microphone.png │ │ │ ├── fas_mobile_alt.png │ │ │ ├── fas_mosque.png │ │ │ ├── fas_motorcycle.png │ │ │ ├── fas_music.png │ │ │ ├── fas_newspaper.png │ │ │ ├── fas_paint_roller.png │ │ │ ├── fas_paperclip.png │ │ │ ├── fas_people_carry.png │ │ │ ├── fas_pepper_hot.png │ │ │ ├── fas_person_booth.png │ │ │ ├── fas_pills.png │ │ │ ├── fas_plane.png │ │ │ ├── fas_plane_departure.png │ │ │ ├── fas_plug.png │ │ │ ├── fas_plus.png │ │ │ ├── fas_print.png │ │ │ ├── fas_puzzle_piece.png │ │ │ ├── fas_question.png │ │ │ ├── fas_rocket.png │ │ │ ├── fas_school.png │ │ │ ├── fas_seedling.png │ │ │ ├── fas_server.png │ │ │ ├── fas_shapes.png │ │ │ ├── fas_share_alt.png │ │ │ ├── fas_shopping_basket.png │ │ │ ├── fas_skating.png │ │ │ ├── fas_skiing.png │ │ │ ├── fas_skiing_nordic.png │ │ │ ├── fas_sleigh.png │ │ │ ├── fas_smoking.png │ │ │ ├── fas_snowboarding.png │ │ │ ├── fas_solar_panel.png │ │ │ ├── fas_sort_alpha_up.png │ │ │ ├── fas_space_shuttle.png │ │ │ ├── fas_stamp.png │ │ │ ├── fas_store.png │ │ │ ├── fas_store_alt_slash.png │ │ │ ├── fas_suitcase.png │ │ │ ├── fas_suitcase_rolling.png │ │ │ ├── fas_swimmer.png │ │ │ ├── fas_swimming_pool.png │ │ │ ├── fas_table_tennis.png │ │ │ ├── fas_tachometer_alt.png │ │ │ ├── fas_tags.png │ │ │ ├── fas_tape.png │ │ │ ├── fas_taxi.png │ │ │ ├── fas_teeth.png │ │ │ ├── fas_th.png │ │ │ ├── fas_th_list.png │ │ │ ├── fas_thermometer_three_quarters.png │ │ │ ├── fas_ticket_alt.png │ │ │ ├── fas_tint_slash.png │ │ │ ├── fas_toilet.png │ │ │ ├── fas_tractor.png │ │ │ ├── fas_tram.png │ │ │ ├── fas_truck_loading.png │ │ │ ├── fas_truck_monster.png │ │ │ ├── fas_umbrella_beach.png │ │ │ ├── fas_user_alt.png │ │ │ ├── fas_user_cog.png │ │ │ ├── fas_user_secret.png │ │ │ ├── fas_user_tie.png │ │ │ ├── fas_users.png │ │ │ ├── fas_vector_square.png │ │ │ ├── fas_vial.png │ │ │ ├── fas_video.png │ │ │ ├── fas_volume_up.png │ │ │ ├── fas_vote_yea.png │ │ │ ├── fas_warehouse.png │ │ │ ├── fas_weight.png │ │ │ ├── fas_weight_hanging.png │ │ │ ├── fas_wifi.png │ │ │ ├── fas_wine_bottle.png │ │ │ ├── fas_yin_yang.png │ │ │ ├── maki_aerialway.png │ │ │ ├── maki_airfield.png │ │ │ ├── maki_airport.png │ │ │ ├── maki_alcohol_shop.png │ │ │ ├── maki_american_football.png │ │ │ ├── maki_amusement_park.png │ │ │ ├── maki_aquarium.png │ │ │ ├── maki_art_gallery.png │ │ │ ├── maki_attraction.png │ │ │ ├── maki_bakery.png │ │ │ ├── maki_bank.png │ │ │ ├── maki_bank_jp.png │ │ │ ├── maki_bar.png │ │ │ ├── maki_barrier.png │ │ │ ├── maki_baseball.png │ │ │ ├── maki_basketball.png │ │ │ ├── maki_bbq.png │ │ │ ├── maki_beach.png │ │ │ ├── maki_beer.png │ │ │ ├── maki_bicycle.png │ │ │ ├── maki_bicycle_share.png │ │ │ ├── maki_blood_bank.png │ │ │ ├── maki_bowling_alley.png │ │ │ ├── maki_bridge.png │ │ │ ├── maki_building.png │ │ │ ├── maki_building_alt1.png │ │ │ ├── maki_bus.png │ │ │ ├── maki_cafe.png │ │ │ ├── maki_campsite.png │ │ │ ├── maki_car.png │ │ │ ├── maki_car_rental.png │ │ │ ├── maki_car_repair.png │ │ │ ├── maki_casino.png │ │ │ ├── maki_castle.png │ │ │ ├── maki_castle_jp.png │ │ │ ├── maki_cemetery.png │ │ │ ├── maki_cemetery_jp.png │ │ │ ├── maki_charging_station.png │ │ │ ├── maki_cinema.png │ │ │ ├── maki_circle.png │ │ │ ├── maki_circle_stroked.png │ │ │ ├── maki_city.png │ │ │ ├── maki_clothing_store.png │ │ │ ├── maki_college.png │ │ │ ├── maki_college_jp.png │ │ │ ├── maki_commercial.png │ │ │ ├── maki_communications_tower.png │ │ │ ├── maki_confectionery.png │ │ │ ├── maki_convenience.png │ │ │ ├── maki_cricket.png │ │ │ ├── maki_cross.png │ │ │ ├── maki_dam.png │ │ │ ├── maki_danger.png │ │ │ ├── maki_defibrillator.png │ │ │ ├── maki_dentist.png │ │ │ ├── maki_doctor.png │ │ │ ├── maki_dog_park.png │ │ │ ├── maki_drinking_water.png │ │ │ ├── maki_embassy.png │ │ │ ├── maki_emergency_phone.png │ │ │ ├── maki_entrance.png │ │ │ ├── maki_entrance_alt1.png │ │ │ ├── maki_farm.png │ │ │ ├── maki_fast_food.png │ │ │ ├── maki_fence.png │ │ │ ├── maki_ferry.png │ │ │ ├── maki_fire_station.png │ │ │ ├── maki_fire_station_jp.png │ │ │ ├── maki_fitness_centre.png │ │ │ ├── maki_florist.png │ │ │ ├── maki_fuel.png │ │ │ ├── maki_furniture.png │ │ │ ├── maki_gaming.png │ │ │ ├── maki_garden.png │ │ │ ├── maki_garden_centre.png │ │ │ ├── maki_gift.png │ │ │ ├── maki_globe.png │ │ │ ├── maki_golf.png │ │ │ ├── maki_grocery.png │ │ │ ├── maki_hairdresser.png │ │ │ ├── maki_harbor.png │ │ │ ├── maki_hardware.png │ │ │ ├── maki_heart.png │ │ │ ├── maki_heliport.png │ │ │ ├── maki_home.png │ │ │ ├── maki_horse_riding.png │ │ │ ├── maki_hospital.png │ │ │ ├── maki_hospital_jp.png │ │ │ ├── maki_ice_cream.png │ │ │ ├── maki_industry.png │ │ │ ├── maki_information.png │ │ │ ├── maki_jewelry_store.png │ │ │ ├── maki_karaoke.png │ │ │ ├── maki_landmark.png │ │ │ ├── maki_landmark_jp.png │ │ │ ├── maki_landuse.png │ │ │ ├── maki_laundry.png │ │ │ ├── maki_library.png │ │ │ ├── maki_lighthouse.png │ │ │ ├── maki_lodging.png │ │ │ ├── maki_logging.png │ │ │ ├── maki_marker.png │ │ │ ├── maki_marker_stroked.png │ │ │ ├── maki_mobile_phone.png │ │ │ ├── maki_monument.png │ │ │ ├── maki_mountain.png │ │ │ ├── maki_museum.png │ │ │ ├── maki_music.png │ │ │ ├── maki_natural.png │ │ │ ├── maki_optician.png │ │ │ ├── maki_paint.png │ │ │ ├── maki_park.png │ │ │ ├── maki_park_alt1.png │ │ │ ├── maki_parking.png │ │ │ ├── maki_parking_garage.png │ │ │ ├── maki_pharmacy.png │ │ │ ├── maki_picnic_site.png │ │ │ ├── maki_pitch.png │ │ │ ├── maki_place_of_worship.png │ │ │ ├── maki_playground.png │ │ │ ├── maki_police.png │ │ │ ├── maki_police_jp.png │ │ │ ├── maki_post.png │ │ │ ├── maki_post_jp.png │ │ │ ├── maki_prison.png │ │ │ ├── maki_rail.png │ │ │ ├── maki_rail_light.png │ │ │ ├── maki_rail_metro.png │ │ │ ├── maki_ranger_station.png │ │ │ ├── maki_recycling.png │ │ │ ├── maki_religious_buddhist.png │ │ │ ├── maki_religious_christian.png │ │ │ ├── maki_religious_jewish.png │ │ │ ├── maki_religious_muslim.png │ │ │ ├── maki_religious_shinto.png │ │ │ ├── maki_residential_community.png │ │ │ ├── maki_restaurant.png │ │ │ ├── maki_restaurant_noodle.png │ │ │ ├── maki_restaurant_pizza.png │ │ │ ├── maki_restaurant_seafood.png │ │ │ ├── maki_roadblock.png │ │ │ ├── maki_rocket.png │ │ │ ├── maki_school.png │ │ │ ├── maki_school_jp.png │ │ │ ├── maki_scooter.png │ │ │ ├── maki_shelter.png │ │ │ ├── maki_shoe.png │ │ │ ├── maki_shop.png │ │ │ ├── maki_skateboard.png │ │ │ ├── maki_skiing.png │ │ │ ├── maki_slaughterhouse.png │ │ │ ├── maki_slipway.png │ │ │ ├── maki_snowmobile.png │ │ │ ├── maki_soccer.png │ │ │ ├── maki_square.png │ │ │ ├── maki_square_stroked.png │ │ │ ├── maki_stadium.png │ │ │ ├── maki_star.png │ │ │ ├── maki_star_stroked.png │ │ │ ├── maki_suitcase.png │ │ │ ├── maki_sushi.png │ │ │ ├── maki_swimming.png │ │ │ ├── maki_table_tennis.png │ │ │ ├── maki_teahouse.png │ │ │ ├── maki_telephone.png │ │ │ ├── maki_tennis.png │ │ │ ├── maki_theatre.png │ │ │ ├── maki_toilet.png │ │ │ ├── maki_town.png │ │ │ ├── maki_town_hall.png │ │ │ ├── maki_triangle.png │ │ │ ├── maki_triangle_stroked.png │ │ │ ├── maki_veterinary.png │ │ │ ├── maki_viewpoint.png │ │ │ ├── maki_village.png │ │ │ ├── maki_volcano.png │ │ │ ├── maki_volleyball.png │ │ │ ├── maki_warehouse.png │ │ │ ├── maki_waste_basket.png │ │ │ ├── maki_watch.png │ │ │ ├── maki_water.png │ │ │ ├── maki_waterfall.png │ │ │ ├── maki_watermill.png │ │ │ ├── maki_wetland.png │ │ │ ├── maki_wheelchair.png │ │ │ ├── maki_windmill.png │ │ │ ├── maki_zoo.png │ │ │ ├── observe_logo.png │ │ │ ├── temaki_abseiling.png │ │ │ ├── temaki_accessible_space.png │ │ │ ├── temaki_accounting.png │ │ │ ├── temaki_adit_profile.png │ │ │ ├── temaki_aerialway_pole.png │ │ │ ├── temaki_airport.png │ │ │ ├── temaki_amusement_park.png │ │ │ ├── temaki_anchor_medal.png │ │ │ ├── temaki_antenna.png │ │ │ ├── temaki_anvil.png │ │ │ ├── temaki_anvil_and_hammer.png │ │ │ ├── temaki_app_terminal.png │ │ │ ├── temaki_archery.png │ │ │ ├── temaki_army_tent.png │ │ │ ├── temaki_atm.png │ │ │ ├── temaki_balloon.png │ │ │ ├── temaki_barn.png │ │ │ ├── temaki_beach.png │ │ │ ├── temaki_beauty_salon.png │ │ │ ├── temaki_bench.png │ │ │ ├── temaki_benchmark_disk.png │ │ │ ├── temaki_bicycle_box.png │ │ │ ├── temaki_bicycle_locker.png │ │ │ ├── temaki_bicycle_rental.png │ │ │ ├── temaki_bicycle_repair.png │ │ │ ├── temaki_bicycle_structure.png │ │ │ ├── temaki_billboard.png │ │ │ ├── temaki_binoculars.png │ │ │ ├── temaki_bleachers.png │ │ │ ├── temaki_blind.png │ │ │ ├── temaki_board_bus.png │ │ │ ├── temaki_board_ferry.png │ │ │ ├── temaki_board_gondola_lift.png │ │ │ ├── temaki_board_hanging_rail.png │ │ │ ├── temaki_board_heavy_rail.png │ │ │ ├── temaki_board_light_rail.png │ │ │ ├── temaki_board_monorail.png │ │ │ ├── temaki_board_school_bus.png │ │ │ ├── temaki_board_subway.png │ │ │ ├── temaki_board_train.png │ │ │ ├── temaki_board_train_bullet.png │ │ │ ├── temaki_board_train_diesel.png │ │ │ ├── temaki_board_train_kids.png │ │ │ ├── temaki_board_train_steam.png │ │ │ ├── temaki_board_tram.png │ │ │ ├── temaki_board_transit.png │ │ │ ├── temaki_board_trolleybus.png │ │ │ ├── temaki_boat.png │ │ │ ├── temaki_boat_floating.png │ │ │ ├── temaki_boat_ramp.png │ │ │ ├── temaki_boat_rental.png │ │ │ ├── temaki_boat_repair.png │ │ │ ├── temaki_boat_tour.png │ │ │ ├── temaki_boating.png │ │ │ ├── temaki_bollard.png │ │ │ ├── temaki_bollard_row.png │ │ │ ├── temaki_book_store.png │ │ │ ├── temaki_bottles.png │ │ │ ├── temaki_boulder1.png │ │ │ ├── temaki_boulder2.png │ │ │ ├── temaki_boulder3.png │ │ │ ├── temaki_bowling.png │ │ │ ├── temaki_bowling_alt1.png │ │ │ ├── temaki_bread.png │ │ │ ├── temaki_brick_trowel.png │ │ │ ├── temaki_bridge.png │ │ │ ├── temaki_briefcase.png │ │ │ ├── temaki_briefcase_bolt.png │ │ │ ├── temaki_briefcase_cross.png │ │ │ ├── temaki_briefcase_info.png │ │ │ ├── temaki_briefcase_shield.png │ │ │ ├── temaki_buffer_stop.png │ │ │ ├── temaki_bulb.png │ │ │ ├── temaki_bulb2.png │ │ │ ├── temaki_bulb3.png │ │ │ ├── temaki_bulldozer.png │ │ │ ├── temaki_bulletin_board.png │ │ │ ├── temaki_bunk_beds.png │ │ │ ├── temaki_bunker.png │ │ │ ├── temaki_bunker_silo.png │ │ │ ├── temaki_buoy.png │ │ │ ├── temaki_bus.png │ │ │ ├── temaki_bus_guided.png │ │ │ ├── temaki_cabin.png │ │ │ ├── temaki_cable.png │ │ │ ├── temaki_cable_device.png │ │ │ ├── temaki_cable_manhole.png │ │ │ ├── temaki_cable_meter.png │ │ │ ├── temaki_cable_shutoff.png │ │ │ ├── temaki_cairn.png │ │ │ ├── temaki_camper_trailer.png │ │ │ ├── temaki_camper_trailer_dump.png │ │ │ ├── temaki_campfire.png │ │ │ ├── temaki_can.png │ │ │ ├── temaki_canoe.png │ │ │ ├── temaki_capitol.png │ │ │ ├── temaki_car_dealer.png │ │ │ ├── temaki_car_parked.png │ │ │ ├── temaki_car_pool.png │ │ │ ├── temaki_car_structure.png │ │ │ ├── temaki_car_wash.png │ │ │ ├── temaki_carport.png │ │ │ ├── temaki_casino.png │ │ │ ├── temaki_catering.png │ │ │ ├── temaki_cattle_grid.png │ │ │ ├── temaki_chairlift.png │ │ │ ├── temaki_checkpoint.png │ │ │ ├── temaki_chefs_knife.png │ │ │ ├── temaki_chicane_arrow.png │ │ │ ├── temaki_chimney.png │ │ │ ├── temaki_chocolate.png │ │ │ ├── temaki_cleaver.png │ │ │ ├── temaki_cliff_falling_rocks.png │ │ │ ├── temaki_climbing.png │ │ │ ├── temaki_clock.png │ │ │ ├── temaki_clothes_hanger.png │ │ │ ├── temaki_coffee.png │ │ │ ├── temaki_compass.png │ │ │ ├── temaki_courthouse.png │ │ │ ├── temaki_crane.png │ │ │ ├── temaki_cross_country_skiing.png │ │ │ ├── temaki_curtains.png │ │ │ ├── temaki_cycle_barrier.png │ │ │ ├── temaki_cyclist_crosswalk.png │ │ │ ├── temaki_dagger.png │ │ │ ├── temaki_desk_lamp.png │ │ │ ├── temaki_diamond.png │ │ │ ├── temaki_dice.png │ │ │ ├── temaki_disc_golf_basket.png │ │ │ ├── temaki_diving.png │ │ │ ├── temaki_dog_shelter.png │ │ │ ├── temaki_domed_tower.png │ │ │ ├── temaki_donut.png │ │ │ ├── temaki_drag_lift.png │ │ │ ├── temaki_dress.png │ │ │ ├── temaki_ear.png │ │ │ ├── temaki_egg.png │ │ │ ├── temaki_electronic.png │ │ │ ├── temaki_elevator.png │ │ │ ├── temaki_embassy.png │ │ │ ├── temaki_fashion_accessories.png │ │ │ ├── temaki_ferry.png │ │ │ ├── temaki_field_hockey.png │ │ │ ├── temaki_fire_hydrant.png │ │ │ ├── temaki_fireplace.png │ │ │ ├── temaki_fish_cleaning.png │ │ │ ├── temaki_fish_ladder.png │ │ │ ├── temaki_fishing_pier.png │ │ │ ├── temaki_florist.png │ │ │ ├── temaki_food.png │ │ │ ├── temaki_fountain.png │ │ │ ├── temaki_freight_car.png │ │ │ ├── temaki_furniture.png │ │ │ ├── temaki_garden_bed.png │ │ │ ├── temaki_gas.png │ │ │ ├── temaki_gas_device.png │ │ │ ├── temaki_gas_manhole.png │ │ │ ├── temaki_gas_meter.png │ │ │ ├── temaki_gas_shutoff.png │ │ │ ├── temaki_gate.png │ │ │ ├── temaki_golf_cart.png │ │ │ ├── temaki_golf_green.png │ │ │ ├── temaki_gondola_lift.png │ │ │ ├── temaki_goods_lift.png │ │ │ ├── temaki_gown.png │ │ │ ├── temaki_grapes.png │ │ │ ├── temaki_grass.png │ │ │ ├── temaki_guard_rail.png │ │ │ ├── temaki_gym.png │ │ │ ├── temaki_hair_care.png │ │ │ ├── temaki_hand.png │ │ │ ├── temaki_handbag.png │ │ │ ├── temaki_hang_gliding.png │ │ │ ├── temaki_hangar.png │ │ │ ├── temaki_hanging_rail.png │ │ │ ├── temaki_hearing_aid.png │ │ │ ├── temaki_heart.png │ │ │ ├── temaki_heavy_rail.png │ │ │ ├── temaki_hedge.png │ │ │ ├── temaki_height_restrictor.png │ │ │ ├── temaki_hinduism.png │ │ │ ├── temaki_horse_shelter.png │ │ │ ├── temaki_horseshoe.png │ │ │ ├── temaki_horseshoes.png │ │ │ ├── temaki_houseboat.png │ │ │ ├── temaki_ice_fishing.png │ │ │ ├── temaki_ice_skating.png │ │ │ ├── temaki_info_board.png │ │ │ ├── temaki_inline_skating.png │ │ │ ├── temaki_island_trees_building.png │ │ │ ├── temaki_islet_tree.png │ │ │ ├── temaki_j_bar_lift.png │ │ │ ├── temaki_jet_skiing.png │ │ │ ├── temaki_jetplane_front.png │ │ │ ├── temaki_jewelry_store.png │ │ │ ├── temaki_junction.png │ │ │ ├── temaki_junk_car.png │ │ │ ├── temaki_kayaking.png │ │ │ ├── temaki_kerb_flush.png │ │ │ ├── temaki_kerb_lowered.png │ │ │ ├── temaki_kerb_raised.png │ │ │ ├── temaki_kerb_rolled.png │ │ │ ├── temaki_kitchen_sink.png │ │ │ ├── temaki_laundry.png │ │ │ ├── temaki_lawn.png │ │ │ ├── temaki_lawyer.png │ │ │ ├── temaki_letter_box.png │ │ │ ├── temaki_library.png │ │ │ ├── temaki_lift_gate.png │ │ │ ├── temaki_light_rail.png │ │ │ ├── temaki_lipstick.png │ │ │ ├── temaki_lock.png │ │ │ ├── temaki_manhole.png │ │ │ ├── temaki_manufactured_home.png │ │ │ ├── temaki_mast.png │ │ │ ├── temaki_mast_communication.png │ │ │ ├── temaki_meat.png │ │ │ ├── temaki_milestone.png │ │ │ ├── temaki_military.png │ │ │ ├── temaki_military_checkpoint.png │ │ │ ├── temaki_mineshaft_cage.png │ │ │ ├── temaki_mineshaft_profile.png │ │ │ ├── temaki_money_hand.png │ │ │ ├── temaki_monorail.png │ │ │ ├── temaki_motorcycle.png │ │ │ ├── temaki_motorcycle_rental.png │ │ │ ├── temaki_motorcycle_repair.png │ │ │ ├── temaki_mountain_range.png │ │ │ ├── temaki_mountain_rescue.png │ │ │ ├── temaki_movie_rental.png │ │ │ ├── temaki_museum.png │ │ │ ├── temaki_needle_and_spool.png │ │ │ ├── temaki_oil_well.png │ │ │ ├── temaki_os_benchmark.png │ │ │ ├── temaki_parking_space.png │ │ │ ├── temaki_passport_checkpoint.png │ │ │ ├── temaki_ped_cyclist_crosswalk.png │ │ │ ├── temaki_pedestrian.png │ │ │ ├── temaki_pedestrian_and_cyclist.png │ │ │ ├── temaki_pedestrian_crosswalk.png │ │ │ ├── temaki_pedestrian_walled.png │ │ │ ├── temaki_perfume.png │ │ │ ├── temaki_pet_grooming.png │ │ │ ├── temaki_pet_store.png │ │ │ ├── temaki_pharmacy.png │ │ │ ├── temaki_physiotherapist.png │ │ │ ├── temaki_pick_hammer.png │ │ │ ├── temaki_picnic_shelter.png │ │ │ ├── temaki_pier_fixed.png │ │ │ ├── temaki_pier_floating.png │ │ │ ├── temaki_pin.png │ │ │ ├── temaki_pipe.png │ │ │ ├── temaki_plane_taxiing.png │ │ │ ├── temaki_planes.png │ │ │ ├── temaki_planes_bidirectional.png │ │ │ ├── temaki_plaque.png │ │ │ ├── temaki_platter_lift.png │ │ │ ├── temaki_play_structure.png │ │ │ ├── temaki_plumber.png │ │ │ ├── temaki_police_checkpoint.png │ │ │ ├── temaki_police_officer.png │ │ │ ├── temaki_polished_nail.png │ │ │ ├── temaki_post_box.png │ │ │ ├── temaki_poster_box.png │ │ │ ├── temaki_power.png │ │ │ ├── temaki_power_cb.png │ │ │ ├── temaki_power_cb2.png │ │ │ ├── temaki_power_circuit.png │ │ │ ├── temaki_power_ct.png │ │ │ ├── temaki_power_device.png │ │ │ ├── temaki_power_isolator.png │ │ │ ├── temaki_power_la.png │ │ │ ├── temaki_power_manhole.png │ │ │ ├── temaki_power_meter.png │ │ │ ├── temaki_power_pole.png │ │ │ ├── temaki_power_shutoff.png │ │ │ ├── temaki_power_switch.png │ │ │ ├── temaki_power_tower.png │ │ │ ├── temaki_power_transformer.png │ │ │ ├── temaki_powered_pump.png │ │ │ ├── temaki_propane_tank.png │ │ │ ├── temaki_psychic.png │ │ │ ├── temaki_quakerism.png │ │ │ ├── temaki_racetrack_oval.png │ │ │ ├── temaki_radiation.png │ │ │ ├── temaki_radio.png │ │ │ ├── temaki_rafting.png │ │ │ ├── temaki_rail_flag.png │ │ │ ├── temaki_rail_profile.png │ │ │ ├── temaki_railing.png │ │ │ ├── temaki_railway_cable_track.png │ │ │ ├── temaki_railway_signals.png │ │ │ ├── temaki_railway_track.png │ │ │ ├── temaki_railway_track_askew.png │ │ │ ├── temaki_railway_track_mini.png │ │ │ ├── temaki_railway_track_narrow.png │ │ │ ├── temaki_railway_track_partial.png │ │ │ ├── temaki_real_estate_agency.png │ │ │ ├── temaki_rocket_firework.png │ │ │ ├── temaki_roller_coaster.png │ │ │ ├── temaki_rope_fence.png │ │ │ ├── temaki_row_houses.png │ │ │ ├── temaki_ruins.png │ │ │ ├── temaki_rumble_strip.png │ │ │ ├── temaki_saddle.png │ │ │ ├── temaki_sailing.png │ │ │ ├── temaki_sandwich.png │ │ │ ├── temaki_scaffold.png │ │ │ ├── temaki_school.png │ │ │ ├── temaki_school_bus.png │ │ │ ├── temaki_scuba_diving.png │ │ │ ├── temaki_sculpture.png │ │ │ ├── temaki_security_camera.png │ │ │ ├── temaki_shield.png │ │ │ ├── temaki_shinto.png │ │ │ ├── temaki_shopping_mall.png │ │ │ ├── temaki_shower.png │ │ │ ├── temaki_shrub.png │ │ │ ├── temaki_shrub_low.png │ │ │ ├── temaki_shuffleboard.png │ │ │ ├── temaki_sign_and_bench.png │ │ │ ├── temaki_sign_and_car.png │ │ │ ├── temaki_sign_and_pedestrian.png │ │ │ ├── temaki_sikhism.png │ │ │ ├── temaki_silo.png │ │ │ ├── temaki_skateboarding.png │ │ │ ├── temaki_ski_jumping.png │ │ │ ├── temaki_skiing.png │ │ │ ├── temaki_sledding.png │ │ │ ├── temaki_sleep_shelter.png │ │ │ ├── temaki_slide.png │ │ │ ├── temaki_snow.png │ │ │ ├── temaki_snow_shoeing.png │ │ │ ├── temaki_snowboarding.png │ │ │ ├── temaki_snowmobile.png │ │ │ ├── temaki_social_facility.png │ │ │ ├── temaki_spa.png │ │ │ ├── temaki_speaker.png │ │ │ ├── temaki_speed_bump.png │ │ │ ├── temaki_speed_dip.png │ │ │ ├── temaki_speed_dip_double.png │ │ │ ├── temaki_speed_hump.png │ │ │ ├── temaki_speed_table.png │ │ │ ├── temaki_speedway_8.png │ │ │ ├── temaki_speedway_oval.png │ │ │ ├── temaki_spice_bottle.png │ │ │ ├── temaki_spike_strip.png │ │ │ ├── temaki_spotting_scope.png │ │ │ ├── temaki_stamp.png │ │ │ ├── temaki_statue.png │ │ │ ├── temaki_stile_squeezer.png │ │ │ ├── temaki_stop.png │ │ │ ├── temaki_storage.png │ │ │ ├── temaki_storage_drum.png │ │ │ ├── temaki_storage_fermenter.png │ │ │ ├── temaki_storage_rental.png │ │ │ ├── temaki_storage_tank.png │ │ │ ├── temaki_street_lamp_arm.png │ │ │ ├── temaki_striped_way.png │ │ │ ├── temaki_striped_zone.png │ │ │ ├── temaki_subway.png │ │ │ ├── temaki_suitcase.png │ │ │ ├── temaki_suitcase_key.png │ │ │ ├── temaki_suitcase_xray.png │ │ │ ├── temaki_surfing.png │ │ │ ├── temaki_swamp.png │ │ │ ├── temaki_t_bar_lift.png │ │ │ ├── temaki_tall_gate.png │ │ │ ├── temaki_tanning.png │ │ │ ├── temaki_tanning2.png │ │ │ ├── temaki_taoism.png │ │ │ ├── temaki_tattoo_machine.png │ │ │ ├── temaki_taxi_stand.png │ │ │ ├── temaki_telephone.png │ │ │ ├── temaki_telescope.png │ │ │ ├── temaki_temaki.png │ │ │ ├── temaki_tennis.png │ │ │ ├── temaki_ticket.png │ │ │ ├── temaki_tiling.png │ │ │ ├── temaki_tire.png │ │ │ ├── temaki_tire_course.png │ │ │ ├── temaki_toolbox.png │ │ │ ├── temaki_tools.png │ │ │ ├── temaki_tower.png │ │ │ ├── temaki_tower_communication.png │ │ │ ├── temaki_town_hall.png │ │ │ ├── temaki_traffic_signals.png │ │ │ ├── temaki_train.png │ │ │ ├── temaki_train_bullet.png │ │ │ ├── temaki_train_diesel.png │ │ │ ├── temaki_train_kids.png │ │ │ ├── temaki_train_steam.png │ │ │ ├── temaki_train_wash.png │ │ │ ├── temaki_tram.png │ │ │ ├── temaki_transit.png │ │ │ ├── temaki_transit_shelter.png │ │ │ ├── temaki_tree_and_bench.png │ │ │ ├── temaki_tree_row.png │ │ │ ├── temaki_trench.png │ │ │ ├── temaki_trolleybus.png │ │ │ ├── temaki_truck.png │ │ │ ├── temaki_tunnel.png │ │ │ ├── temaki_turnstile.png │ │ │ ├── temaki_utility_pole.png │ │ │ ├── temaki_vacuum.png │ │ │ ├── temaki_valley.png │ │ │ ├── temaki_vase.png │ │ │ ├── temaki_vending_bread.png │ │ │ ├── temaki_vending_cigarettes.png │ │ │ ├── temaki_vending_cold_drink.png │ │ │ ├── temaki_vending_cold_drink2.png │ │ │ ├── temaki_vending_eggs.png │ │ │ ├── temaki_vending_flat_coin.png │ │ │ ├── temaki_vending_hot_drink.png │ │ │ ├── temaki_vending_hot_drink2.png │ │ │ ├── temaki_vending_ice.png │ │ │ ├── temaki_vending_ice_cream.png │ │ │ ├── temaki_vending_ice_cream2.png │ │ │ ├── temaki_vending_lockers.png │ │ │ ├── temaki_vending_love.png │ │ │ ├── temaki_vending_machine.png │ │ │ ├── temaki_vending_medicine.png │ │ │ ├── temaki_vending_newspaper.png │ │ │ ├── temaki_vending_pet_waste.png │ │ │ ├── temaki_vending_stamps.png │ │ │ ├── temaki_vending_tickets.png │ │ │ ├── temaki_vending_venus.png │ │ │ ├── temaki_vertex.png │ │ │ ├── temaki_vertical_rotisserie.png │ │ │ ├── temaki_veterinary_care.png │ │ │ ├── temaki_wall.png │ │ │ ├── temaki_waste.png │ │ │ ├── temaki_waste_device.png │ │ │ ├── temaki_waste_manhole.png │ │ │ ├── temaki_waste_meter.png │ │ │ ├── temaki_waste_shutoff.png │ │ │ ├── temaki_water.png │ │ │ ├── temaki_water_device.png │ │ │ ├── temaki_water_manhole.png │ │ │ ├── temaki_water_meter.png │ │ │ ├── temaki_water_shutoff.png │ │ │ ├── temaki_water_tap.png │ │ │ ├── temaki_water_tap_drinkable.png │ │ │ ├── temaki_water_tower.png │ │ │ ├── temaki_waterskiing.png │ │ │ ├── temaki_well_pump_manual.png │ │ │ ├── temaki_well_pump_powered.png │ │ │ ├── temaki_whale_watching.png │ │ │ ├── temaki_wheel.png │ │ │ ├── temaki_wheelchair.png │ │ │ ├── temaki_wheelchair_active.png │ │ │ ├── temaki_wind_surfing.png │ │ │ ├── temaki_wind_turbine.png │ │ │ ├── temaki_windmill.png │ │ │ ├── temaki_window.png │ │ │ ├── temaki_windsock.png │ │ │ ├── temaki_yield.png │ │ │ └── temaki_zoo.png │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-ldpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ └── version.properties ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── app ├── actions │ ├── about.js │ ├── account.js │ ├── actionTypes.js │ ├── authorization.js │ ├── camera.js │ ├── edit.js │ ├── map.js │ ├── notification.js │ ├── observeApi.js │ ├── traces.js │ ├── undoable.js │ ├── wayEditing.js │ └── wayEditingHistory.js ├── assets │ ├── fontawesome │ │ ├── far_clone.png │ │ ├── far_credit_card.png │ │ ├── far_dot_circle.png │ │ ├── far_times_circle.png │ │ ├── fas_ambulance.png │ │ ├── fas_apple_alt.png │ │ ├── fas_archive.png │ │ ├── fas_archway.png │ │ ├── fas_baby.png │ │ ├── fas_baby_carriage.png │ │ ├── fas_balance_scale.png │ │ ├── fas_bath.png │ │ ├── fas_beer.png │ │ ├── fas_bell.png │ │ ├── fas_biking.png │ │ ├── fas_blender.png │ │ ├── fas_book.png │ │ ├── fas_box.png │ │ ├── fas_box_open.png │ │ ├── fas_bullseye.png │ │ ├── fas_burn.png │ │ ├── fas_calendar_alt.png │ │ ├── fas_camera_retro.png │ │ ├── fas_cannabis.png │ │ ├── fas_car_battery.png │ │ ├── fas_car_crash.png │ │ ├── fas_carrot.png │ │ ├── fas_cat.png │ │ ├── fas_charging_station.png │ │ ├── fas_cheese.png │ │ ├── fas_chess_bishop.png │ │ ├── fas_chess_knight.png │ │ ├── fas_chess_pawn.png │ │ ├── fas_chevron_circle_up.png │ │ ├── fas_child.png │ │ ├── fas_church.png │ │ ├── fas_code.png │ │ ├── fas_coins.png │ │ ├── fas_comment.png │ │ ├── fas_comments.png │ │ ├── fas_compact_disc.png │ │ ├── fas_concierge_bell.png │ │ ├── fas_couch.png │ │ ├── fas_crown.png │ │ ├── fas_crutch.png │ │ ├── fas_cube.png │ │ ├── fas_cut.png │ │ ├── fas_dice.png │ │ ├── fas_directions.png │ │ ├── fas_dolly.png │ │ ├── fas_door_closed.png │ │ ├── fas_door_open.png │ │ ├── fas_drafting_compass.png │ │ ├── fas_dragon.png │ │ ├── fas_drumstick_bite.png │ │ ├── fas_dumbbell.png │ │ ├── fas_dumpster.png │ │ ├── fas_dungeon.png │ │ ├── fas_eye.png │ │ ├── fas_film.png │ │ ├── fas_fire_extinguisher.png │ │ ├── fas_fish.png │ │ ├── fas_flask.png │ │ ├── fas_frog.png │ │ ├── fas_futbol.png │ │ ├── fas_gavel.png │ │ ├── fas_guitar.png │ │ ├── fas_handshake.png │ │ ├── fas_hashtag.png │ │ ├── fas_hat_cowboy_side.png │ │ ├── fas_hiking.png │ │ ├── fas_horse.png │ │ ├── fas_hospital_alt.png │ │ ├── fas_hotdog.png │ │ ├── fas_hotel.png │ │ ├── fas_house_damage.png │ │ ├── fas_i_cursor.png │ │ ├── fas_ice_cream.png │ │ ├── fas_key.png │ │ ├── fas_laptop.png │ │ ├── fas_leaf.png │ │ ├── fas_life_ring.png │ │ ├── fas_lock.png │ │ ├── fas_long_arrow_alt_right.png │ │ ├── fas_mail_bulk.png │ │ ├── fas_map.png │ │ ├── fas_map_signs.png │ │ ├── fas_medkit.png │ │ ├── fas_microchip.png │ │ ├── fas_microphone.png │ │ ├── fas_mobile_alt.png │ │ ├── fas_mosque.png │ │ ├── fas_motorcycle.png │ │ ├── fas_music.png │ │ ├── fas_newspaper.png │ │ ├── fas_paint_roller.png │ │ ├── fas_paperclip.png │ │ ├── fas_people_carry.png │ │ ├── fas_pepper_hot.png │ │ ├── fas_person_booth.png │ │ ├── fas_pills.png │ │ ├── fas_plane.png │ │ ├── fas_plane_departure.png │ │ ├── fas_plug.png │ │ ├── fas_plus.png │ │ ├── fas_print.png │ │ ├── fas_puzzle_piece.png │ │ ├── fas_question.png │ │ ├── fas_rocket.png │ │ ├── fas_school.png │ │ ├── fas_seedling.png │ │ ├── fas_server.png │ │ ├── fas_shapes.png │ │ ├── fas_share_alt.png │ │ ├── fas_shopping_basket.png │ │ ├── fas_skating.png │ │ ├── fas_skiing.png │ │ ├── fas_skiing_nordic.png │ │ ├── fas_sleigh.png │ │ ├── fas_smoking.png │ │ ├── fas_snowboarding.png │ │ ├── fas_solar_panel.png │ │ ├── fas_sort_alpha_up.png │ │ ├── fas_space_shuttle.png │ │ ├── fas_stamp.png │ │ ├── fas_store.png │ │ ├── fas_store_alt_slash.png │ │ ├── fas_suitcase.png │ │ ├── fas_suitcase_rolling.png │ │ ├── fas_swimmer.png │ │ ├── fas_swimming_pool.png │ │ ├── fas_table_tennis.png │ │ ├── fas_tachometer_alt.png │ │ ├── fas_tags.png │ │ ├── fas_tape.png │ │ ├── fas_taxi.png │ │ ├── fas_teeth.png │ │ ├── fas_th.png │ │ ├── fas_th_list.png │ │ ├── fas_thermometer_three_quarters.png │ │ ├── fas_ticket_alt.png │ │ ├── fas_tint_slash.png │ │ ├── fas_toilet.png │ │ ├── fas_tractor.png │ │ ├── fas_tram.png │ │ ├── fas_truck_loading.png │ │ ├── fas_truck_monster.png │ │ ├── fas_umbrella_beach.png │ │ ├── fas_user_alt.png │ │ ├── fas_user_cog.png │ │ ├── fas_user_secret.png │ │ ├── fas_user_tie.png │ │ ├── fas_users.png │ │ ├── fas_vector_square.png │ │ ├── fas_vial.png │ │ ├── fas_video.png │ │ ├── fas_volume_up.png │ │ ├── fas_vote_yea.png │ │ ├── fas_warehouse.png │ │ ├── fas_weight.png │ │ ├── fas_weight_hanging.png │ │ ├── fas_wifi.png │ │ ├── fas_wine_bottle.png │ │ └── fas_yin_yang.png │ ├── icons.js │ ├── maki │ │ ├── maki_aerialway.png │ │ ├── maki_airfield.png │ │ ├── maki_airport.png │ │ ├── maki_alcohol_shop.png │ │ ├── maki_american_football.png │ │ ├── maki_amusement_park.png │ │ ├── maki_aquarium.png │ │ ├── maki_art_gallery.png │ │ ├── maki_attraction.png │ │ ├── maki_bakery.png │ │ ├── maki_bank.png │ │ ├── maki_bank_jp.png │ │ ├── maki_bar.png │ │ ├── maki_barrier.png │ │ ├── maki_baseball.png │ │ ├── maki_basketball.png │ │ ├── maki_bbq.png │ │ ├── maki_beach.png │ │ ├── maki_beer.png │ │ ├── maki_bicycle.png │ │ ├── maki_bicycle_share.png │ │ ├── maki_blood_bank.png │ │ ├── maki_bowling_alley.png │ │ ├── maki_bridge.png │ │ ├── maki_building.png │ │ ├── maki_building_alt1.png │ │ ├── maki_bus.png │ │ ├── maki_cafe.png │ │ ├── maki_campsite.png │ │ ├── maki_car.png │ │ ├── maki_car_rental.png │ │ ├── maki_car_repair.png │ │ ├── maki_casino.png │ │ ├── maki_castle.png │ │ ├── maki_castle_jp.png │ │ ├── maki_cemetery.png │ │ ├── maki_cemetery_jp.png │ │ ├── maki_charging_station.png │ │ ├── maki_cinema.png │ │ ├── maki_circle.png │ │ ├── maki_circle_stroked.png │ │ ├── maki_city.png │ │ ├── maki_clothing_store.png │ │ ├── maki_college.png │ │ ├── maki_college_jp.png │ │ ├── maki_commercial.png │ │ ├── maki_communications_tower.png │ │ ├── maki_confectionery.png │ │ ├── maki_convenience.png │ │ ├── maki_cricket.png │ │ ├── maki_cross.png │ │ ├── maki_dam.png │ │ ├── maki_danger.png │ │ ├── maki_defibrillator.png │ │ ├── maki_dentist.png │ │ ├── maki_doctor.png │ │ ├── maki_dog_park.png │ │ ├── maki_drinking_water.png │ │ ├── maki_embassy.png │ │ ├── maki_emergency_phone.png │ │ ├── maki_entrance.png │ │ ├── maki_entrance_alt1.png │ │ ├── maki_farm.png │ │ ├── maki_fast_food.png │ │ ├── maki_fence.png │ │ ├── maki_ferry.png │ │ ├── maki_fire_station.png │ │ ├── maki_fire_station_jp.png │ │ ├── maki_fitness_centre.png │ │ ├── maki_florist.png │ │ ├── maki_fuel.png │ │ ├── maki_furniture.png │ │ ├── maki_gaming.png │ │ ├── maki_garden.png │ │ ├── maki_garden_centre.png │ │ ├── maki_gift.png │ │ ├── maki_globe.png │ │ ├── maki_golf.png │ │ ├── maki_grocery.png │ │ ├── maki_hairdresser.png │ │ ├── maki_harbor.png │ │ ├── maki_hardware.png │ │ ├── maki_heart.png │ │ ├── maki_heliport.png │ │ ├── maki_home.png │ │ ├── maki_horse_riding.png │ │ ├── maki_hospital.png │ │ ├── maki_hospital_jp.png │ │ ├── maki_ice_cream.png │ │ ├── maki_industry.png │ │ ├── maki_information.png │ │ ├── maki_jewelry_store.png │ │ ├── maki_karaoke.png │ │ ├── maki_landmark.png │ │ ├── maki_landmark_jp.png │ │ ├── maki_landuse.png │ │ ├── maki_laundry.png │ │ ├── maki_library.png │ │ ├── maki_lighthouse.png │ │ ├── maki_lodging.png │ │ ├── maki_logging.png │ │ ├── maki_marker.png │ │ ├── maki_marker_stroked.png │ │ ├── maki_mobile_phone.png │ │ ├── maki_monument.png │ │ ├── maki_mountain.png │ │ ├── maki_museum.png │ │ ├── maki_music.png │ │ ├── maki_natural.png │ │ ├── maki_optician.png │ │ ├── maki_paint.png │ │ ├── maki_park.png │ │ ├── maki_park_alt1.png │ │ ├── maki_parking.png │ │ ├── maki_parking_garage.png │ │ ├── maki_pharmacy.png │ │ ├── maki_picnic_site.png │ │ ├── maki_pitch.png │ │ ├── maki_place_of_worship.png │ │ ├── maki_playground.png │ │ ├── maki_police.png │ │ ├── maki_police_jp.png │ │ ├── maki_post.png │ │ ├── maki_post_jp.png │ │ ├── maki_prison.png │ │ ├── maki_rail.png │ │ ├── maki_rail_light.png │ │ ├── maki_rail_metro.png │ │ ├── maki_ranger_station.png │ │ ├── maki_recycling.png │ │ ├── maki_religious_buddhist.png │ │ ├── maki_religious_christian.png │ │ ├── maki_religious_jewish.png │ │ ├── maki_religious_muslim.png │ │ ├── maki_religious_shinto.png │ │ ├── maki_residential_community.png │ │ ├── maki_restaurant.png │ │ ├── maki_restaurant_noodle.png │ │ ├── maki_restaurant_pizza.png │ │ ├── maki_restaurant_seafood.png │ │ ├── maki_roadblock.png │ │ ├── maki_rocket.png │ │ ├── maki_school.png │ │ ├── maki_school_jp.png │ │ ├── maki_scooter.png │ │ ├── maki_shelter.png │ │ ├── maki_shoe.png │ │ ├── maki_shop.png │ │ ├── maki_skateboard.png │ │ ├── maki_skiing.png │ │ ├── maki_slaughterhouse.png │ │ ├── maki_slipway.png │ │ ├── maki_snowmobile.png │ │ ├── maki_soccer.png │ │ ├── maki_square.png │ │ ├── maki_square_stroked.png │ │ ├── maki_stadium.png │ │ ├── maki_star.png │ │ ├── maki_star_stroked.png │ │ ├── maki_suitcase.png │ │ ├── maki_sushi.png │ │ ├── maki_swimming.png │ │ ├── maki_table_tennis.png │ │ ├── maki_teahouse.png │ │ ├── maki_telephone.png │ │ ├── maki_tennis.png │ │ ├── maki_theatre.png │ │ ├── maki_toilet.png │ │ ├── maki_town.png │ │ ├── maki_town_hall.png │ │ ├── maki_triangle.png │ │ ├── maki_triangle_stroked.png │ │ ├── maki_veterinary.png │ │ ├── maki_viewpoint.png │ │ ├── maki_village.png │ │ ├── maki_volcano.png │ │ ├── maki_volleyball.png │ │ ├── maki_warehouse.png │ │ ├── maki_waste_basket.png │ │ ├── maki_watch.png │ │ ├── maki_water.png │ │ ├── maki_waterfall.png │ │ ├── maki_watermill.png │ │ ├── maki_wetland.png │ │ ├── maki_wheelchair.png │ │ ├── maki_windmill.png │ │ └── maki_zoo.png │ ├── osm.json.template │ ├── satellite.json.template │ └── temaki │ │ ├── temaki_abseiling.png │ │ ├── temaki_accessible_space.png │ │ ├── temaki_accounting.png │ │ ├── temaki_adit_profile.png │ │ ├── temaki_aerialway_pole.png │ │ ├── temaki_airport.png │ │ ├── temaki_amusement_park.png │ │ ├── temaki_anchor_medal.png │ │ ├── temaki_antenna.png │ │ ├── temaki_anvil.png │ │ ├── temaki_anvil_and_hammer.png │ │ ├── temaki_app_terminal.png │ │ ├── temaki_archery.png │ │ ├── temaki_army_tent.png │ │ ├── temaki_atm.png │ │ ├── temaki_balloon.png │ │ ├── temaki_barn.png │ │ ├── temaki_beach.png │ │ ├── temaki_beauty_salon.png │ │ ├── temaki_bench.png │ │ ├── temaki_benchmark_disk.png │ │ ├── temaki_bicycle_box.png │ │ ├── temaki_bicycle_locker.png │ │ ├── temaki_bicycle_rental.png │ │ ├── temaki_bicycle_repair.png │ │ ├── temaki_bicycle_structure.png │ │ ├── temaki_billboard.png │ │ ├── temaki_binoculars.png │ │ ├── temaki_bleachers.png │ │ ├── temaki_blind.png │ │ ├── temaki_board_bus.png │ │ ├── temaki_board_ferry.png │ │ ├── temaki_board_gondola_lift.png │ │ ├── temaki_board_hanging_rail.png │ │ ├── temaki_board_heavy_rail.png │ │ ├── temaki_board_light_rail.png │ │ ├── temaki_board_monorail.png │ │ ├── temaki_board_school_bus.png │ │ ├── temaki_board_subway.png │ │ ├── temaki_board_train.png │ │ ├── temaki_board_train_bullet.png │ │ ├── temaki_board_train_diesel.png │ │ ├── temaki_board_train_kids.png │ │ ├── temaki_board_train_steam.png │ │ ├── temaki_board_tram.png │ │ ├── temaki_board_transit.png │ │ ├── temaki_board_trolleybus.png │ │ ├── temaki_boat.png │ │ ├── temaki_boat_floating.png │ │ ├── temaki_boat_ramp.png │ │ ├── temaki_boat_rental.png │ │ ├── temaki_boat_repair.png │ │ ├── temaki_boat_tour.png │ │ ├── temaki_boating.png │ │ ├── temaki_bollard.png │ │ ├── temaki_bollard_row.png │ │ ├── temaki_book_store.png │ │ ├── temaki_bottles.png │ │ ├── temaki_boulder1.png │ │ ├── temaki_boulder2.png │ │ ├── temaki_boulder3.png │ │ ├── temaki_bowling.png │ │ ├── temaki_bowling_alt1.png │ │ ├── temaki_bread.png │ │ ├── temaki_brick_trowel.png │ │ ├── temaki_bridge.png │ │ ├── temaki_briefcase.png │ │ ├── temaki_briefcase_bolt.png │ │ ├── temaki_briefcase_cross.png │ │ ├── temaki_briefcase_info.png │ │ ├── temaki_briefcase_shield.png │ │ ├── temaki_buffer_stop.png │ │ ├── temaki_bulb.png │ │ ├── temaki_bulb2.png │ │ ├── temaki_bulb3.png │ │ ├── temaki_bulldozer.png │ │ ├── temaki_bulletin_board.png │ │ ├── temaki_bunk_beds.png │ │ ├── temaki_bunker.png │ │ ├── temaki_bunker_silo.png │ │ ├── temaki_buoy.png │ │ ├── temaki_bus.png │ │ ├── temaki_bus_guided.png │ │ ├── temaki_cabin.png │ │ ├── temaki_cable.png │ │ ├── temaki_cable_device.png │ │ ├── temaki_cable_manhole.png │ │ ├── temaki_cable_meter.png │ │ ├── temaki_cable_shutoff.png │ │ ├── temaki_cairn.png │ │ ├── temaki_camper_trailer.png │ │ ├── temaki_camper_trailer_dump.png │ │ ├── temaki_campfire.png │ │ ├── temaki_can.png │ │ ├── temaki_canoe.png │ │ ├── temaki_capitol.png │ │ ├── temaki_car_dealer.png │ │ ├── temaki_car_parked.png │ │ ├── temaki_car_pool.png │ │ ├── temaki_car_structure.png │ │ ├── temaki_car_wash.png │ │ ├── temaki_carport.png │ │ ├── temaki_casino.png │ │ ├── temaki_catering.png │ │ ├── temaki_cattle_grid.png │ │ ├── temaki_chairlift.png │ │ ├── temaki_checkpoint.png │ │ ├── temaki_chefs_knife.png │ │ ├── temaki_chicane_arrow.png │ │ ├── temaki_chimney.png │ │ ├── temaki_chocolate.png │ │ ├── temaki_cleaver.png │ │ ├── temaki_cliff_falling_rocks.png │ │ ├── temaki_climbing.png │ │ ├── temaki_clock.png │ │ ├── temaki_clothes_hanger.png │ │ ├── temaki_coffee.png │ │ ├── temaki_compass.png │ │ ├── temaki_courthouse.png │ │ ├── temaki_crane.png │ │ ├── temaki_cross_country_skiing.png │ │ ├── temaki_curtains.png │ │ ├── temaki_cycle_barrier.png │ │ ├── temaki_cyclist_crosswalk.png │ │ ├── temaki_dagger.png │ │ ├── temaki_desk_lamp.png │ │ ├── temaki_diamond.png │ │ ├── temaki_dice.png │ │ ├── temaki_disc_golf_basket.png │ │ ├── temaki_diving.png │ │ ├── temaki_dog_shelter.png │ │ ├── temaki_domed_tower.png │ │ ├── temaki_donut.png │ │ ├── temaki_drag_lift.png │ │ ├── temaki_dress.png │ │ ├── temaki_ear.png │ │ ├── temaki_egg.png │ │ ├── temaki_electronic.png │ │ ├── temaki_elevator.png │ │ ├── temaki_embassy.png │ │ ├── temaki_fashion_accessories.png │ │ ├── temaki_ferry.png │ │ ├── temaki_field_hockey.png │ │ ├── temaki_fire_hydrant.png │ │ ├── temaki_fireplace.png │ │ ├── temaki_fish_cleaning.png │ │ ├── temaki_fish_ladder.png │ │ ├── temaki_fishing_pier.png │ │ ├── temaki_florist.png │ │ ├── temaki_food.png │ │ ├── temaki_fountain.png │ │ ├── temaki_freight_car.png │ │ ├── temaki_furniture.png │ │ ├── temaki_garden_bed.png │ │ ├── temaki_gas.png │ │ ├── temaki_gas_device.png │ │ ├── temaki_gas_manhole.png │ │ ├── temaki_gas_meter.png │ │ ├── temaki_gas_shutoff.png │ │ ├── temaki_gate.png │ │ ├── temaki_golf_cart.png │ │ ├── temaki_golf_green.png │ │ ├── temaki_gondola_lift.png │ │ ├── temaki_goods_lift.png │ │ ├── temaki_gown.png │ │ ├── temaki_grapes.png │ │ ├── temaki_grass.png │ │ ├── temaki_guard_rail.png │ │ ├── temaki_gym.png │ │ ├── temaki_hair_care.png │ │ ├── temaki_hand.png │ │ ├── temaki_handbag.png │ │ ├── temaki_hang_gliding.png │ │ ├── temaki_hangar.png │ │ ├── temaki_hanging_rail.png │ │ ├── temaki_hearing_aid.png │ │ ├── temaki_heart.png │ │ ├── temaki_heavy_rail.png │ │ ├── temaki_hedge.png │ │ ├── temaki_height_restrictor.png │ │ ├── temaki_hinduism.png │ │ ├── temaki_horse_shelter.png │ │ ├── temaki_horseshoe.png │ │ ├── temaki_horseshoes.png │ │ ├── temaki_houseboat.png │ │ ├── temaki_ice_fishing.png │ │ ├── temaki_ice_skating.png │ │ ├── temaki_info_board.png │ │ ├── temaki_inline_skating.png │ │ ├── temaki_island_trees_building.png │ │ ├── temaki_islet_tree.png │ │ ├── temaki_j_bar_lift.png │ │ ├── temaki_jet_skiing.png │ │ ├── temaki_jetplane_front.png │ │ ├── temaki_jewelry_store.png │ │ ├── temaki_junction.png │ │ ├── temaki_junk_car.png │ │ ├── temaki_kayaking.png │ │ ├── temaki_kerb_flush.png │ │ ├── temaki_kerb_lowered.png │ │ ├── temaki_kerb_raised.png │ │ ├── temaki_kerb_rolled.png │ │ ├── temaki_kitchen_sink.png │ │ ├── temaki_laundry.png │ │ ├── temaki_lawn.png │ │ ├── temaki_lawyer.png │ │ ├── temaki_letter_box.png │ │ ├── temaki_library.png │ │ ├── temaki_lift_gate.png │ │ ├── temaki_light_rail.png │ │ ├── temaki_lipstick.png │ │ ├── temaki_lock.png │ │ ├── temaki_manhole.png │ │ ├── temaki_manufactured_home.png │ │ ├── temaki_mast.png │ │ ├── temaki_mast_communication.png │ │ ├── temaki_meat.png │ │ ├── temaki_milestone.png │ │ ├── temaki_military.png │ │ ├── temaki_military_checkpoint.png │ │ ├── temaki_mineshaft_cage.png │ │ ├── temaki_mineshaft_profile.png │ │ ├── temaki_money_hand.png │ │ ├── temaki_monorail.png │ │ ├── temaki_motorcycle.png │ │ ├── temaki_motorcycle_rental.png │ │ ├── temaki_motorcycle_repair.png │ │ ├── temaki_mountain_range.png │ │ ├── temaki_mountain_rescue.png │ │ ├── temaki_movie_rental.png │ │ ├── temaki_museum.png │ │ ├── temaki_needle_and_spool.png │ │ ├── temaki_oil_well.png │ │ ├── temaki_os_benchmark.png │ │ ├── temaki_parking_space.png │ │ ├── temaki_passport_checkpoint.png │ │ ├── temaki_ped_cyclist_crosswalk.png │ │ ├── temaki_pedestrian.png │ │ ├── temaki_pedestrian_and_cyclist.png │ │ ├── temaki_pedestrian_crosswalk.png │ │ ├── temaki_pedestrian_walled.png │ │ ├── temaki_perfume.png │ │ ├── temaki_pet_grooming.png │ │ ├── temaki_pet_store.png │ │ ├── temaki_pharmacy.png │ │ ├── temaki_physiotherapist.png │ │ ├── temaki_pick_hammer.png │ │ ├── temaki_picnic_shelter.png │ │ ├── temaki_pier_fixed.png │ │ ├── temaki_pier_floating.png │ │ ├── temaki_pin.png │ │ ├── temaki_pipe.png │ │ ├── temaki_plane_taxiing.png │ │ ├── temaki_planes.png │ │ ├── temaki_planes_bidirectional.png │ │ ├── temaki_plaque.png │ │ ├── temaki_platter_lift.png │ │ ├── temaki_play_structure.png │ │ ├── temaki_plumber.png │ │ ├── temaki_police_checkpoint.png │ │ ├── temaki_police_officer.png │ │ ├── temaki_polished_nail.png │ │ ├── temaki_post_box.png │ │ ├── temaki_poster_box.png │ │ ├── temaki_power.png │ │ ├── temaki_power_cb.png │ │ ├── temaki_power_cb2.png │ │ ├── temaki_power_circuit.png │ │ ├── temaki_power_ct.png │ │ ├── temaki_power_device.png │ │ ├── temaki_power_isolator.png │ │ ├── temaki_power_la.png │ │ ├── temaki_power_manhole.png │ │ ├── temaki_power_meter.png │ │ ├── temaki_power_pole.png │ │ ├── temaki_power_shutoff.png │ │ ├── temaki_power_switch.png │ │ ├── temaki_power_tower.png │ │ ├── temaki_power_transformer.png │ │ ├── temaki_powered_pump.png │ │ ├── temaki_propane_tank.png │ │ ├── temaki_psychic.png │ │ ├── temaki_quakerism.png │ │ ├── temaki_racetrack_oval.png │ │ ├── temaki_radiation.png │ │ ├── temaki_radio.png │ │ ├── temaki_rafting.png │ │ ├── temaki_rail_flag.png │ │ ├── temaki_rail_profile.png │ │ ├── temaki_railing.png │ │ ├── temaki_railway_cable_track.png │ │ ├── temaki_railway_signals.png │ │ ├── temaki_railway_track.png │ │ ├── temaki_railway_track_askew.png │ │ ├── temaki_railway_track_mini.png │ │ ├── temaki_railway_track_narrow.png │ │ ├── temaki_railway_track_partial.png │ │ ├── temaki_real_estate_agency.png │ │ ├── temaki_rocket_firework.png │ │ ├── temaki_roller_coaster.png │ │ ├── temaki_rope_fence.png │ │ ├── temaki_row_houses.png │ │ ├── temaki_ruins.png │ │ ├── temaki_rumble_strip.png │ │ ├── temaki_saddle.png │ │ ├── temaki_sailing.png │ │ ├── temaki_sandwich.png │ │ ├── temaki_scaffold.png │ │ ├── temaki_school.png │ │ ├── temaki_school_bus.png │ │ ├── temaki_scuba_diving.png │ │ ├── temaki_sculpture.png │ │ ├── temaki_security_camera.png │ │ ├── temaki_shield.png │ │ ├── temaki_shinto.png │ │ ├── temaki_shopping_mall.png │ │ ├── temaki_shower.png │ │ ├── temaki_shrub.png │ │ ├── temaki_shrub_low.png │ │ ├── temaki_shuffleboard.png │ │ ├── temaki_sign_and_bench.png │ │ ├── temaki_sign_and_car.png │ │ ├── temaki_sign_and_pedestrian.png │ │ ├── temaki_sikhism.png │ │ ├── temaki_silo.png │ │ ├── temaki_skateboarding.png │ │ ├── temaki_ski_jumping.png │ │ ├── temaki_skiing.png │ │ ├── temaki_sledding.png │ │ ├── temaki_sleep_shelter.png │ │ ├── temaki_slide.png │ │ ├── temaki_snow.png │ │ ├── temaki_snow_shoeing.png │ │ ├── temaki_snowboarding.png │ │ ├── temaki_snowmobile.png │ │ ├── temaki_social_facility.png │ │ ├── temaki_spa.png │ │ ├── temaki_speaker.png │ │ ├── temaki_speed_bump.png │ │ ├── temaki_speed_dip.png │ │ ├── temaki_speed_dip_double.png │ │ ├── temaki_speed_hump.png │ │ ├── temaki_speed_table.png │ │ ├── temaki_speedway_8.png │ │ ├── temaki_speedway_oval.png │ │ ├── temaki_spice_bottle.png │ │ ├── temaki_spike_strip.png │ │ ├── temaki_spotting_scope.png │ │ ├── temaki_stamp.png │ │ ├── temaki_statue.png │ │ ├── temaki_stile_squeezer.png │ │ ├── temaki_stop.png │ │ ├── temaki_storage.png │ │ ├── temaki_storage_drum.png │ │ ├── temaki_storage_fermenter.png │ │ ├── temaki_storage_rental.png │ │ ├── temaki_storage_tank.png │ │ ├── temaki_street_lamp_arm.png │ │ ├── temaki_striped_way.png │ │ ├── temaki_striped_zone.png │ │ ├── temaki_subway.png │ │ ├── temaki_suitcase.png │ │ ├── temaki_suitcase_key.png │ │ ├── temaki_suitcase_xray.png │ │ ├── temaki_surfing.png │ │ ├── temaki_swamp.png │ │ ├── temaki_t_bar_lift.png │ │ ├── temaki_tall_gate.png │ │ ├── temaki_tanning.png │ │ ├── temaki_tanning2.png │ │ ├── temaki_taoism.png │ │ ├── temaki_tattoo_machine.png │ │ ├── temaki_taxi_stand.png │ │ ├── temaki_telephone.png │ │ ├── temaki_telescope.png │ │ ├── temaki_temaki.png │ │ ├── temaki_tennis.png │ │ ├── temaki_ticket.png │ │ ├── temaki_tiling.png │ │ ├── temaki_tire.png │ │ ├── temaki_tire_course.png │ │ ├── temaki_toolbox.png │ │ ├── temaki_tools.png │ │ ├── temaki_tower.png │ │ ├── temaki_tower_communication.png │ │ ├── temaki_town_hall.png │ │ ├── temaki_traffic_signals.png │ │ ├── temaki_train.png │ │ ├── temaki_train_bullet.png │ │ ├── temaki_train_diesel.png │ │ ├── temaki_train_kids.png │ │ ├── temaki_train_steam.png │ │ ├── temaki_train_wash.png │ │ ├── temaki_tram.png │ │ ├── temaki_transit.png │ │ ├── temaki_transit_shelter.png │ │ ├── temaki_tree_and_bench.png │ │ ├── temaki_tree_row.png │ │ ├── temaki_trench.png │ │ ├── temaki_trolleybus.png │ │ ├── temaki_truck.png │ │ ├── temaki_tunnel.png │ │ ├── temaki_turnstile.png │ │ ├── temaki_utility_pole.png │ │ ├── temaki_vacuum.png │ │ ├── temaki_valley.png │ │ ├── temaki_vase.png │ │ ├── temaki_vending_bread.png │ │ ├── temaki_vending_cigarettes.png │ │ ├── temaki_vending_cold_drink.png │ │ ├── temaki_vending_cold_drink2.png │ │ ├── temaki_vending_eggs.png │ │ ├── temaki_vending_flat_coin.png │ │ ├── temaki_vending_hot_drink.png │ │ ├── temaki_vending_hot_drink2.png │ │ ├── temaki_vending_ice.png │ │ ├── temaki_vending_ice_cream.png │ │ ├── temaki_vending_ice_cream2.png │ │ ├── temaki_vending_lockers.png │ │ ├── temaki_vending_love.png │ │ ├── temaki_vending_machine.png │ │ ├── temaki_vending_medicine.png │ │ ├── temaki_vending_newspaper.png │ │ ├── temaki_vending_pet_waste.png │ │ ├── temaki_vending_stamps.png │ │ ├── temaki_vending_tickets.png │ │ ├── temaki_vending_venus.png │ │ ├── temaki_vertex.png │ │ ├── temaki_vertical_rotisserie.png │ │ ├── temaki_veterinary_care.png │ │ ├── temaki_wall.png │ │ ├── temaki_waste.png │ │ ├── temaki_waste_device.png │ │ ├── temaki_waste_manhole.png │ │ ├── temaki_waste_meter.png │ │ ├── temaki_waste_shutoff.png │ │ ├── temaki_water.png │ │ ├── temaki_water_device.png │ │ ├── temaki_water_manhole.png │ │ ├── temaki_water_meter.png │ │ ├── temaki_water_shutoff.png │ │ ├── temaki_water_tap.png │ │ ├── temaki_water_tap_drinkable.png │ │ ├── temaki_water_tower.png │ │ ├── temaki_waterskiing.png │ │ ├── temaki_well_pump_manual.png │ │ ├── temaki_well_pump_powered.png │ │ ├── temaki_whale_watching.png │ │ ├── temaki_wheel.png │ │ ├── temaki_wheelchair.png │ │ ├── temaki_wheelchair_active.png │ │ ├── temaki_wind_surfing.png │ │ ├── temaki_wind_turbine.png │ │ ├── temaki_windmill.png │ │ ├── temaki_window.png │ │ ├── temaki_windsock.png │ │ ├── temaki_yield.png │ │ └── temaki_zoo.png ├── components │ ├── ActionButton.js │ ├── AddPointButton.js │ ├── AddPointOverlay.js │ ├── AddWayButton.js │ ├── AuthMessage.js │ ├── AuthorizationManager.js │ ├── BasemapModal.js │ ├── CameraButton.js │ ├── Collecticons.js │ ├── ConfirmDialog.js │ ├── Conflict.js │ ├── Container.js │ ├── CrosshairOverlay.js │ ├── DeleteMapModal.js │ ├── Drawer.js │ ├── EditMapModal.js │ ├── FeatureDetailHeader.js │ ├── FeatureRelationErrorDialog.js │ ├── FeatureRelationWarning.js │ ├── Header.js │ ├── Input.js │ ├── LoadingOverlay.js │ ├── LocateUserButton.js │ ├── MapOverlay.js │ ├── MegaMenu.js │ ├── Notification.js │ ├── ObserveAPIAuthManager.js │ ├── ObserveIcon.js │ ├── OfflineAreaList.js │ ├── OfflineItem.js │ ├── PageWrapper.js │ ├── PhotoGrid.js │ ├── PhotoView.js │ ├── PhotosItem.js │ ├── PhotosList.js │ ├── RecordButton.js │ ├── RecordHeader.js │ ├── SaveEditDialog.js │ ├── TagEditor.js │ ├── TracesItem.js │ ├── TracesList.js │ ├── UploadManager.js │ ├── UserContributionsItem.js │ ├── UserContributionsList.js │ ├── WayEditingOverlay.js │ └── ZoomToEdit.js ├── constants.js ├── presets │ ├── categories.json │ ├── fields.json │ ├── presets.json │ ├── presets.yaml │ ├── starter-presets.json │ └── taginfo.json ├── reducers │ ├── about.js │ ├── account.js │ ├── authorization.js │ ├── camera.js │ ├── edit.js │ ├── index.js │ ├── map.js │ ├── notification.js │ ├── observeApi.js │ ├── presets.js │ ├── traces.js │ ├── undoable.js │ ├── wayEditing.js │ └── wayEditingHistory.js ├── screens │ ├── Account.js │ ├── CameraScreen.js │ ├── Explore.js │ ├── Features │ │ ├── AddFeatureDetail.js │ │ ├── ChangeCoordinates.js │ │ ├── EditFeatureDetail.js │ │ ├── SelectFeatureType.js │ │ └── ViewFeatureDetail.js │ ├── OfflineMaps │ │ ├── OfflineAreaList.js │ │ └── ViewOfflineAreaDetail.js │ ├── Photos │ │ ├── PhotoDetailScreen.js │ │ └── PhotosListScreen.js │ ├── SaveTrace.js │ ├── Settings.js │ ├── Traces │ │ ├── TraceDetailScreen.js │ │ └── TracesListScreen.js │ └── UserContributions │ │ ├── UserContributionsItemScreen.js │ │ └── UserContributionsListScreen.js ├── selectors │ └── index.js ├── services │ ├── auth.js │ ├── nodecache.js │ ├── observe-api.js │ ├── offline-tiles.js │ ├── osm-api.js │ └── trace.js ├── style │ ├── map.js │ └── variables.js └── utils │ ├── add-icon-url.js │ ├── bbox.js │ ├── create-way-feature.js │ ├── data-cache.js │ ├── edit-to-osm-change.js │ ├── edit-utils.js │ ├── edits-to-geojson.js │ ├── errors.js │ ├── fetch.js │ ├── filter-tags.js │ ├── filter-xml.js │ ├── format-date.js │ ├── get-category.js │ ├── get-changeset-xml.js │ ├── get-default-preset.js │ ├── get-feature-fields.js │ ├── get-fields.js │ ├── get-geometry-fields.js │ ├── get-inherited-fields.js │ ├── get-parent-preset.js │ ├── get-place-name.js │ ├── get-platform-styles.js │ ├── get-preset-by-tags.js │ ├── get-random-id.js │ ├── get-taginfo.js │ ├── get-user-location.js │ ├── map-modes.js │ ├── modify-shared-ways.js │ ├── nearest.js │ ├── next-tick.js │ ├── nodes-to-geojson.js │ ├── object-to-array.js │ ├── order-presets.js │ ├── osm-tag-suggesting-area.js │ ├── photos.js │ ├── properties-diff.js │ ├── store.js │ ├── traces.js │ ├── uninterestingKeys.js │ ├── upload-edit.js │ └── utils.js ├── babel.config.js ├── data ├── address_formats.json ├── core.yaml ├── deprecated.json ├── discarded.json ├── imagery.json ├── intro_graph.json ├── keepRight.json ├── languages.json ├── locales.json ├── phone_formats.json ├── presets │ ├── README.md │ ├── categories │ │ ├── barrier.json │ │ ├── building.json │ │ ├── golf.json │ │ ├── landuse.json │ │ ├── natural.json │ │ ├── path.json │ │ ├── rail.json │ │ ├── restriction.json │ │ ├── road_major.json │ │ ├── road_minor.json │ │ ├── road_service.json │ │ ├── route.json │ │ ├── utility.json │ │ ├── water.json │ │ └── waterway.json │ ├── defaults.json │ ├── fields │ │ ├── access.json │ │ ├── access_aisle.json │ │ ├── access_simple.json │ │ ├── addr │ │ │ └── interpolation.json │ │ ├── address.json │ │ ├── admin_level.json │ │ ├── aerialway.json │ │ ├── aerialway │ │ │ ├── access.json │ │ │ ├── bubble.json │ │ │ ├── capacity.json │ │ │ ├── duration.json │ │ │ ├── heating.json │ │ │ ├── occupancy.json │ │ │ └── summer │ │ │ │ └── access.json │ │ ├── aeroway.json │ │ ├── agrarian.json │ │ ├── air_conditioning.json │ │ ├── amenity.json │ │ ├── animal_boarding.json │ │ ├── animal_breeding.json │ │ ├── animal_shelter.json │ │ ├── architect.json │ │ ├── area │ │ │ └── highway.json │ │ ├── artist.json │ │ ├── artwork_type.json │ │ ├── atm.json │ │ ├── attraction.json │ │ ├── baby_feeding.json │ │ ├── baby_seat.json │ │ ├── backcountry.json │ │ ├── backrest.json │ │ ├── bar.json │ │ ├── barrier.json │ │ ├── basin.json │ │ ├── bath │ │ │ ├── open_air.json │ │ │ ├── sand_bath.json │ │ │ └── type.json │ │ ├── beauty.json │ │ ├── bench.json │ │ ├── bicycle_parking.json │ │ ├── bin.json │ │ ├── blind.json │ │ ├── blood_components.json │ │ ├── board_type.json │ │ ├── bollard.json │ │ ├── booth.json │ │ ├── bottle.json │ │ ├── boules.json │ │ ├── boundary.json │ │ ├── brand.json │ │ ├── brewery.json │ │ ├── bridge.json │ │ ├── bridge │ │ │ └── support.json │ │ ├── building.json │ │ ├── building │ │ │ ├── levels.json │ │ │ ├── levels │ │ │ │ └── underground.json │ │ │ ├── levels_building.json │ │ │ └── material.json │ │ ├── building_area.json │ │ ├── bunker_type.json │ │ ├── cables.json │ │ ├── camera │ │ │ ├── direction.json │ │ │ ├── mount.json │ │ │ └── type.json │ │ ├── capacity.json │ │ ├── cash_in.json │ │ ├── castle_type.json │ │ ├── changing_table.json │ │ ├── charge_fee.json │ │ ├── charge_toll.json │ │ ├── check_date.json │ │ ├── clothes.json │ │ ├── club.json │ │ ├── collection_times.json │ │ ├── colour.json │ │ ├── comment.json │ │ ├── communication_multi.json │ │ ├── connectivity.json │ │ ├── construction.json │ │ ├── consulate.json │ │ ├── consulting.json │ │ ├── contact │ │ │ └── webcam.json │ │ ├── content.json │ │ ├── conveying.json │ │ ├── conveying_escalator.json │ │ ├── country.json │ │ ├── country_flag.json │ │ ├── couplings.json │ │ ├── covered.json │ │ ├── craft.json │ │ ├── crane │ │ │ └── type.json │ │ ├── crop.json │ │ ├── crossing.json │ │ ├── crossing │ │ │ └── island.json │ │ ├── cuisine.json │ │ ├── currency_multi.json │ │ ├── cutting.json │ │ ├── cycle_network.json │ │ ├── cycleway.json │ │ ├── dance │ │ │ └── style.json │ │ ├── date.json │ │ ├── delivery.json │ │ ├── denomination.json │ │ ├── denotation.json │ │ ├── departures_board.json │ │ ├── description.json │ │ ├── design.json │ │ ├── destination │ │ │ ├── ref_oneway.json │ │ │ └── symbol_oneway.json │ │ ├── destination_oneway.json │ │ ├── devices.json │ │ ├── diameter.json │ │ ├── diet_multi.json │ │ ├── diplomatic.json │ │ ├── diplomatic │ │ │ └── services.json │ │ ├── direction.json │ │ ├── direction_cardinal.json │ │ ├── direction_clock.json │ │ ├── direction_vertex.json │ │ ├── dispensing.json │ │ ├── display.json │ │ ├── distance.json │ │ ├── disused │ │ │ └── railway.json │ │ ├── dock.json │ │ ├── dog.json │ │ ├── door.json │ │ ├── door_type.json │ │ ├── drink_multi.json │ │ ├── drinking_water.json │ │ ├── drive_through.json │ │ ├── duration.json │ │ ├── electrified.json │ │ ├── elevation.json │ │ ├── email.json │ │ ├── embankment.json │ │ ├── embassy.json │ │ ├── emergency.json │ │ ├── emergency_combo.json │ │ ├── enforcement.json │ │ ├── entrance.json │ │ ├── except.json │ │ ├── expected_rcn_route_relations.json │ │ ├── expected_rwn_route_relations.json │ │ ├── faces.json │ │ ├── fax.json │ │ ├── fee.json │ │ ├── fence_type.json │ │ ├── fire_hydrant │ │ │ ├── diameter.json │ │ │ ├── pressure.json │ │ │ └── type.json │ │ ├── fireplace.json │ │ ├── fishing.json │ │ ├── fitness_station.json │ │ ├── fixme.json │ │ ├── flag │ │ │ └── type.json │ │ ├── floating.json │ │ ├── flood_prone.json │ │ ├── ford.json │ │ ├── fountain.json │ │ ├── frequency.json │ │ ├── frequency_electrified.json │ │ ├── from.json │ │ ├── fuel.json │ │ ├── fuel_multi.json │ │ ├── gambling.json │ │ ├── gauge.json │ │ ├── gender.json │ │ ├── generator │ │ │ ├── method.json │ │ │ ├── output │ │ │ │ └── electricity.json │ │ │ ├── source.json │ │ │ └── type.json │ │ ├── geyser │ │ │ └── height.json │ │ ├── gnis │ │ │ └── feature_id.json │ │ ├── government.json │ │ ├── grape_variety.json │ │ ├── group_only.json │ │ ├── guest_house.json │ │ ├── handicap.json │ │ ├── handrail.json │ │ ├── hashtags.json │ │ ├── healthcare.json │ │ ├── healthcare │ │ │ └── speciality.json │ │ ├── height.json │ │ ├── height_building.json │ │ ├── highspeed.json │ │ ├── highway.json │ │ ├── historic.json │ │ ├── historic │ │ │ ├── civilization.json │ │ │ └── wreck │ │ │ │ ├── date_sunk.json │ │ │ │ ├── visible_at_high_tide.json │ │ │ │ └── visible_at_low_tide.json │ │ ├── hoops.json │ │ ├── horse_dressage.json │ │ ├── horse_riding.json │ │ ├── horse_scale.json │ │ ├── horse_stables.json │ │ ├── hot_water.json │ │ ├── iata.json │ │ ├── icao.json │ │ ├── incline.json │ │ ├── incline_steps.json │ │ ├── indoor.json │ │ ├── indoor_type.json │ │ ├── industrial.json │ │ ├── informal.json │ │ ├── information.json │ │ ├── inscription.json │ │ ├── intermittent.json │ │ ├── intermittent_yes.json │ │ ├── internet_access.json │ │ ├── internet_access │ │ │ ├── fee.json │ │ │ └── ssid.json │ │ ├── interval.json │ │ ├── junction │ │ │ └── ref_oneway.json │ │ ├── junction_line.json │ │ ├── kerb.json │ │ ├── kerb │ │ │ └── height.json │ │ ├── kneipp_water_cure_multi.json │ │ ├── label.json │ │ ├── lamp_type.json │ │ ├── landuse.json │ │ ├── lanes.json │ │ ├── language_multi.json │ │ ├── layer.json │ │ ├── leaf_cycle.json │ │ ├── leaf_cycle_singular.json │ │ ├── leaf_type.json │ │ ├── leaf_type_singular.json │ │ ├── leisure.json │ │ ├── length.json │ │ ├── level.json │ │ ├── level_semi.json │ │ ├── liaison.json │ │ ├── line_attachment.json │ │ ├── lit.json │ │ ├── location.json │ │ ├── location_pool.json │ │ ├── lock.json │ │ ├── lockable.json │ │ ├── man_made.json │ │ ├── manhole.json │ │ ├── manufacturer.json │ │ ├── map_size.json │ │ ├── map_type.json │ │ ├── mapillary.json │ │ ├── marker.json │ │ ├── material.json │ │ ├── max_age.json │ │ ├── maxheight.json │ │ ├── maxspeed.json │ │ ├── maxspeed │ │ │ └── advisory.json │ │ ├── maxstay.json │ │ ├── maxweight.json │ │ ├── maxweight_bridge.json │ │ ├── memorial.json │ │ ├── microbrewery.json │ │ ├── min_age.json │ │ ├── minspeed.json │ │ ├── monitoring_multi.json │ │ ├── mtb │ │ │ ├── scale.json │ │ │ └── scale │ │ │ │ ├── imba.json │ │ │ │ └── uphill.json │ │ ├── museum.json │ │ ├── name.json │ │ ├── natural.json │ │ ├── network.json │ │ ├── network │ │ │ └── type.json │ │ ├── network_bicycle.json │ │ ├── network_foot.json │ │ ├── network_horse.json │ │ ├── network_road.json │ │ ├── not │ │ │ └── name.json │ │ ├── note.json │ │ ├── office.json │ │ ├── oneway.json │ │ ├── oneway │ │ │ └── bicycle.json │ │ ├── oneway_yes.json │ │ ├── openfire.json │ │ ├── opening_date.json │ │ ├── opening_hours.json │ │ ├── operator.json │ │ ├── operator │ │ │ └── type.json │ │ ├── outdoor_seating.json │ │ ├── par.json │ │ ├── park_ride.json │ │ ├── parking.json │ │ ├── payment_multi.json │ │ ├── payment_multi_fee.json │ │ ├── phases.json │ │ ├── phone.json │ │ ├── piste │ │ │ ├── difficulty.json │ │ │ ├── difficulty_downhill.json │ │ │ ├── difficulty_nordic.json │ │ │ ├── difficulty_skitour.json │ │ │ ├── grooming.json │ │ │ ├── grooming_downhill.json │ │ │ ├── grooming_hike.json │ │ │ ├── grooming_nordic.json │ │ │ └── type.json │ │ ├── place.json │ │ ├── plant.json │ │ ├── plant │ │ │ ├── method.json │ │ │ ├── output │ │ │ │ └── electricity.json │ │ │ └── source.json │ │ ├── playground.json │ │ ├── playground │ │ │ └── theme.json │ │ ├── polling_station.json │ │ ├── population.json │ │ ├── post.json │ │ ├── power.json │ │ ├── power_supply.json │ │ ├── preschool.json │ │ ├── produce.json │ │ ├── product.json │ │ ├── public_bookcase │ │ │ └── type.json │ │ ├── pump.json │ │ ├── railway.json │ │ ├── railway │ │ │ ├── position.json │ │ │ └── signal │ │ │ │ └── direction.json │ │ ├── rating.json │ │ ├── rcn_ref.json │ │ ├── recycling_accepts.json │ │ ├── recycling_type.json │ │ ├── ref.json │ │ ├── ref │ │ │ ├── isil.json │ │ │ └── vatin.json │ │ ├── ref_aeroway_gate.json │ │ ├── ref_golf_hole.json │ │ ├── ref_highway_junction.json │ │ ├── ref_platform.json │ │ ├── ref_road_number.json │ │ ├── ref_room_number.json │ │ ├── ref_route.json │ │ ├── ref_runway.json │ │ ├── ref_stop_position.json │ │ ├── ref_taxiway.json │ │ ├── relation.json │ │ ├── religion.json │ │ ├── reservation.json │ │ ├── residential.json │ │ ├── resort.json │ │ ├── resource.json │ │ ├── restriction.json │ │ ├── restrictions.json │ │ ├── roof │ │ │ └── colour.json │ │ ├── room.json │ │ ├── rooms.json │ │ ├── route.json │ │ ├── route_master.json │ │ ├── rwn_ref.json │ │ ├── sac_scale.json │ │ ├── salt.json │ │ ├── sanitary_dump_station.json │ │ ├── screen.json │ │ ├── scuba_diving.json │ │ ├── seamark │ │ │ ├── beacon_isolated_danger │ │ │ │ └── shape.json │ │ │ ├── beacon_lateral │ │ │ │ ├── category.json │ │ │ │ ├── colour.json │ │ │ │ ├── shape.json │ │ │ │ └── system.json │ │ │ ├── buoy_lateral │ │ │ │ ├── category.json │ │ │ │ ├── colour.json │ │ │ │ ├── shape.json │ │ │ │ └── system.json │ │ │ ├── mooring │ │ │ │ └── category.json │ │ │ ├── type.json │ │ │ └── wreck │ │ │ │ └── category.json │ │ ├── seasonal.json │ │ ├── seats.json │ │ ├── second_hand.json │ │ ├── segregated.json │ │ ├── self_service.json │ │ ├── service.json │ │ ├── service │ │ │ ├── bicycle.json │ │ │ └── vehicle.json │ │ ├── service_rail.json │ │ ├── service_times.json │ │ ├── shelter.json │ │ ├── shelter_type.json │ │ ├── shop.json │ │ ├── shower.json │ │ ├── siren │ │ │ ├── purpose.json │ │ │ └── type.json │ │ ├── site.json │ │ ├── site_type.json │ │ ├── smoking.json │ │ ├── smoothness.json │ │ ├── sms.json │ │ ├── social_facility.json │ │ ├── social_facility_for.json │ │ ├── source.json │ │ ├── species │ │ │ └── wikidata.json │ │ ├── sport.json │ │ ├── sport_ice.json │ │ ├── sport_racing_motor.json │ │ ├── sport_racing_nonmotor.json │ │ ├── stars.json │ │ ├── start_date.json │ │ ├── step_count.json │ │ ├── stile.json │ │ ├── stop.json │ │ ├── street_cabinet.json │ │ ├── stroller.json │ │ ├── structure.json │ │ ├── structure_waterway.json │ │ ├── studio.json │ │ ├── substance.json │ │ ├── substation.json │ │ ├── supervised.json │ │ ├── support.json │ │ ├── surface.json │ │ ├── surveillance.json │ │ ├── surveillance │ │ │ ├── type.json │ │ │ └── zone.json │ │ ├── survey │ │ │ └── date.json │ │ ├── swimming_pool.json │ │ ├── switch.json │ │ ├── tactile_paving.json │ │ ├── takeaway.json │ │ ├── target.json │ │ ├── tidal.json │ │ ├── to.json │ │ ├── toilets.json │ │ ├── toilets │ │ │ ├── disposal.json │ │ │ ├── handwashing.json │ │ │ └── position.json │ │ ├── toll.json │ │ ├── tomb.json │ │ ├── tourism.json │ │ ├── tower │ │ │ ├── construction.json │ │ │ └── type.json │ │ ├── townhall │ │ │ └── type.json │ │ ├── tracktype.json │ │ ├── trade.json │ │ ├── traffic_calming.json │ │ ├── traffic_sign.json │ │ ├── traffic_sign │ │ │ └── direction.json │ │ ├── traffic_signals.json │ │ ├── traffic_signals │ │ │ └── direction.json │ │ ├── trail_visibility.json │ │ ├── transformer.json │ │ ├── trees.json │ │ ├── trench.json │ │ ├── trolley_wire.json │ │ ├── tunnel.json │ │ ├── usage_rail.json │ │ ├── utility.json │ │ ├── utility_semi.json │ │ ├── valve.json │ │ ├── vending.json │ │ ├── video_calls.json │ │ ├── visibility.json │ │ ├── volcano │ │ │ ├── status.json │ │ │ └── type.json │ │ ├── voltage.json │ │ ├── voltage │ │ │ ├── primary.json │ │ │ ├── secondary.json │ │ │ └── tertiary.json │ │ ├── voltage_electrified.json │ │ ├── wall.json │ │ ├── waste.json │ │ ├── water.json │ │ ├── water_point.json │ │ ├── water_source.json │ │ ├── water_volume.json │ │ ├── waterway.json │ │ ├── website.json │ │ ├── wetland.json │ │ ├── wheelchair.json │ │ ├── wholesale.json │ │ ├── width.json │ │ ├── wikidata.json │ │ ├── wikimedia_commons.json │ │ ├── wikipedia.json │ │ ├── windings.json │ │ └── windings │ │ │ └── configuration.json │ ├── groups.json │ ├── presets │ │ ├── _aerialway.json │ │ ├── _aeroway.json │ │ ├── _amenity.json │ │ ├── _attraction.json │ │ ├── _boundary.json │ │ ├── _building_point.json │ │ ├── _embankment.json │ │ ├── _emergency.json │ │ ├── _ford_line.json │ │ ├── _highway.json │ │ ├── _indoor.json │ │ ├── _landuse.json │ │ ├── _leisure.json │ │ ├── _man_made.json │ │ ├── _natural.json │ │ ├── _place.json │ │ ├── _playground.json │ │ ├── _power.json │ │ ├── _railway.json │ │ ├── _seamark.json │ │ ├── _tourism.json │ │ ├── _waterway.json │ │ ├── addr │ │ │ └── _interpolation.json │ │ ├── address.json │ │ ├── advertising │ │ │ ├── billboard.json │ │ │ ├── board.json │ │ │ ├── column.json │ │ │ ├── poster_box.json │ │ │ └── totem.json │ │ ├── aerialway │ │ │ ├── cable_car.json │ │ │ ├── chair_lift.json │ │ │ ├── drag_lift.json │ │ │ ├── gondola.json │ │ │ ├── goods.json │ │ │ ├── j-bar.json │ │ │ ├── magic_carpet.json │ │ │ ├── mixed_lift.json │ │ │ ├── platter.json │ │ │ ├── pylon.json │ │ │ ├── rope_tow.json │ │ │ ├── t-bar.json │ │ │ └── zip_line.json │ │ ├── aeroway │ │ │ ├── aerodrome.json │ │ │ ├── apron.json │ │ │ ├── gate.json │ │ │ ├── hangar.json │ │ │ ├── helipad.json │ │ │ ├── holding_position.json │ │ │ ├── jet_bridge.json │ │ │ ├── parking_position.json │ │ │ ├── runway.json │ │ │ ├── spaceport.json │ │ │ ├── taxiway.json │ │ │ ├── terminal.json │ │ │ └── windsock.json │ │ ├── allotments │ │ │ └── plot.json │ │ ├── amenity │ │ │ ├── _bus_station.json │ │ │ ├── _coworking_space.json │ │ │ ├── _embassy.json │ │ │ ├── _ferry_terminal.json │ │ │ ├── _nursing_home.json │ │ │ ├── _recycling.json │ │ │ ├── _register_office.json │ │ │ ├── _scrapyard.json │ │ │ ├── _swimming_pool.json │ │ │ ├── animal_boarding.json │ │ │ ├── animal_breeding.json │ │ │ ├── animal_shelter.json │ │ │ ├── arts_centre.json │ │ │ ├── atm.json │ │ │ ├── bank.json │ │ │ ├── bar.json │ │ │ ├── bar │ │ │ │ └── lgbtq.json │ │ │ ├── bbq.json │ │ │ ├── bench.json │ │ │ ├── bicycle_parking.json │ │ │ ├── bicycle_parking │ │ │ │ ├── building.json │ │ │ │ ├── lockers.json │ │ │ │ └── shed.json │ │ │ ├── bicycle_rental.json │ │ │ ├── bicycle_repair_station.json │ │ │ ├── biergarten.json │ │ │ ├── boat_rental.json │ │ │ ├── bureau_de_change.json │ │ │ ├── cafe.json │ │ │ ├── car_pooling.json │ │ │ ├── car_rental.json │ │ │ ├── car_sharing.json │ │ │ ├── car_wash.json │ │ │ ├── casino.json │ │ │ ├── charging_station.json │ │ │ ├── childcare.json │ │ │ ├── cinema.json │ │ │ ├── clinic.json │ │ │ ├── clinic │ │ │ │ ├── abortion.json │ │ │ │ └── fertility.json │ │ │ ├── clock.json │ │ │ ├── clock │ │ │ │ └── sundial.json │ │ │ ├── college.json │ │ │ ├── community_centre.json │ │ │ ├── community_centre │ │ │ │ └── lgbtq.json │ │ │ ├── compressed_air.json │ │ │ ├── conference_centre.json │ │ │ ├── courthouse.json │ │ │ ├── crematorium.json │ │ │ ├── dentist.json │ │ │ ├── dive_centre.json │ │ │ ├── doctors.json │ │ │ ├── dojo.json │ │ │ ├── dressing_room.json │ │ │ ├── drinking_water.json │ │ │ ├── driving_school.json │ │ │ ├── events_venue.json │ │ │ ├── exhibition_centre.json │ │ │ ├── fast_food.json │ │ │ ├── fast_food │ │ │ │ ├── _ice_cream.json │ │ │ │ ├── burger.json │ │ │ │ ├── chicken.json │ │ │ │ ├── donut.json │ │ │ │ ├── fish_and_chips.json │ │ │ │ ├── hot_dog.json │ │ │ │ ├── kebab.json │ │ │ │ ├── mexican.json │ │ │ │ ├── pizza.json │ │ │ │ └── sandwich.json │ │ │ ├── fire_station.json │ │ │ ├── food_court.json │ │ │ ├── fountain.json │ │ │ ├── fuel.json │ │ │ ├── gambling.json │ │ │ ├── grave_yard.json │ │ │ ├── grit_bin.json │ │ │ ├── hospital.json │ │ │ ├── hunting_stand.json │ │ │ ├── ice_cream.json │ │ │ ├── internet_cafe.json │ │ │ ├── karaoke_box.json │ │ │ ├── kindergarten.json │ │ │ ├── kneipp_water_cure.json │ │ │ ├── language_school.json │ │ │ ├── lavoir.json │ │ │ ├── letter_box.json │ │ │ ├── library.json │ │ │ ├── loading_dock.json │ │ │ ├── love_hotel.json │ │ │ ├── marketplace.json │ │ │ ├── monastery.json │ │ │ ├── money_transfer.json │ │ │ ├── motorcycle_parking.json │ │ │ ├── music_school.json │ │ │ ├── nightclub.json │ │ │ ├── nightclub │ │ │ │ └── lgbtq.json │ │ │ ├── parking.json │ │ │ ├── parking │ │ │ │ ├── multi-storey.json │ │ │ │ ├── park_ride.json │ │ │ │ └── underground.json │ │ │ ├── parking_entrance.json │ │ │ ├── parking_space.json │ │ │ ├── payment_centre.json │ │ │ ├── payment_terminal.json │ │ │ ├── pharmacy.json │ │ │ ├── photo_booth.json │ │ │ ├── place_of_worship.json │ │ │ ├── place_of_worship │ │ │ │ ├── buddhist.json │ │ │ │ ├── christian.json │ │ │ │ ├── christian │ │ │ │ │ ├── jehovahs_witness.json │ │ │ │ │ ├── la_luz_del_mundo.json │ │ │ │ │ └── quaker.json │ │ │ │ ├── hindu.json │ │ │ │ ├── jewish.json │ │ │ │ ├── muslim.json │ │ │ │ ├── shinto.json │ │ │ │ ├── sikh.json │ │ │ │ └── taoist.json │ │ │ ├── planetarium.json │ │ │ ├── police.json │ │ │ ├── polling_station.json │ │ │ ├── post_box.json │ │ │ ├── post_depot.json │ │ │ ├── post_office.json │ │ │ ├── prep_school.json │ │ │ ├── prison.json │ │ │ ├── pub.json │ │ │ ├── pub │ │ │ │ ├── lgbtq.json │ │ │ │ └── microbrewery.json │ │ │ ├── public_bath.json │ │ │ ├── public_bookcase.json │ │ │ ├── ranger_station.json │ │ │ ├── recycling │ │ │ │ └── container │ │ │ │ │ ├── electrical_items.json │ │ │ │ │ └── green_waste.json │ │ │ ├── recycling_centre.json │ │ │ ├── recycling_container.json │ │ │ ├── research_institute.json │ │ │ ├── restaurant.json │ │ │ ├── restaurant │ │ │ │ ├── american.json │ │ │ │ ├── asian.json │ │ │ │ ├── chinese.json │ │ │ │ ├── french.json │ │ │ │ ├── german.json │ │ │ │ ├── greek.json │ │ │ │ ├── indian.json │ │ │ │ ├── italian.json │ │ │ │ ├── japanese.json │ │ │ │ ├── mexican.json │ │ │ │ ├── noodle.json │ │ │ │ ├── pizza.json │ │ │ │ ├── seafood.json │ │ │ │ ├── steakhouse.json │ │ │ │ ├── sushi.json │ │ │ │ ├── thai.json │ │ │ │ ├── turkish.json │ │ │ │ └── vietnamese.json │ │ │ ├── sanitary_dump_station.json │ │ │ ├── school.json │ │ │ ├── shelter.json │ │ │ ├── shelter │ │ │ │ ├── gazebo.json │ │ │ │ ├── lean_to.json │ │ │ │ ├── picnic_shelter.json │ │ │ │ └── public_transport.json │ │ │ ├── shower.json │ │ │ ├── smoking_area.json │ │ │ ├── social_centre.json │ │ │ ├── social_facility.json │ │ │ ├── social_facility │ │ │ │ ├── ambulatory_care.json │ │ │ │ ├── food_bank.json │ │ │ │ ├── group_home.json │ │ │ │ ├── homeless_shelter.json │ │ │ │ └── nursing_home.json │ │ │ ├── studio.json │ │ │ ├── studio │ │ │ │ ├── audio.json │ │ │ │ ├── radio.json │ │ │ │ ├── television.json │ │ │ │ └── video.json │ │ │ ├── taxi.json │ │ │ ├── telephone.json │ │ │ ├── theatre.json │ │ │ ├── theatre │ │ │ │ └── type │ │ │ │ │ └── amphi.json │ │ │ ├── toilets.json │ │ │ ├── toilets │ │ │ │ └── disposal │ │ │ │ │ ├── flush.json │ │ │ │ │ └── pitlatrine.json │ │ │ ├── townhall.json │ │ │ ├── townhall │ │ │ │ └── city.json │ │ │ ├── toy_library.json │ │ │ ├── university.json │ │ │ ├── vehicle_inspection.json │ │ │ ├── vending_machine.json │ │ │ ├── vending_machine │ │ │ │ ├── bottle_return.json │ │ │ │ ├── bread.json │ │ │ │ ├── cigarettes.json │ │ │ │ ├── coffee.json │ │ │ │ ├── condoms.json │ │ │ │ ├── drinks.json │ │ │ │ ├── eggs.json │ │ │ │ ├── electronics.json │ │ │ │ ├── elongated_coin.json │ │ │ │ ├── excrement_bags.json │ │ │ │ ├── feminine_hygiene.json │ │ │ │ ├── food.json │ │ │ │ ├── fuel.json │ │ │ │ ├── ice_cream.json │ │ │ │ ├── ice_cubes.json │ │ │ │ ├── newspapers.json │ │ │ │ ├── parcel_pickup.json │ │ │ │ ├── parcel_pickup_dropoff.json │ │ │ │ ├── parking_tickets.json │ │ │ │ ├── public_transport_tickets.json │ │ │ │ ├── stamps.json │ │ │ │ └── sweets.json │ │ │ ├── veterinary.json │ │ │ ├── waste │ │ │ │ └── dog_excrement.json │ │ │ ├── waste_basket.json │ │ │ ├── waste_disposal.json │ │ │ ├── waste_transfer_station.json │ │ │ ├── water_point.json │ │ │ ├── watering_place.json │ │ │ └── weighbridge.json │ │ ├── area.json │ │ ├── area │ │ │ └── highway.json │ │ ├── attraction │ │ │ ├── amusement_ride.json │ │ │ ├── animal.json │ │ │ ├── big_wheel.json │ │ │ ├── bumper_car.json │ │ │ ├── bungee_jumping.json │ │ │ ├── carousel.json │ │ │ ├── dark_ride.json │ │ │ ├── drop_tower.json │ │ │ ├── kiddie_ride.json │ │ │ ├── log_flume.json │ │ │ ├── maze.json │ │ │ ├── pirate_ship.json │ │ │ ├── river_rafting.json │ │ │ ├── roller_coaster.json │ │ │ ├── summer_toboggan.json │ │ │ ├── swing_carousel.json │ │ │ ├── train.json │ │ │ └── water_slide.json │ │ ├── barrier.json │ │ ├── barrier │ │ │ ├── _entrance.json │ │ │ ├── block.json │ │ │ ├── bollard.json │ │ │ ├── bollard_line.json │ │ │ ├── border_control.json │ │ │ ├── cattle_grid.json │ │ │ ├── chain.json │ │ │ ├── city_wall.json │ │ │ ├── cycle_barrier.json │ │ │ ├── ditch.json │ │ │ ├── fence.json │ │ │ ├── fence │ │ │ │ └── railing.json │ │ │ ├── gate.json │ │ │ ├── guard_rail.json │ │ │ ├── hedge.json │ │ │ ├── height_restrictor.json │ │ │ ├── kerb.json │ │ │ ├── kerb │ │ │ │ ├── flush.json │ │ │ │ ├── lowered.json │ │ │ │ ├── raised.json │ │ │ │ └── rolled.json │ │ │ ├── kissing_gate.json │ │ │ ├── lift_gate.json │ │ │ ├── retaining_wall.json │ │ │ ├── sally_port.json │ │ │ ├── spikes.json │ │ │ ├── stile.json │ │ │ ├── swing_gate.json │ │ │ ├── toll_booth.json │ │ │ ├── turnstile.json │ │ │ ├── wall.json │ │ │ └── wall │ │ │ │ └── noise_barrier.json │ │ ├── boundary │ │ │ └── administrative.json │ │ ├── bridge │ │ │ ├── support.json │ │ │ └── support │ │ │ │ └── pier.json │ │ ├── building.json │ │ ├── building │ │ │ ├── _bunker.json │ │ │ ├── _entrance.json │ │ │ ├── _train_station.json │ │ │ ├── apartments.json │ │ │ ├── barn.json │ │ │ ├── boathouse.json │ │ │ ├── bungalow.json │ │ │ ├── cabin.json │ │ │ ├── carport.json │ │ │ ├── cathedral.json │ │ │ ├── chapel.json │ │ │ ├── church.json │ │ │ ├── civic.json │ │ │ ├── college.json │ │ │ ├── commercial.json │ │ │ ├── construction.json │ │ │ ├── detached.json │ │ │ ├── dormitory.json │ │ │ ├── farm.json │ │ │ ├── farm_auxiliary.json │ │ │ ├── garage.json │ │ │ ├── garages.json │ │ │ ├── grandstand.json │ │ │ ├── greenhouse.json │ │ │ ├── hangar.json │ │ │ ├── hospital.json │ │ │ ├── hotel.json │ │ │ ├── house.json │ │ │ ├── houseboat.json │ │ │ ├── hut.json │ │ │ ├── industrial.json │ │ │ ├── kindergarten.json │ │ │ ├── mosque.json │ │ │ ├── pavilion.json │ │ │ ├── public.json │ │ │ ├── residential.json │ │ │ ├── retail.json │ │ │ ├── roof.json │ │ │ ├── ruins.json │ │ │ ├── school.json │ │ │ ├── semidetached_house.json │ │ │ ├── service.json │ │ │ ├── shed.json │ │ │ ├── stable.json │ │ │ ├── stadium.json │ │ │ ├── static_caravan.json │ │ │ ├── temple.json │ │ │ ├── terrace.json │ │ │ ├── transportation.json │ │ │ ├── university.json │ │ │ └── warehouse.json │ │ ├── building_part.json │ │ ├── club.json │ │ ├── club │ │ │ └── sport.json │ │ ├── craft.json │ │ ├── craft │ │ │ ├── _locksmith.json │ │ │ ├── _tailor.json │ │ │ ├── agricultural_engines.json │ │ │ ├── basket_maker.json │ │ │ ├── beekeeper.json │ │ │ ├── blacksmith.json │ │ │ ├── boatbuilder.json │ │ │ ├── bookbinder.json │ │ │ ├── brewery.json │ │ │ ├── carpenter.json │ │ │ ├── carpet_layer.json │ │ │ ├── caterer.json │ │ │ ├── chimney_sweeper.json │ │ │ ├── cleaning.json │ │ │ ├── clockmaker.json │ │ │ ├── confectionery.json │ │ │ ├── distillery.json │ │ │ ├── dressmaker.json │ │ │ ├── electrician.json │ │ │ ├── electronics_repair.json │ │ │ ├── floorer.json │ │ │ ├── gardener.json │ │ │ ├── glaziery.json │ │ │ ├── handicraft.json │ │ │ ├── hvac.json │ │ │ ├── insulator.json │ │ │ ├── joiner.json │ │ │ ├── key_cutter.json │ │ │ ├── metal_construction.json │ │ │ ├── painter.json │ │ │ ├── parquet_layer.json │ │ │ ├── photographer.json │ │ │ ├── photographic_laboratory.json │ │ │ ├── plasterer.json │ │ │ ├── plumber.json │ │ │ ├── pottery.json │ │ │ ├── rigger.json │ │ │ ├── roofer.json │ │ │ ├── saddler.json │ │ │ ├── sailmaker.json │ │ │ ├── sawmill.json │ │ │ ├── scaffolder.json │ │ │ ├── sculptor.json │ │ │ ├── shoemaker.json │ │ │ ├── signmaker.json │ │ │ ├── stonemason.json │ │ │ ├── tiler.json │ │ │ ├── tinsmith.json │ │ │ ├── upholsterer.json │ │ │ ├── watchmaker.json │ │ │ ├── window_construction.json │ │ │ └── winery.json │ │ ├── cycleway │ │ │ └── asl.json │ │ ├── demolished │ │ │ └── _building.json │ │ ├── disused │ │ │ └── _railway.json │ │ ├── emergency │ │ │ ├── _designated.json │ │ │ ├── _destination.json │ │ │ ├── _no.json │ │ │ ├── _official.json │ │ │ ├── _private.json │ │ │ ├── _yes.json │ │ │ ├── ambulance_station.json │ │ │ ├── defibrillator.json │ │ │ ├── fire_alarm.json │ │ │ ├── fire_extinguisher.json │ │ │ ├── fire_hose.json │ │ │ ├── fire_hydrant.json │ │ │ ├── first_aid_kit.json │ │ │ ├── landing_site.json │ │ │ ├── life_ring.json │ │ │ ├── lifeguard.json │ │ │ ├── mountain_rescue.json │ │ │ ├── phone.json │ │ │ ├── siren.json │ │ │ └── water_tank.json │ │ ├── entrance.json │ │ ├── entrance │ │ │ └── emergency.json │ │ ├── ford.json │ │ ├── golf │ │ │ ├── bunker.json │ │ │ ├── cartpath.json │ │ │ ├── driving_range.json │ │ │ ├── fairway.json │ │ │ ├── green.json │ │ │ ├── hole.json │ │ │ ├── lateral_water_hazard.json │ │ │ ├── path.json │ │ │ ├── rough.json │ │ │ ├── tee.json │ │ │ └── water_hazard.json │ │ ├── healthcare.json │ │ ├── healthcare │ │ │ ├── alternative.json │ │ │ ├── alternative │ │ │ │ └── chiropractic.json │ │ │ ├── audiologist.json │ │ │ ├── birthing_center.json │ │ │ ├── blood_donation.json │ │ │ ├── counselling.json │ │ │ ├── hospice.json │ │ │ ├── laboratory.json │ │ │ ├── midwife.json │ │ │ ├── occupational_therapist.json │ │ │ ├── optometrist.json │ │ │ ├── physiotherapist.json │ │ │ ├── podiatrist.json │ │ │ ├── psychotherapist.json │ │ │ ├── rehabilitation.json │ │ │ └── speech_therapist.json │ │ ├── highway │ │ │ ├── _bus_stop.json │ │ │ ├── _crossing.json │ │ │ ├── bridleway.json │ │ │ ├── bus_guideway.json │ │ │ ├── construction.json │ │ │ ├── corridor.json │ │ │ ├── crossing │ │ │ │ ├── _zebra-raised.json │ │ │ │ ├── _zebra.json │ │ │ │ ├── marked-raised.json │ │ │ │ ├── marked.json │ │ │ │ ├── unmarked-raised.json │ │ │ │ └── unmarked.json │ │ │ ├── cycleway.json │ │ │ ├── cycleway │ │ │ │ ├── _crossing.json │ │ │ │ ├── bicycle_foot.json │ │ │ │ └── crossing │ │ │ │ │ ├── bicycle_foot.json │ │ │ │ │ ├── marked.json │ │ │ │ │ └── unmarked.json │ │ │ ├── elevator.json │ │ │ ├── emergency_bay.json │ │ │ ├── footway.json │ │ │ ├── footway │ │ │ │ ├── _crossing.json │ │ │ │ ├── _zebra-raised.json │ │ │ │ ├── _zebra.json │ │ │ │ ├── access_aisle.json │ │ │ │ ├── conveying.json │ │ │ │ ├── marked-raised.json │ │ │ │ ├── marked.json │ │ │ │ ├── sidewalk.json │ │ │ │ ├── unmarked-raised.json │ │ │ │ └── unmarked.json │ │ │ ├── give_way.json │ │ │ ├── living_street.json │ │ │ ├── milestone.json │ │ │ ├── mini_roundabout.json │ │ │ ├── motorway.json │ │ │ ├── motorway_junction.json │ │ │ ├── motorway_link.json │ │ │ ├── passing_place.json │ │ │ ├── path.json │ │ │ ├── path │ │ │ │ └── informal.json │ │ │ ├── pedestrian_area.json │ │ │ ├── pedestrian_line.json │ │ │ ├── primary.json │ │ │ ├── primary_link.json │ │ │ ├── raceway.json │ │ │ ├── raceway │ │ │ │ ├── karting.json │ │ │ │ └── motocross.json │ │ │ ├── residential.json │ │ │ ├── rest_area.json │ │ │ ├── road.json │ │ │ ├── secondary.json │ │ │ ├── secondary_link.json │ │ │ ├── service.json │ │ │ ├── service │ │ │ │ ├── alley.json │ │ │ │ ├── drive-through.json │ │ │ │ ├── driveway.json │ │ │ │ ├── emergency_access.json │ │ │ │ └── parking_aisle.json │ │ │ ├── services.json │ │ │ ├── speed_camera.json │ │ │ ├── steps.json │ │ │ ├── steps │ │ │ │ └── conveying.json │ │ │ ├── stop.json │ │ │ ├── street_lamp.json │ │ │ ├── tertiary.json │ │ │ ├── tertiary_link.json │ │ │ ├── track.json │ │ │ ├── traffic_mirror.json │ │ │ ├── traffic_signals.json │ │ │ ├── trailhead.json │ │ │ ├── trunk.json │ │ │ ├── trunk_link.json │ │ │ ├── turning_circle.json │ │ │ ├── turning_loop.json │ │ │ └── unclassified.json │ │ ├── historic.json │ │ ├── historic │ │ │ ├── archaeological_site.json │ │ │ ├── boundary_stone.json │ │ │ ├── building.json │ │ │ ├── castle.json │ │ │ ├── castle │ │ │ │ ├── fortress.json │ │ │ │ ├── palace.json │ │ │ │ └── stately.json │ │ │ ├── city_gate.json │ │ │ ├── fort.json │ │ │ ├── manor.json │ │ │ ├── memorial.json │ │ │ ├── memorial │ │ │ │ └── plaque.json │ │ │ ├── monument.json │ │ │ ├── pillory.json │ │ │ ├── ruins.json │ │ │ ├── tomb.json │ │ │ ├── wayside_cross.json │ │ │ ├── wayside_shrine.json │ │ │ └── wreck.json │ │ ├── indoor │ │ │ ├── _corridor_line.json │ │ │ ├── area.json │ │ │ ├── corridor.json │ │ │ ├── door.json │ │ │ ├── elevator.json │ │ │ ├── room.json │ │ │ ├── stairs.json │ │ │ └── wall.json │ │ ├── internet_access │ │ │ └── wlan.json │ │ ├── junction.json │ │ ├── landuse │ │ │ ├── _basin.json │ │ │ ├── _churchyard.json │ │ │ ├── _farm.json │ │ │ ├── _pond.json │ │ │ ├── _reservoir.json │ │ │ ├── allotments.json │ │ │ ├── aquaculture.json │ │ │ ├── brownfield.json │ │ │ ├── cemetery.json │ │ │ ├── commercial.json │ │ │ ├── construction.json │ │ │ ├── farmland.json │ │ │ ├── farmyard.json │ │ │ ├── flowerbed.json │ │ │ ├── forest.json │ │ │ ├── garages.json │ │ │ ├── grass.json │ │ │ ├── greenfield.json │ │ │ ├── greenhouse_horticulture.json │ │ │ ├── harbour.json │ │ │ ├── industrial.json │ │ │ ├── industrial │ │ │ │ ├── scrap_yard.json │ │ │ │ └── slaughterhouse.json │ │ │ ├── landfill.json │ │ │ ├── meadow.json │ │ │ ├── military.json │ │ │ ├── military │ │ │ │ ├── airfield.json │ │ │ │ ├── barracks.json │ │ │ │ ├── danger_area.json │ │ │ │ ├── naval_base.json │ │ │ │ ├── obstacle_course.json │ │ │ │ ├── range.json │ │ │ │ └── training_area.json │ │ │ ├── orchard.json │ │ │ ├── plant_nursery.json │ │ │ ├── quarry.json │ │ │ ├── railway.json │ │ │ ├── recreation_ground.json │ │ │ ├── religious.json │ │ │ ├── residential.json │ │ │ ├── residential │ │ │ │ └── apartments.json │ │ │ ├── retail.json │ │ │ ├── vineyard.json │ │ │ └── winter_sports.json │ │ ├── leisure │ │ │ ├── adult_gaming_centre.json │ │ │ ├── amusement_arcade.json │ │ │ ├── bandstand.json │ │ │ ├── beach_resort.json │ │ │ ├── bird_hide.json │ │ │ ├── bleachers.json │ │ │ ├── bowling_alley.json │ │ │ ├── common.json │ │ │ ├── dance.json │ │ │ ├── dancing_school.json │ │ │ ├── disc_golf_course.json │ │ │ ├── dog_park.json │ │ │ ├── escape_game.json │ │ │ ├── firepit.json │ │ │ ├── fishing.json │ │ │ ├── fitness_centre.json │ │ │ ├── fitness_centre │ │ │ │ └── yoga.json │ │ │ ├── fitness_station.json │ │ │ ├── fitness_station │ │ │ │ ├── balance_beam.json │ │ │ │ ├── box.json │ │ │ │ ├── horizontal_bar.json │ │ │ │ ├── horizontal_ladder.json │ │ │ │ ├── hyperextension.json │ │ │ │ ├── parallel_bars.json │ │ │ │ ├── push-up.json │ │ │ │ ├── rings.json │ │ │ │ ├── sign.json │ │ │ │ ├── sit-up.json │ │ │ │ └── stairs.json │ │ │ ├── garden.json │ │ │ ├── golf_course.json │ │ │ ├── hackerspace.json │ │ │ ├── horse_riding.json │ │ │ ├── ice_rink.json │ │ │ ├── marina.json │ │ │ ├── miniature_golf.json │ │ │ ├── nature_reserve.json │ │ │ ├── outdoor_seating.json │ │ │ ├── park.json │ │ │ ├── picnic_table.json │ │ │ ├── picnic_table │ │ │ │ └── chess.json │ │ │ ├── pitch.json │ │ │ ├── pitch │ │ │ │ ├── american_football.json │ │ │ │ ├── australian_football.json │ │ │ │ ├── badminton.json │ │ │ │ ├── baseball.json │ │ │ │ ├── basketball.json │ │ │ │ ├── beachvolleyball.json │ │ │ │ ├── boules.json │ │ │ │ ├── bowls.json │ │ │ │ ├── chess.json │ │ │ │ ├── cricket.json │ │ │ │ ├── equestrian.json │ │ │ │ ├── field_hockey.json │ │ │ │ ├── horseshoes.json │ │ │ │ ├── netball.json │ │ │ │ ├── rugby_league.json │ │ │ │ ├── rugby_union.json │ │ │ │ ├── shuffleboard.json │ │ │ │ ├── skateboard.json │ │ │ │ ├── soccer.json │ │ │ │ ├── softball.json │ │ │ │ ├── table_tennis.json │ │ │ │ ├── tennis.json │ │ │ │ └── volleyball.json │ │ │ ├── playground.json │ │ │ ├── resort.json │ │ │ ├── sauna.json │ │ │ ├── slipway.json │ │ │ ├── slipway_point.json │ │ │ ├── sports_centre.json │ │ │ ├── sports_centre │ │ │ │ ├── climbing.json │ │ │ │ └── swimming.json │ │ │ ├── stadium.json │ │ │ ├── swimming_area.json │ │ │ ├── swimming_pool.json │ │ │ ├── track.json │ │ │ ├── track │ │ │ │ ├── cycling.json │ │ │ │ ├── cycling_point.json │ │ │ │ ├── horse_racing.json │ │ │ │ ├── horse_racing_point.json │ │ │ │ ├── running.json │ │ │ │ └── running_point.json │ │ │ └── water_park.json │ │ ├── line.json │ │ ├── man_made │ │ │ ├── adit.json │ │ │ ├── antenna.json │ │ │ ├── beacon.json │ │ │ ├── beehive.json │ │ │ ├── breakwater.json │ │ │ ├── bridge.json │ │ │ ├── bunker_silo.json │ │ │ ├── cairn.json │ │ │ ├── chimney.json │ │ │ ├── clearcut.json │ │ │ ├── crane.json │ │ │ ├── cross.json │ │ │ ├── cutline.json │ │ │ ├── dyke.json │ │ │ ├── embankment.json │ │ │ ├── flagpole.json │ │ │ ├── gasometer.json │ │ │ ├── groyne.json │ │ │ ├── lighthouse.json │ │ │ ├── manhole.json │ │ │ ├── manhole │ │ │ │ ├── drain.json │ │ │ │ ├── gas.json │ │ │ │ ├── power.json │ │ │ │ ├── sewer.json │ │ │ │ ├── telecom.json │ │ │ │ └── water.json │ │ │ ├── mast.json │ │ │ ├── mast │ │ │ │ ├── communication.json │ │ │ │ └── communication │ │ │ │ │ ├── mobile_phone.json │ │ │ │ │ ├── radio.json │ │ │ │ │ └── television.json │ │ │ ├── mineshaft.json │ │ │ ├── monitoring_station.json │ │ │ ├── obelisk.json │ │ │ ├── observatory.json │ │ │ ├── petroleum_well.json │ │ │ ├── pier.json │ │ │ ├── pier │ │ │ │ └── floating.json │ │ │ ├── pipeline.json │ │ │ ├── pipeline │ │ │ │ ├── underground.json │ │ │ │ └── valve.json │ │ │ ├── pumping_station.json │ │ │ ├── silo.json │ │ │ ├── storage_tank.json │ │ │ ├── storage_tank │ │ │ │ └── water.json │ │ │ ├── street_cabinet.json │ │ │ ├── surveillance.json │ │ │ ├── surveillance │ │ │ │ └── camera.json │ │ │ ├── survey_point.json │ │ │ ├── torii.json │ │ │ ├── tower.json │ │ │ ├── tower │ │ │ │ ├── bell_tower.json │ │ │ │ ├── communication.json │ │ │ │ ├── defensive.json │ │ │ │ ├── minaret.json │ │ │ │ └── observation.json │ │ │ ├── tunnel.json │ │ │ ├── utility_pole.json │ │ │ ├── wastewater_plant.json │ │ │ ├── water_tap.json │ │ │ ├── water_tower.json │ │ │ ├── water_well.json │ │ │ ├── water_works.json │ │ │ ├── watermill.json │ │ │ ├── windmill.json │ │ │ └── works.json │ │ ├── marker.json │ │ ├── marker │ │ │ ├── utility.json │ │ │ └── utility │ │ │ │ └── power.json │ │ ├── military │ │ │ ├── bunker.json │ │ │ ├── checkpoint.json │ │ │ ├── nuclear_explosion_site.json │ │ │ ├── office.json │ │ │ └── trench.json │ │ ├── natural │ │ │ ├── bare_rock.json │ │ │ ├── bay.json │ │ │ ├── beach.json │ │ │ ├── cape.json │ │ │ ├── cave_entrance.json │ │ │ ├── cliff.json │ │ │ ├── coastline.json │ │ │ ├── fell.json │ │ │ ├── geyser.json │ │ │ ├── glacier.json │ │ │ ├── grassland.json │ │ │ ├── heath.json │ │ │ ├── mud.json │ │ │ ├── peak.json │ │ │ ├── reef.json │ │ │ ├── ridge.json │ │ │ ├── rock.json │ │ │ ├── saddle.json │ │ │ ├── sand.json │ │ │ ├── scree.json │ │ │ ├── scrub.json │ │ │ ├── shingle.json │ │ │ ├── spring.json │ │ │ ├── stone.json │ │ │ ├── tree.json │ │ │ ├── tree_row.json │ │ │ ├── valley.json │ │ │ ├── volcano.json │ │ │ ├── water.json │ │ │ ├── water │ │ │ │ ├── basin.json │ │ │ │ ├── canal.json │ │ │ │ ├── lake.json │ │ │ │ ├── moat.json │ │ │ │ ├── pond.json │ │ │ │ ├── reservoir.json │ │ │ │ ├── river.json │ │ │ │ ├── stream.json │ │ │ │ └── wastewater.json │ │ │ ├── wetland.json │ │ │ └── wood.json │ │ ├── network │ │ │ └── type │ │ │ │ └── node_network.json │ │ ├── noexit │ │ │ └── yes.json │ │ ├── office.json │ │ ├── office │ │ │ ├── _administrative.json │ │ │ ├── _physician.json │ │ │ ├── _travel_agent.json │ │ │ ├── accountant.json │ │ │ ├── adoption_agency.json │ │ │ ├── advertising_agency.json │ │ │ ├── architect.json │ │ │ ├── association.json │ │ │ ├── bail_bond_agent.json │ │ │ ├── charity.json │ │ │ ├── company.json │ │ │ ├── consulting.json │ │ │ ├── coworking.json │ │ │ ├── diplomatic.json │ │ │ ├── diplomatic │ │ │ │ ├── consulate.json │ │ │ │ ├── embassy.json │ │ │ │ └── liaison.json │ │ │ ├── educational_institution.json │ │ │ ├── employment_agency.json │ │ │ ├── energy_supplier.json │ │ │ ├── estate_agent.json │ │ │ ├── financial.json │ │ │ ├── financial_advisor.json │ │ │ ├── forestry.json │ │ │ ├── foundation.json │ │ │ ├── government.json │ │ │ ├── government │ │ │ │ ├── prosecutor.json │ │ │ │ ├── register_office.json │ │ │ │ └── tax.json │ │ │ ├── guide.json │ │ │ ├── insurance.json │ │ │ ├── it.json │ │ │ ├── lawyer.json │ │ │ ├── lawyer │ │ │ │ └── _notary.json │ │ │ ├── moving_company.json │ │ │ ├── newspaper.json │ │ │ ├── ngo.json │ │ │ ├── notary.json │ │ │ ├── political_party.json │ │ │ ├── private_investigator.json │ │ │ ├── quango.json │ │ │ ├── religion.json │ │ │ ├── research.json │ │ │ ├── surveyor.json │ │ │ ├── tax_advisor.json │ │ │ ├── telecommunication.json │ │ │ ├── therapist.json │ │ │ └── water_utility.json │ │ ├── piste │ │ │ ├── downhill.json │ │ │ ├── downhill │ │ │ │ └── halfpipe.json │ │ │ ├── hike.json │ │ │ ├── ice_skate.json │ │ │ ├── nordic.json │ │ │ ├── piste.json │ │ │ ├── skitour.json │ │ │ ├── sled.json │ │ │ └── sleigh.json │ │ ├── place │ │ │ ├── _farm.json │ │ │ ├── city.json │ │ │ ├── city_block.json │ │ │ ├── hamlet.json │ │ │ ├── island.json │ │ │ ├── islet.json │ │ │ ├── isolated_dwelling.json │ │ │ ├── locality.json │ │ │ ├── neighbourhood.json │ │ │ ├── plot.json │ │ │ ├── quarter.json │ │ │ ├── square.json │ │ │ ├── suburb.json │ │ │ ├── town.json │ │ │ └── village.json │ │ ├── playground │ │ │ ├── balance_beam.json │ │ │ ├── basket_spinner.json │ │ │ ├── basket_swing.json │ │ │ ├── climbing_frame.json │ │ │ ├── cushion.json │ │ │ ├── horizontal_bar.json │ │ │ ├── rocker.json │ │ │ ├── roundabout.json │ │ │ ├── sandpit.json │ │ │ ├── seesaw.json │ │ │ ├── slide.json │ │ │ ├── structure.json │ │ │ ├── swing.json │ │ │ └── zipwire.json │ │ ├── point.json │ │ ├── polling_station.json │ │ ├── power │ │ │ ├── cable │ │ │ │ └── underground.json │ │ │ ├── generator.json │ │ │ ├── generator │ │ │ │ ├── method │ │ │ │ │ └── photovoltaic.json │ │ │ │ └── source │ │ │ │ │ ├── hydro.json │ │ │ │ │ ├── nuclear.json │ │ │ │ │ └── wind.json │ │ │ ├── line.json │ │ │ ├── minor_line.json │ │ │ ├── plant.json │ │ │ ├── plant │ │ │ │ └── source │ │ │ │ │ ├── coal.json │ │ │ │ │ ├── gas.json │ │ │ │ │ ├── hydro.json │ │ │ │ │ ├── nuclear.json │ │ │ │ │ ├── solar.json │ │ │ │ │ └── wind.json │ │ │ ├── pole.json │ │ │ ├── substation.json │ │ │ ├── switch.json │ │ │ ├── tower.json │ │ │ └── transformer.json │ │ ├── public_transport │ │ │ ├── platform.json │ │ │ ├── platform │ │ │ │ ├── _aerialway_point.json │ │ │ │ ├── _ferry_point.json │ │ │ │ ├── _light_rail_point.json │ │ │ │ ├── _monorail_point.json │ │ │ │ ├── _subway_point.json │ │ │ │ ├── _train_point.json │ │ │ │ ├── aerialway.json │ │ │ │ ├── bus.json │ │ │ │ ├── bus_point.json │ │ │ │ ├── ferry.json │ │ │ │ ├── light_rail.json │ │ │ │ ├── monorail.json │ │ │ │ ├── subway.json │ │ │ │ ├── train.json │ │ │ │ ├── tram.json │ │ │ │ ├── tram_point.json │ │ │ │ ├── trolleybus.json │ │ │ │ └── trolleybus_point.json │ │ │ ├── platform_point.json │ │ │ ├── station.json │ │ │ ├── station_aerialway.json │ │ │ ├── station_bus.json │ │ │ ├── station_ferry.json │ │ │ ├── station_light_rail.json │ │ │ ├── station_monorail.json │ │ │ ├── station_subway.json │ │ │ ├── station_train.json │ │ │ ├── station_train_halt.json │ │ │ ├── station_tram.json │ │ │ ├── station_trolleybus.json │ │ │ ├── stop_area.json │ │ │ ├── stop_position.json │ │ │ ├── stop_position_aerialway.json │ │ │ ├── stop_position_bus.json │ │ │ ├── stop_position_ferry.json │ │ │ ├── stop_position_light_rail.json │ │ │ ├── stop_position_monorail.json │ │ │ ├── stop_position_subway.json │ │ │ ├── stop_position_train.json │ │ │ ├── stop_position_tram.json │ │ │ └── stop_position_trolleybus.json │ │ ├── railway │ │ │ ├── _halt.json │ │ │ ├── _platform.json │ │ │ ├── _station.json │ │ │ ├── _tram_stop.json │ │ │ ├── abandoned.json │ │ │ ├── buffer_stop.json │ │ │ ├── construction.json │ │ │ ├── crossing.json │ │ │ ├── derail.json │ │ │ ├── disused.json │ │ │ ├── funicular.json │ │ │ ├── level_crossing.json │ │ │ ├── light_rail.json │ │ │ ├── milestone.json │ │ │ ├── miniature.json │ │ │ ├── monorail.json │ │ │ ├── narrow_gauge.json │ │ │ ├── rail.json │ │ │ ├── rail │ │ │ │ └── highspeed.json │ │ │ ├── signal.json │ │ │ ├── subway.json │ │ │ ├── subway_entrance.json │ │ │ ├── switch.json │ │ │ ├── train_wash.json │ │ │ ├── tram.json │ │ │ └── yard.json │ │ ├── relation.json │ │ ├── route │ │ │ └── ferry.json │ │ ├── seamark │ │ │ ├── beacon_isolated_danger.json │ │ │ ├── beacon_lateral.json │ │ │ ├── buoy_lateral.json │ │ │ ├── buoy_lateral │ │ │ │ ├── green.json │ │ │ │ └── red.json │ │ │ └── mooring.json │ │ ├── shop.json │ │ ├── shop │ │ │ ├── _boutique.json │ │ │ ├── _fashion.json │ │ │ ├── _fishmonger.json │ │ │ ├── _furnace.json │ │ │ ├── _vacant.json │ │ │ ├── agrarian.json │ │ │ ├── alcohol.json │ │ │ ├── anime.json │ │ │ ├── antiques.json │ │ │ ├── appliance.json │ │ │ ├── art.json │ │ │ ├── baby_goods.json │ │ │ ├── bag.json │ │ │ ├── bakery.json │ │ │ ├── bathroom_furnishing.json │ │ │ ├── beauty.json │ │ │ ├── beauty │ │ │ │ ├── nails.json │ │ │ │ └── tanning.json │ │ │ ├── bed.json │ │ │ ├── beverages.json │ │ │ ├── bicycle.json │ │ │ ├── boat.json │ │ │ ├── bookmaker.json │ │ │ ├── books.json │ │ │ ├── brewing_supplies.json │ │ │ ├── butcher.json │ │ │ ├── camera.json │ │ │ ├── candles.json │ │ │ ├── cannabis.json │ │ │ ├── car.json │ │ │ ├── car │ │ │ │ └── second_hand.json │ │ │ ├── car_parts.json │ │ │ ├── car_repair.json │ │ │ ├── caravan.json │ │ │ ├── carpet.json │ │ │ ├── catalogue.json │ │ │ ├── charity.json │ │ │ ├── cheese.json │ │ │ ├── chemist.json │ │ │ ├── chocolate.json │ │ │ ├── clothes.json │ │ │ ├── clothes │ │ │ │ ├── second_hand.json │ │ │ │ ├── underwear.json │ │ │ │ └── wedding.json │ │ │ ├── coffee.json │ │ │ ├── computer.json │ │ │ ├── confectionery.json │ │ │ ├── convenience.json │ │ │ ├── copyshop.json │ │ │ ├── cosmetics.json │ │ │ ├── country_store.json │ │ │ ├── craft.json │ │ │ ├── curtain.json │ │ │ ├── dairy.json │ │ │ ├── deli.json │ │ │ ├── department_store.json │ │ │ ├── doityourself.json │ │ │ ├── doors.json │ │ │ ├── dry_cleaning.json │ │ │ ├── e-cigarette.json │ │ │ ├── electrical.json │ │ │ ├── electronics.json │ │ │ ├── erotic.json │ │ │ ├── erotic │ │ │ │ └── lgbtq.json │ │ │ ├── fabric.json │ │ │ ├── farm.json │ │ │ ├── fashion_accessories.json │ │ │ ├── fireplace.json │ │ │ ├── fishing.json │ │ │ ├── flooring.json │ │ │ ├── florist.json │ │ │ ├── frame.json │ │ │ ├── frozen_food.json │ │ │ ├── fuel.json │ │ │ ├── funeral_directors.json │ │ │ ├── furniture.json │ │ │ ├── games.json │ │ │ ├── garden_centre.json │ │ │ ├── gas.json │ │ │ ├── general.json │ │ │ ├── gift.json │ │ │ ├── greengrocer.json │ │ │ ├── hairdresser.json │ │ │ ├── hairdresser_supply.json │ │ │ ├── hardware.json │ │ │ ├── health_food.json │ │ │ ├── hearing_aids.json │ │ │ ├── herbalist.json │ │ │ ├── hifi.json │ │ │ ├── hobby.json │ │ │ ├── houseware.json │ │ │ ├── hunting.json │ │ │ ├── interior_decoration.json │ │ │ ├── jewelry.json │ │ │ ├── kiosk.json │ │ │ ├── kitchen.json │ │ │ ├── laundry.json │ │ │ ├── laundry │ │ │ │ └── self_service.json │ │ │ ├── leather.json │ │ │ ├── lighting.json │ │ │ ├── locksmith.json │ │ │ ├── lottery.json │ │ │ ├── mall.json │ │ │ ├── massage.json │ │ │ ├── medical_supply.json │ │ │ ├── military_surplus.json │ │ │ ├── mobile_phone.json │ │ │ ├── money_lender.json │ │ │ ├── motorcycle.json │ │ │ ├── motorcycle_repair.json │ │ │ ├── music.json │ │ │ ├── musical_instrument.json │ │ │ ├── newsagent.json │ │ │ ├── nutrition_supplements.json │ │ │ ├── optician.json │ │ │ ├── organic.json │ │ │ ├── outdoor.json │ │ │ ├── outpost.json │ │ │ ├── paint.json │ │ │ ├── party.json │ │ │ ├── pastry.json │ │ │ ├── pawnbroker.json │ │ │ ├── perfumery.json │ │ │ ├── pet.json │ │ │ ├── pet_grooming.json │ │ │ ├── photo.json │ │ │ ├── pottery.json │ │ │ ├── printer_ink.json │ │ │ ├── psychic.json │ │ │ ├── pyrotechnics.json │ │ │ ├── radiotechnics.json │ │ │ ├── religion.json │ │ │ ├── rental.json │ │ │ ├── scuba_diving.json │ │ │ ├── seafood.json │ │ │ ├── second_hand.json │ │ │ ├── sewing.json │ │ │ ├── shoes.json │ │ │ ├── spices.json │ │ │ ├── sports.json │ │ │ ├── stationery.json │ │ │ ├── storage_rental.json │ │ │ ├── supermarket.json │ │ │ ├── swimming_pool.json │ │ │ ├── tailor.json │ │ │ ├── tattoo.json │ │ │ ├── tea.json │ │ │ ├── telecommunication.json │ │ │ ├── ticket.json │ │ │ ├── tiles.json │ │ │ ├── tobacco.json │ │ │ ├── tool_hire.json │ │ │ ├── toys.json │ │ │ ├── trade.json │ │ │ ├── travel_agency.json │ │ │ ├── tyres.json │ │ │ ├── vacuum_cleaner.json │ │ │ ├── variety_store.json │ │ │ ├── video.json │ │ │ ├── video_games.json │ │ │ ├── watches.json │ │ │ ├── water.json │ │ │ ├── water_sports.json │ │ │ ├── weapons.json │ │ │ ├── wholesale.json │ │ │ ├── window_blind.json │ │ │ └── wine.json │ │ ├── telecom │ │ │ └── data_center.json │ │ ├── tourism │ │ │ ├── alpine_hut.json │ │ │ ├── apartment.json │ │ │ ├── aquarium.json │ │ │ ├── artwork.json │ │ │ ├── artwork │ │ │ │ ├── bust.json │ │ │ │ ├── graffiti.json │ │ │ │ ├── installation.json │ │ │ │ ├── mural.json │ │ │ │ ├── sculpture.json │ │ │ │ └── statue.json │ │ │ ├── attraction.json │ │ │ ├── camp_pitch.json │ │ │ ├── camp_site.json │ │ │ ├── camp_site │ │ │ │ ├── backcountry.json │ │ │ │ └── group_only.json │ │ │ ├── caravan_site.json │ │ │ ├── chalet.json │ │ │ ├── gallery.json │ │ │ ├── guest_house.json │ │ │ ├── hostel.json │ │ │ ├── hotel.json │ │ │ ├── information.json │ │ │ ├── information │ │ │ │ ├── board.json │ │ │ │ ├── guidepost.json │ │ │ │ ├── map.json │ │ │ │ ├── office.json │ │ │ │ ├── route_marker.json │ │ │ │ └── terminal.json │ │ │ ├── motel.json │ │ │ ├── museum.json │ │ │ ├── museum │ │ │ │ └── history.json │ │ │ ├── picnic_site.json │ │ │ ├── theme_park.json │ │ │ ├── trail_riding_station.json │ │ │ ├── viewpoint.json │ │ │ ├── wilderness_hut.json │ │ │ ├── zoo.json │ │ │ └── zoo │ │ │ │ ├── petting.json │ │ │ │ ├── safari.json │ │ │ │ └── wildlife.json │ │ ├── traffic_calming.json │ │ ├── traffic_calming │ │ │ ├── bump.json │ │ │ ├── chicane.json │ │ │ ├── choker.json │ │ │ ├── cushion.json │ │ │ ├── dip.json │ │ │ ├── hump.json │ │ │ ├── island.json │ │ │ ├── rumble_strip.json │ │ │ └── table.json │ │ ├── traffic_sign.json │ │ ├── traffic_sign │ │ │ ├── city_limit.json │ │ │ ├── city_limit_vertex.json │ │ │ ├── maxspeed.json │ │ │ └── maxspeed_vertex.json │ │ ├── traffic_sign_vertex.json │ │ ├── type │ │ │ ├── _multipolygon.json │ │ │ ├── boundary.json │ │ │ ├── boundary │ │ │ │ └── administrative.json │ │ │ ├── connectivity.json │ │ │ ├── enforcement.json │ │ │ ├── enforcement │ │ │ │ └── maxspeed.json │ │ │ ├── public_transport │ │ │ │ └── stop_area_group.json │ │ │ ├── restriction.json │ │ │ ├── restriction │ │ │ │ ├── no_left_turn.json │ │ │ │ ├── no_right_turn.json │ │ │ │ ├── no_straight_on.json │ │ │ │ ├── no_u_turn.json │ │ │ │ ├── only_left_turn.json │ │ │ │ ├── only_right_turn.json │ │ │ │ ├── only_straight_on.json │ │ │ │ └── only_u_turn.json │ │ │ ├── route.json │ │ │ ├── route │ │ │ │ ├── bicycle.json │ │ │ │ ├── bus.json │ │ │ │ ├── detour.json │ │ │ │ ├── ferry.json │ │ │ │ ├── foot.json │ │ │ │ ├── hiking.json │ │ │ │ ├── horse.json │ │ │ │ ├── light_rail.json │ │ │ │ ├── monorail.json │ │ │ │ ├── pipeline.json │ │ │ │ ├── piste.json │ │ │ │ ├── power.json │ │ │ │ ├── road.json │ │ │ │ ├── subway.json │ │ │ │ ├── train.json │ │ │ │ └── tram.json │ │ │ ├── route_master.json │ │ │ ├── site.json │ │ │ └── waterway.json │ │ └── waterway │ │ │ ├── _riverbank.json │ │ │ ├── boatyard.json │ │ │ ├── canal.json │ │ │ ├── canal │ │ │ └── lock.json │ │ │ ├── dam.json │ │ │ ├── ditch.json │ │ │ ├── dock.json │ │ │ ├── drain.json │ │ │ ├── fish_pass.json │ │ │ ├── fuel.json │ │ │ ├── lock_gate.json │ │ │ ├── milestone.json │ │ │ ├── river.json │ │ │ ├── sanitary_dump_station.json │ │ │ ├── stream.json │ │ │ ├── stream_intermittent.json │ │ │ ├── tidal_channel.json │ │ │ ├── water_point.json │ │ │ ├── waterfall.json │ │ │ └── weir.json │ └── schema │ │ ├── field.json │ │ └── preset.json ├── qa_data.json ├── shortcuts.json └── territory_languages.json ├── docs ├── README.md ├── api.md ├── apk.md ├── collecticons.md ├── debugging.md ├── macos-setup.md ├── style.md ├── testflight.md ├── tests.md ├── troubleshooting.md └── user-guide.md ├── field-options.js ├── index.js ├── ios ├── Observe-tvOS │ └── Info.plist ├── Observe-tvOSTests │ └── Info.plist ├── Observe.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── Observe-tvOS.xcscheme │ │ └── Observe.xcscheme ├── Observe.xcworkspace │ └── contents.xcworkspacedata ├── Observe │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Collecticons.ttf │ ├── DTObjectBlockExecutor.h │ ├── DTObjectBlockExecutor.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon-40@2x.png │ │ │ ├── AppIcon-60@2x.png │ │ │ ├── AppIcon.png │ │ │ ├── Contents.json │ │ │ ├── icon-1024@1x.png │ │ │ ├── icon-20@1x.png │ │ │ ├── icon-20@2x.png │ │ │ ├── icon-20@3x.png │ │ │ ├── icon-29@1x.png │ │ │ ├── icon-29@2x.png │ │ │ ├── icon-29@3x.png │ │ │ ├── icon-40@1x.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-40@3x.png │ │ │ ├── icon-50@1x.png │ │ │ ├── icon-50@2x.png │ │ │ ├── icon-57@1x.png │ │ │ ├── icon-57@2x.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-60@3x.png │ │ │ ├── icon-72@1x.png │ │ │ ├── icon-72@2x.png │ │ │ ├── icon-76@1x.png │ │ │ ├── icon-76@2x.png │ │ │ └── icon-83.5@2x.png │ │ ├── Contents.json │ │ ├── far_clone.imageset │ │ │ ├── Contents.json │ │ │ └── far_clone.png │ │ ├── far_credit_card.imageset │ │ │ ├── Contents.json │ │ │ └── far_credit_card.png │ │ ├── far_dot_circle.imageset │ │ │ ├── Contents.json │ │ │ └── far_dot_circle.png │ │ ├── far_times_circle.imageset │ │ │ ├── Contents.json │ │ │ └── far_times_circle.png │ │ ├── fas_ambulance.imageset │ │ │ ├── Contents.json │ │ │ └── fas_ambulance.png │ │ ├── fas_apple_alt.imageset │ │ │ ├── Contents.json │ │ │ └── fas_apple_alt.png │ │ ├── fas_archive.imageset │ │ │ ├── Contents.json │ │ │ └── fas_archive.png │ │ ├── fas_archway.imageset │ │ │ ├── Contents.json │ │ │ └── fas_archway.png │ │ ├── fas_baby.imageset │ │ │ ├── Contents.json │ │ │ └── fas_baby.png │ │ ├── fas_baby_carriage.imageset │ │ │ ├── Contents.json │ │ │ └── fas_baby_carriage.png │ │ ├── fas_balance_scale.imageset │ │ │ ├── Contents.json │ │ │ └── fas_balance_scale.png │ │ ├── fas_bath.imageset │ │ │ ├── Contents.json │ │ │ └── fas_bath.png │ │ ├── fas_beer.imageset │ │ │ ├── Contents.json │ │ │ └── fas_beer.png │ │ ├── fas_bell.imageset │ │ │ ├── Contents.json │ │ │ └── fas_bell.png │ │ ├── fas_biking.imageset │ │ │ ├── Contents.json │ │ │ └── fas_biking.png │ │ ├── fas_blender.imageset │ │ │ ├── Contents.json │ │ │ └── fas_blender.png │ │ ├── fas_book.imageset │ │ │ ├── Contents.json │ │ │ └── fas_book.png │ │ ├── fas_box.imageset │ │ │ ├── Contents.json │ │ │ └── fas_box.png │ │ ├── fas_box_open.imageset │ │ │ ├── Contents.json │ │ │ └── fas_box_open.png │ │ ├── fas_bullseye.imageset │ │ │ ├── Contents.json │ │ │ └── fas_bullseye.png │ │ ├── fas_burn.imageset │ │ │ ├── Contents.json │ │ │ └── fas_burn.png │ │ ├── fas_calendar_alt.imageset │ │ │ ├── Contents.json │ │ │ └── fas_calendar_alt.png │ │ ├── fas_camera_retro.imageset │ │ │ ├── Contents.json │ │ │ └── fas_camera_retro.png │ │ ├── fas_cannabis.imageset │ │ │ ├── Contents.json │ │ │ └── fas_cannabis.png │ │ ├── fas_car_battery.imageset │ │ │ ├── Contents.json │ │ │ └── fas_car_battery.png │ │ ├── fas_car_crash.imageset │ │ │ ├── Contents.json │ │ │ └── fas_car_crash.png │ │ ├── fas_carrot.imageset │ │ │ ├── Contents.json │ │ │ └── fas_carrot.png │ │ ├── fas_cat.imageset │ │ │ ├── Contents.json │ │ │ └── fas_cat.png │ │ ├── fas_charging_station.imageset │ │ │ ├── Contents.json │ │ │ └── fas_charging_station.png │ │ ├── fas_cheese.imageset │ │ │ ├── Contents.json │ │ │ └── fas_cheese.png │ │ ├── fas_chess_bishop.imageset │ │ │ ├── Contents.json │ │ │ └── fas_chess_bishop.png │ │ ├── fas_chess_knight.imageset │ │ │ ├── Contents.json │ │ │ └── fas_chess_knight.png │ │ ├── fas_chess_pawn.imageset │ │ │ ├── Contents.json │ │ │ └── fas_chess_pawn.png │ │ ├── fas_chevron_circle_up.imageset │ │ │ ├── Contents.json │ │ │ └── fas_chevron_circle_up.png │ │ ├── fas_child.imageset │ │ │ ├── Contents.json │ │ │ └── fas_child.png │ │ ├── fas_church.imageset │ │ │ ├── Contents.json │ │ │ └── fas_church.png │ │ ├── fas_code.imageset │ │ │ ├── Contents.json │ │ │ └── fas_code.png │ │ ├── fas_coins.imageset │ │ │ ├── Contents.json │ │ │ └── fas_coins.png │ │ ├── fas_comment.imageset │ │ │ ├── Contents.json │ │ │ └── fas_comment.png │ │ ├── fas_comments.imageset │ │ │ ├── Contents.json │ │ │ └── fas_comments.png │ │ ├── fas_compact_disc.imageset │ │ │ ├── Contents.json │ │ │ └── fas_compact_disc.png │ │ ├── fas_concierge_bell.imageset │ │ │ ├── Contents.json │ │ │ └── fas_concierge_bell.png │ │ ├── fas_couch.imageset │ │ │ ├── Contents.json │ │ │ └── fas_couch.png │ │ ├── fas_crown.imageset │ │ │ ├── Contents.json │ │ │ └── fas_crown.png │ │ ├── fas_crutch.imageset │ │ │ ├── Contents.json │ │ │ └── fas_crutch.png │ │ ├── fas_cube.imageset │ │ │ ├── Contents.json │ │ │ └── fas_cube.png │ │ ├── fas_cut.imageset │ │ │ ├── Contents.json │ │ │ └── fas_cut.png │ │ ├── fas_dice.imageset │ │ │ ├── Contents.json │ │ │ └── fas_dice.png │ │ ├── fas_directions.imageset │ │ │ ├── Contents.json │ │ │ └── fas_directions.png │ │ ├── fas_dolly.imageset │ │ │ ├── Contents.json │ │ │ └── fas_dolly.png │ │ ├── fas_door_closed.imageset │ │ │ ├── Contents.json │ │ │ └── fas_door_closed.png │ │ ├── fas_door_open.imageset │ │ │ ├── Contents.json │ │ │ └── fas_door_open.png │ │ ├── fas_drafting_compass.imageset │ │ │ ├── Contents.json │ │ │ └── fas_drafting_compass.png │ │ ├── fas_dragon.imageset │ │ │ ├── Contents.json │ │ │ └── fas_dragon.png │ │ ├── fas_drumstick_bite.imageset │ │ │ ├── Contents.json │ │ │ └── fas_drumstick_bite.png │ │ ├── fas_dumbbell.imageset │ │ │ ├── Contents.json │ │ │ └── fas_dumbbell.png │ │ ├── fas_dumpster.imageset │ │ │ ├── Contents.json │ │ │ └── fas_dumpster.png │ │ ├── fas_dungeon.imageset │ │ │ ├── Contents.json │ │ │ └── fas_dungeon.png │ │ ├── fas_eye.imageset │ │ │ ├── Contents.json │ │ │ └── fas_eye.png │ │ ├── fas_film.imageset │ │ │ ├── Contents.json │ │ │ └── fas_film.png │ │ ├── fas_fire_extinguisher.imageset │ │ │ ├── Contents.json │ │ │ └── fas_fire_extinguisher.png │ │ ├── fas_fish.imageset │ │ │ ├── Contents.json │ │ │ └── fas_fish.png │ │ ├── fas_flask.imageset │ │ │ ├── Contents.json │ │ │ └── fas_flask.png │ │ ├── fas_frog.imageset │ │ │ ├── Contents.json │ │ │ └── fas_frog.png │ │ ├── fas_futbol.imageset │ │ │ ├── Contents.json │ │ │ └── fas_futbol.png │ │ ├── fas_gavel.imageset │ │ │ ├── Contents.json │ │ │ └── fas_gavel.png │ │ ├── fas_guitar.imageset │ │ │ ├── Contents.json │ │ │ └── fas_guitar.png │ │ ├── fas_handshake.imageset │ │ │ ├── Contents.json │ │ │ └── fas_handshake.png │ │ ├── fas_hashtag.imageset │ │ │ ├── Contents.json │ │ │ └── fas_hashtag.png │ │ ├── fas_hat_cowboy_side.imageset │ │ │ ├── Contents.json │ │ │ └── fas_hat_cowboy_side.png │ │ ├── fas_hiking.imageset │ │ │ ├── Contents.json │ │ │ └── fas_hiking.png │ │ ├── fas_horse.imageset │ │ │ ├── Contents.json │ │ │ └── fas_horse.png │ │ ├── fas_hospital_alt.imageset │ │ │ ├── Contents.json │ │ │ └── fas_hospital_alt.png │ │ ├── fas_hotdog.imageset │ │ │ ├── Contents.json │ │ │ └── fas_hotdog.png │ │ ├── fas_hotel.imageset │ │ │ ├── Contents.json │ │ │ └── fas_hotel.png │ │ ├── fas_house_damage.imageset │ │ │ ├── Contents.json │ │ │ └── fas_house_damage.png │ │ ├── fas_i_cursor.imageset │ │ │ ├── Contents.json │ │ │ └── fas_i_cursor.png │ │ ├── fas_ice_cream.imageset │ │ │ ├── Contents.json │ │ │ └── fas_ice_cream.png │ │ ├── fas_key.imageset │ │ │ ├── Contents.json │ │ │ └── fas_key.png │ │ ├── fas_laptop.imageset │ │ │ ├── Contents.json │ │ │ └── fas_laptop.png │ │ ├── fas_leaf.imageset │ │ │ ├── Contents.json │ │ │ └── fas_leaf.png │ │ ├── fas_life_ring.imageset │ │ │ ├── Contents.json │ │ │ └── fas_life_ring.png │ │ ├── fas_lock.imageset │ │ │ ├── Contents.json │ │ │ └── fas_lock.png │ │ ├── fas_long_arrow_alt_right.imageset │ │ │ ├── Contents.json │ │ │ └── fas_long_arrow_alt_right.png │ │ ├── fas_mail_bulk.imageset │ │ │ ├── Contents.json │ │ │ └── fas_mail_bulk.png │ │ ├── fas_map.imageset │ │ │ ├── Contents.json │ │ │ └── fas_map.png │ │ ├── fas_map_signs.imageset │ │ │ ├── Contents.json │ │ │ └── fas_map_signs.png │ │ ├── fas_medkit.imageset │ │ │ ├── Contents.json │ │ │ └── fas_medkit.png │ │ ├── fas_microchip.imageset │ │ │ ├── Contents.json │ │ │ └── fas_microchip.png │ │ ├── fas_microphone.imageset │ │ │ ├── Contents.json │ │ │ └── fas_microphone.png │ │ ├── fas_mobile_alt.imageset │ │ │ ├── Contents.json │ │ │ └── fas_mobile_alt.png │ │ ├── fas_mosque.imageset │ │ │ ├── Contents.json │ │ │ └── fas_mosque.png │ │ ├── fas_motorcycle.imageset │ │ │ ├── Contents.json │ │ │ └── fas_motorcycle.png │ │ ├── fas_music.imageset │ │ │ ├── Contents.json │ │ │ └── fas_music.png │ │ ├── fas_newspaper.imageset │ │ │ ├── Contents.json │ │ │ └── fas_newspaper.png │ │ ├── fas_paint_roller.imageset │ │ │ ├── Contents.json │ │ │ └── fas_paint_roller.png │ │ ├── fas_paperclip.imageset │ │ │ ├── Contents.json │ │ │ └── fas_paperclip.png │ │ ├── fas_people_carry.imageset │ │ │ ├── Contents.json │ │ │ └── fas_people_carry.png │ │ ├── fas_pepper_hot.imageset │ │ │ ├── Contents.json │ │ │ └── fas_pepper_hot.png │ │ ├── fas_person_booth.imageset │ │ │ ├── Contents.json │ │ │ └── fas_person_booth.png │ │ ├── fas_pills.imageset │ │ │ ├── Contents.json │ │ │ └── fas_pills.png │ │ ├── fas_plane.imageset │ │ │ ├── Contents.json │ │ │ └── fas_plane.png │ │ ├── fas_plane_departure.imageset │ │ │ ├── Contents.json │ │ │ └── fas_plane_departure.png │ │ ├── fas_plug.imageset │ │ │ ├── Contents.json │ │ │ └── fas_plug.png │ │ ├── fas_plus.imageset │ │ │ ├── Contents.json │ │ │ └── fas_plus.png │ │ ├── fas_print.imageset │ │ │ ├── Contents.json │ │ │ └── fas_print.png │ │ ├── fas_puzzle_piece.imageset │ │ │ ├── Contents.json │ │ │ └── fas_puzzle_piece.png │ │ ├── fas_question.imageset │ │ │ ├── Contents.json │ │ │ └── fas_question.png │ │ ├── fas_rocket.imageset │ │ │ ├── Contents.json │ │ │ └── fas_rocket.png │ │ ├── fas_school.imageset │ │ │ ├── Contents.json │ │ │ └── fas_school.png │ │ ├── fas_seedling.imageset │ │ │ ├── Contents.json │ │ │ └── fas_seedling.png │ │ ├── fas_server.imageset │ │ │ ├── Contents.json │ │ │ └── fas_server.png │ │ ├── fas_shapes.imageset │ │ │ ├── Contents.json │ │ │ └── fas_shapes.png │ │ ├── fas_share_alt.imageset │ │ │ ├── Contents.json │ │ │ └── fas_share_alt.png │ │ ├── fas_shopping_basket.imageset │ │ │ ├── Contents.json │ │ │ └── fas_shopping_basket.png │ │ ├── fas_skating.imageset │ │ │ ├── Contents.json │ │ │ └── fas_skating.png │ │ ├── fas_skiing.imageset │ │ │ ├── Contents.json │ │ │ └── fas_skiing.png │ │ ├── fas_skiing_nordic.imageset │ │ │ ├── Contents.json │ │ │ └── fas_skiing_nordic.png │ │ ├── fas_sleigh.imageset │ │ │ ├── Contents.json │ │ │ └── fas_sleigh.png │ │ ├── fas_smoking.imageset │ │ │ ├── Contents.json │ │ │ └── fas_smoking.png │ │ ├── fas_snowboarding.imageset │ │ │ ├── Contents.json │ │ │ └── fas_snowboarding.png │ │ ├── fas_solar_panel.imageset │ │ │ ├── Contents.json │ │ │ └── fas_solar_panel.png │ │ ├── fas_sort_alpha_up.imageset │ │ │ ├── Contents.json │ │ │ └── fas_sort_alpha_up.png │ │ ├── fas_space_shuttle.imageset │ │ │ ├── Contents.json │ │ │ └── fas_space_shuttle.png │ │ ├── fas_stamp.imageset │ │ │ ├── Contents.json │ │ │ └── fas_stamp.png │ │ ├── fas_store.imageset │ │ │ ├── Contents.json │ │ │ └── fas_store.png │ │ ├── fas_store_alt_slash.imageset │ │ │ ├── Contents.json │ │ │ └── fas_store_alt_slash.png │ │ ├── fas_suitcase.imageset │ │ │ ├── Contents.json │ │ │ └── fas_suitcase.png │ │ ├── fas_suitcase_rolling.imageset │ │ │ ├── Contents.json │ │ │ └── fas_suitcase_rolling.png │ │ ├── fas_swimmer.imageset │ │ │ ├── Contents.json │ │ │ └── fas_swimmer.png │ │ ├── fas_swimming_pool.imageset │ │ │ ├── Contents.json │ │ │ └── fas_swimming_pool.png │ │ ├── fas_table_tennis.imageset │ │ │ ├── Contents.json │ │ │ └── fas_table_tennis.png │ │ ├── fas_tachometer_alt.imageset │ │ │ ├── Contents.json │ │ │ └── fas_tachometer_alt.png │ │ ├── fas_tags.imageset │ │ │ ├── Contents.json │ │ │ └── fas_tags.png │ │ ├── fas_tape.imageset │ │ │ ├── Contents.json │ │ │ └── fas_tape.png │ │ ├── fas_taxi.imageset │ │ │ ├── Contents.json │ │ │ └── fas_taxi.png │ │ ├── fas_teeth.imageset │ │ │ ├── Contents.json │ │ │ └── fas_teeth.png │ │ ├── fas_th.imageset │ │ │ ├── Contents.json │ │ │ └── fas_th.png │ │ ├── fas_th_list.imageset │ │ │ ├── Contents.json │ │ │ └── fas_th_list.png │ │ ├── fas_thermometer_three_quarters.imageset │ │ │ ├── Contents.json │ │ │ └── fas_thermometer_three_quarters.png │ │ ├── fas_ticket_alt.imageset │ │ │ ├── Contents.json │ │ │ └── fas_ticket_alt.png │ │ ├── fas_tint_slash.imageset │ │ │ ├── Contents.json │ │ │ └── fas_tint_slash.png │ │ ├── fas_toilet.imageset │ │ │ ├── Contents.json │ │ │ └── fas_toilet.png │ │ ├── fas_tractor.imageset │ │ │ ├── Contents.json │ │ │ └── fas_tractor.png │ │ ├── fas_tram.imageset │ │ │ ├── Contents.json │ │ │ └── fas_tram.png │ │ ├── fas_truck_loading.imageset │ │ │ ├── Contents.json │ │ │ └── fas_truck_loading.png │ │ ├── fas_truck_monster.imageset │ │ │ ├── Contents.json │ │ │ └── fas_truck_monster.png │ │ ├── fas_umbrella_beach.imageset │ │ │ ├── Contents.json │ │ │ └── fas_umbrella_beach.png │ │ ├── fas_user_alt.imageset │ │ │ ├── Contents.json │ │ │ └── fas_user_alt.png │ │ ├── fas_user_cog.imageset │ │ │ ├── Contents.json │ │ │ └── fas_user_cog.png │ │ ├── fas_user_secret.imageset │ │ │ ├── Contents.json │ │ │ └── fas_user_secret.png │ │ ├── fas_user_tie.imageset │ │ │ ├── Contents.json │ │ │ └── fas_user_tie.png │ │ ├── fas_users.imageset │ │ │ ├── Contents.json │ │ │ └── fas_users.png │ │ ├── fas_vector_square.imageset │ │ │ ├── Contents.json │ │ │ └── fas_vector_square.png │ │ ├── fas_vial.imageset │ │ │ ├── Contents.json │ │ │ └── fas_vial.png │ │ ├── fas_video.imageset │ │ │ ├── Contents.json │ │ │ └── fas_video.png │ │ ├── fas_volume_up.imageset │ │ │ ├── Contents.json │ │ │ └── fas_volume_up.png │ │ ├── fas_vote_yea.imageset │ │ │ ├── Contents.json │ │ │ └── fas_vote_yea.png │ │ ├── fas_warehouse.imageset │ │ │ ├── Contents.json │ │ │ └── fas_warehouse.png │ │ ├── fas_weight.imageset │ │ │ ├── Contents.json │ │ │ └── fas_weight.png │ │ ├── fas_weight_hanging.imageset │ │ │ ├── Contents.json │ │ │ └── fas_weight_hanging.png │ │ ├── fas_wifi.imageset │ │ │ ├── Contents.json │ │ │ └── fas_wifi.png │ │ ├── fas_wine_bottle.imageset │ │ │ ├── Contents.json │ │ │ └── fas_wine_bottle.png │ │ ├── fas_yin_yang.imageset │ │ │ ├── Contents.json │ │ │ └── fas_yin_yang.png │ │ ├── maki_aerialway.imageset │ │ │ ├── Contents.json │ │ │ └── maki_aerialway.png │ │ ├── maki_airfield.imageset │ │ │ ├── Contents.json │ │ │ └── maki_airfield.png │ │ ├── maki_airport.imageset │ │ │ ├── Contents.json │ │ │ └── maki_airport.png │ │ ├── maki_alcohol_shop.imageset │ │ │ ├── Contents.json │ │ │ └── maki_alcohol_shop.png │ │ ├── maki_american_football.imageset │ │ │ ├── Contents.json │ │ │ └── maki_american_football.png │ │ ├── maki_amusement_park.imageset │ │ │ ├── Contents.json │ │ │ └── maki_amusement_park.png │ │ ├── maki_aquarium.imageset │ │ │ ├── Contents.json │ │ │ └── maki_aquarium.png │ │ ├── maki_art_gallery.imageset │ │ │ ├── Contents.json │ │ │ └── maki_art_gallery.png │ │ ├── maki_attraction.imageset │ │ │ ├── Contents.json │ │ │ └── maki_attraction.png │ │ ├── maki_bakery.imageset │ │ │ ├── Contents.json │ │ │ └── maki_bakery.png │ │ ├── maki_bank.imageset │ │ │ ├── Contents.json │ │ │ └── maki_bank.png │ │ ├── maki_bank_jp.imageset │ │ │ ├── Contents.json │ │ │ └── maki_bank_jp.png │ │ ├── maki_bar.imageset │ │ │ ├── Contents.json │ │ │ └── maki_bar.png │ │ ├── maki_barrier.imageset │ │ │ ├── Contents.json │ │ │ └── maki_barrier.png │ │ ├── maki_baseball.imageset │ │ │ ├── Contents.json │ │ │ └── maki_baseball.png │ │ ├── maki_basketball.imageset │ │ │ ├── Contents.json │ │ │ └── maki_basketball.png │ │ ├── maki_bbq.imageset │ │ │ ├── Contents.json │ │ │ └── maki_bbq.png │ │ ├── maki_beach.imageset │ │ │ ├── Contents.json │ │ │ └── maki_beach.png │ │ ├── maki_beer.imageset │ │ │ ├── Contents.json │ │ │ └── maki_beer.png │ │ ├── maki_bicycle.imageset │ │ │ ├── Contents.json │ │ │ └── maki_bicycle.png │ │ ├── maki_bicycle_share.imageset │ │ │ ├── Contents.json │ │ │ └── maki_bicycle_share.png │ │ ├── maki_blood_bank.imageset │ │ │ ├── Contents.json │ │ │ └── maki_blood_bank.png │ │ ├── maki_bowling_alley.imageset │ │ │ ├── Contents.json │ │ │ └── maki_bowling_alley.png │ │ ├── maki_bridge.imageset │ │ │ ├── Contents.json │ │ │ └── maki_bridge.png │ │ ├── maki_building.imageset │ │ │ ├── Contents.json │ │ │ └── maki_building.png │ │ ├── maki_building_alt1.imageset │ │ │ ├── Contents.json │ │ │ └── maki_building_alt1.png │ │ ├── maki_bus.imageset │ │ │ ├── Contents.json │ │ │ └── maki_bus.png │ │ ├── maki_cafe.imageset │ │ │ ├── Contents.json │ │ │ └── maki_cafe.png │ │ ├── maki_campsite.imageset │ │ │ ├── Contents.json │ │ │ └── maki_campsite.png │ │ ├── maki_car.imageset │ │ │ ├── Contents.json │ │ │ └── maki_car.png │ │ ├── maki_car_rental.imageset │ │ │ ├── Contents.json │ │ │ └── maki_car_rental.png │ │ ├── maki_car_repair.imageset │ │ │ ├── Contents.json │ │ │ └── maki_car_repair.png │ │ ├── maki_casino.imageset │ │ │ ├── Contents.json │ │ │ └── maki_casino.png │ │ ├── maki_castle.imageset │ │ │ ├── Contents.json │ │ │ └── maki_castle.png │ │ ├── maki_castle_jp.imageset │ │ │ ├── Contents.json │ │ │ └── maki_castle_jp.png │ │ ├── maki_cemetery.imageset │ │ │ ├── Contents.json │ │ │ └── maki_cemetery.png │ │ ├── maki_cemetery_jp.imageset │ │ │ ├── Contents.json │ │ │ └── maki_cemetery_jp.png │ │ ├── maki_charging_station.imageset │ │ │ ├── Contents.json │ │ │ └── maki_charging_station.png │ │ ├── maki_cinema.imageset │ │ │ ├── Contents.json │ │ │ └── maki_cinema.png │ │ ├── maki_circle.imageset │ │ │ ├── Contents.json │ │ │ └── maki_circle.png │ │ ├── maki_circle_stroked.imageset │ │ │ ├── Contents.json │ │ │ └── maki_circle_stroked.png │ │ ├── maki_city.imageset │ │ │ ├── Contents.json │ │ │ └── maki_city.png │ │ ├── maki_clothing_store.imageset │ │ │ ├── Contents.json │ │ │ └── maki_clothing_store.png │ │ ├── maki_college.imageset │ │ │ ├── Contents.json │ │ │ └── maki_college.png │ │ ├── maki_college_jp.imageset │ │ │ ├── Contents.json │ │ │ └── maki_college_jp.png │ │ ├── maki_commercial.imageset │ │ │ ├── Contents.json │ │ │ └── maki_commercial.png │ │ ├── maki_communications_tower.imageset │ │ │ ├── Contents.json │ │ │ └── maki_communications_tower.png │ │ ├── maki_confectionery.imageset │ │ │ ├── Contents.json │ │ │ └── maki_confectionery.png │ │ ├── maki_convenience.imageset │ │ │ ├── Contents.json │ │ │ └── maki_convenience.png │ │ ├── maki_cricket.imageset │ │ │ ├── Contents.json │ │ │ └── maki_cricket.png │ │ ├── maki_cross.imageset │ │ │ ├── Contents.json │ │ │ └── maki_cross.png │ │ ├── maki_dam.imageset │ │ │ ├── Contents.json │ │ │ └── maki_dam.png │ │ ├── maki_danger.imageset │ │ │ ├── Contents.json │ │ │ └── maki_danger.png │ │ ├── maki_defibrillator.imageset │ │ │ ├── Contents.json │ │ │ └── maki_defibrillator.png │ │ ├── maki_dentist.imageset │ │ │ ├── Contents.json │ │ │ └── maki_dentist.png │ │ ├── maki_doctor.imageset │ │ │ ├── Contents.json │ │ │ └── maki_doctor.png │ │ ├── maki_dog_park.imageset │ │ │ ├── Contents.json │ │ │ └── maki_dog_park.png │ │ ├── maki_drinking_water.imageset │ │ │ ├── Contents.json │ │ │ └── maki_drinking_water.png │ │ ├── maki_embassy.imageset │ │ │ ├── Contents.json │ │ │ └── maki_embassy.png │ │ ├── maki_emergency_phone.imageset │ │ │ ├── Contents.json │ │ │ └── maki_emergency_phone.png │ │ ├── maki_entrance.imageset │ │ │ ├── Contents.json │ │ │ └── maki_entrance.png │ │ ├── maki_entrance_alt1.imageset │ │ │ ├── Contents.json │ │ │ └── maki_entrance_alt1.png │ │ ├── maki_farm.imageset │ │ │ ├── Contents.json │ │ │ └── maki_farm.png │ │ ├── maki_fast_food.imageset │ │ │ ├── Contents.json │ │ │ └── maki_fast_food.png │ │ ├── maki_fence.imageset │ │ │ ├── Contents.json │ │ │ └── maki_fence.png │ │ ├── maki_ferry.imageset │ │ │ ├── Contents.json │ │ │ └── maki_ferry.png │ │ ├── maki_fire_station.imageset │ │ │ ├── Contents.json │ │ │ └── maki_fire_station.png │ │ ├── maki_fire_station_jp.imageset │ │ │ ├── Contents.json │ │ │ └── maki_fire_station_jp.png │ │ ├── maki_fitness_centre.imageset │ │ │ ├── Contents.json │ │ │ └── maki_fitness_centre.png │ │ ├── maki_florist.imageset │ │ │ ├── Contents.json │ │ │ └── maki_florist.png │ │ ├── maki_fuel.imageset │ │ │ ├── Contents.json │ │ │ └── maki_fuel.png │ │ ├── maki_furniture.imageset │ │ │ ├── Contents.json │ │ │ └── maki_furniture.png │ │ ├── maki_gaming.imageset │ │ │ ├── Contents.json │ │ │ └── maki_gaming.png │ │ ├── maki_garden.imageset │ │ │ ├── Contents.json │ │ │ └── maki_garden.png │ │ ├── maki_garden_centre.imageset │ │ │ ├── Contents.json │ │ │ └── maki_garden_centre.png │ │ ├── maki_gift.imageset │ │ │ ├── Contents.json │ │ │ └── maki_gift.png │ │ ├── maki_globe.imageset │ │ │ ├── Contents.json │ │ │ └── maki_globe.png │ │ ├── maki_golf.imageset │ │ │ ├── Contents.json │ │ │ └── maki_golf.png │ │ ├── maki_grocery.imageset │ │ │ ├── Contents.json │ │ │ └── maki_grocery.png │ │ ├── maki_hairdresser.imageset │ │ │ ├── Contents.json │ │ │ └── maki_hairdresser.png │ │ ├── maki_harbor.imageset │ │ │ ├── Contents.json │ │ │ └── maki_harbor.png │ │ ├── maki_hardware.imageset │ │ │ ├── Contents.json │ │ │ └── maki_hardware.png │ │ ├── maki_heart.imageset │ │ │ ├── Contents.json │ │ │ └── maki_heart.png │ │ ├── maki_heliport.imageset │ │ │ ├── Contents.json │ │ │ └── maki_heliport.png │ │ ├── maki_home.imageset │ │ │ ├── Contents.json │ │ │ └── maki_home.png │ │ ├── maki_horse_riding.imageset │ │ │ ├── Contents.json │ │ │ └── maki_horse_riding.png │ │ ├── maki_hospital.imageset │ │ │ ├── Contents.json │ │ │ └── maki_hospital.png │ │ ├── maki_hospital_jp.imageset │ │ │ ├── Contents.json │ │ │ └── maki_hospital_jp.png │ │ ├── maki_ice_cream.imageset │ │ │ ├── Contents.json │ │ │ └── maki_ice_cream.png │ │ ├── maki_industry.imageset │ │ │ ├── Contents.json │ │ │ └── maki_industry.png │ │ ├── maki_information.imageset │ │ │ ├── Contents.json │ │ │ └── maki_information.png │ │ ├── maki_jewelry_store.imageset │ │ │ ├── Contents.json │ │ │ └── maki_jewelry_store.png │ │ ├── maki_karaoke.imageset │ │ │ ├── Contents.json │ │ │ └── maki_karaoke.png │ │ ├── maki_landmark.imageset │ │ │ ├── Contents.json │ │ │ └── maki_landmark.png │ │ ├── maki_landmark_jp.imageset │ │ │ ├── Contents.json │ │ │ └── maki_landmark_jp.png │ │ ├── maki_landuse.imageset │ │ │ ├── Contents.json │ │ │ └── maki_landuse.png │ │ ├── maki_laundry.imageset │ │ │ ├── Contents.json │ │ │ └── maki_laundry.png │ │ ├── maki_library.imageset │ │ │ ├── Contents.json │ │ │ └── maki_library.png │ │ ├── maki_lighthouse.imageset │ │ │ ├── Contents.json │ │ │ └── maki_lighthouse.png │ │ ├── maki_lodging.imageset │ │ │ ├── Contents.json │ │ │ └── maki_lodging.png │ │ ├── maki_logging.imageset │ │ │ ├── Contents.json │ │ │ └── maki_logging.png │ │ ├── maki_marker.imageset │ │ │ ├── Contents.json │ │ │ └── maki_marker.png │ │ ├── maki_marker_stroked.imageset │ │ │ ├── Contents.json │ │ │ └── maki_marker_stroked.png │ │ ├── maki_mobile_phone.imageset │ │ │ ├── Contents.json │ │ │ └── maki_mobile_phone.png │ │ ├── maki_monument.imageset │ │ │ ├── Contents.json │ │ │ └── maki_monument.png │ │ ├── maki_mountain.imageset │ │ │ ├── Contents.json │ │ │ └── maki_mountain.png │ │ ├── maki_museum.imageset │ │ │ ├── Contents.json │ │ │ └── maki_museum.png │ │ ├── maki_music.imageset │ │ │ ├── Contents.json │ │ │ └── maki_music.png │ │ ├── maki_natural.imageset │ │ │ ├── Contents.json │ │ │ └── maki_natural.png │ │ ├── maki_optician.imageset │ │ │ ├── Contents.json │ │ │ └── maki_optician.png │ │ ├── maki_paint.imageset │ │ │ ├── Contents.json │ │ │ └── maki_paint.png │ │ ├── maki_park.imageset │ │ │ ├── Contents.json │ │ │ └── maki_park.png │ │ ├── maki_park_alt1.imageset │ │ │ ├── Contents.json │ │ │ └── maki_park_alt1.png │ │ ├── maki_parking.imageset │ │ │ ├── Contents.json │ │ │ └── maki_parking.png │ │ ├── maki_parking_garage.imageset │ │ │ ├── Contents.json │ │ │ └── maki_parking_garage.png │ │ ├── maki_pharmacy.imageset │ │ │ ├── Contents.json │ │ │ └── maki_pharmacy.png │ │ ├── maki_picnic_site.imageset │ │ │ ├── Contents.json │ │ │ └── maki_picnic_site.png │ │ ├── maki_pitch.imageset │ │ │ ├── Contents.json │ │ │ └── maki_pitch.png │ │ ├── maki_place_of_worship.imageset │ │ │ ├── Contents.json │ │ │ └── maki_place_of_worship.png │ │ ├── maki_playground.imageset │ │ │ ├── Contents.json │ │ │ └── maki_playground.png │ │ ├── maki_police.imageset │ │ │ ├── Contents.json │ │ │ └── maki_police.png │ │ ├── maki_police_jp.imageset │ │ │ ├── Contents.json │ │ │ └── maki_police_jp.png │ │ ├── maki_post.imageset │ │ │ ├── Contents.json │ │ │ └── maki_post.png │ │ ├── maki_post_jp.imageset │ │ │ ├── Contents.json │ │ │ └── maki_post_jp.png │ │ ├── maki_prison.imageset │ │ │ ├── Contents.json │ │ │ └── maki_prison.png │ │ ├── maki_rail.imageset │ │ │ ├── Contents.json │ │ │ └── maki_rail.png │ │ ├── maki_rail_light.imageset │ │ │ ├── Contents.json │ │ │ └── maki_rail_light.png │ │ ├── maki_rail_metro.imageset │ │ │ ├── Contents.json │ │ │ └── maki_rail_metro.png │ │ ├── maki_ranger_station.imageset │ │ │ ├── Contents.json │ │ │ └── maki_ranger_station.png │ │ ├── maki_recycling.imageset │ │ │ ├── Contents.json │ │ │ └── maki_recycling.png │ │ ├── maki_religious_buddhist.imageset │ │ │ ├── Contents.json │ │ │ └── maki_religious_buddhist.png │ │ ├── maki_religious_christian.imageset │ │ │ ├── Contents.json │ │ │ └── maki_religious_christian.png │ │ ├── maki_religious_jewish.imageset │ │ │ ├── Contents.json │ │ │ └── maki_religious_jewish.png │ │ ├── maki_religious_muslim.imageset │ │ │ ├── Contents.json │ │ │ └── maki_religious_muslim.png │ │ ├── maki_religious_shinto.imageset │ │ │ ├── Contents.json │ │ │ └── maki_religious_shinto.png │ │ ├── maki_residential_community.imageset │ │ │ ├── Contents.json │ │ │ └── maki_residential_community.png │ │ ├── maki_restaurant.imageset │ │ │ ├── Contents.json │ │ │ └── maki_restaurant.png │ │ ├── maki_restaurant_noodle.imageset │ │ │ ├── Contents.json │ │ │ └── maki_restaurant_noodle.png │ │ ├── maki_restaurant_pizza.imageset │ │ │ ├── Contents.json │ │ │ └── maki_restaurant_pizza.png │ │ ├── maki_restaurant_seafood.imageset │ │ │ ├── Contents.json │ │ │ └── maki_restaurant_seafood.png │ │ ├── maki_roadblock.imageset │ │ │ ├── Contents.json │ │ │ └── maki_roadblock.png │ │ ├── maki_rocket.imageset │ │ │ ├── Contents.json │ │ │ └── maki_rocket.png │ │ ├── maki_school.imageset │ │ │ ├── Contents.json │ │ │ └── maki_school.png │ │ ├── maki_school_jp.imageset │ │ │ ├── Contents.json │ │ │ └── maki_school_jp.png │ │ ├── maki_scooter.imageset │ │ │ ├── Contents.json │ │ │ └── maki_scooter.png │ │ ├── maki_shelter.imageset │ │ │ ├── Contents.json │ │ │ └── maki_shelter.png │ │ ├── maki_shoe.imageset │ │ │ ├── Contents.json │ │ │ └── maki_shoe.png │ │ ├── maki_shop.imageset │ │ │ ├── Contents.json │ │ │ └── maki_shop.png │ │ ├── maki_skateboard.imageset │ │ │ ├── Contents.json │ │ │ └── maki_skateboard.png │ │ ├── maki_skiing.imageset │ │ │ ├── Contents.json │ │ │ └── maki_skiing.png │ │ ├── maki_slaughterhouse.imageset │ │ │ ├── Contents.json │ │ │ └── maki_slaughterhouse.png │ │ ├── maki_slipway.imageset │ │ │ ├── Contents.json │ │ │ └── maki_slipway.png │ │ ├── maki_snowmobile.imageset │ │ │ ├── Contents.json │ │ │ └── maki_snowmobile.png │ │ ├── maki_soccer.imageset │ │ │ ├── Contents.json │ │ │ └── maki_soccer.png │ │ ├── maki_square.imageset │ │ │ ├── Contents.json │ │ │ └── maki_square.png │ │ ├── maki_square_stroked.imageset │ │ │ ├── Contents.json │ │ │ └── maki_square_stroked.png │ │ ├── maki_stadium.imageset │ │ │ ├── Contents.json │ │ │ └── maki_stadium.png │ │ ├── maki_star.imageset │ │ │ ├── Contents.json │ │ │ └── maki_star.png │ │ ├── maki_star_stroked.imageset │ │ │ ├── Contents.json │ │ │ └── maki_star_stroked.png │ │ ├── maki_suitcase.imageset │ │ │ ├── Contents.json │ │ │ └── maki_suitcase.png │ │ ├── maki_sushi.imageset │ │ │ ├── Contents.json │ │ │ └── maki_sushi.png │ │ ├── maki_swimming.imageset │ │ │ ├── Contents.json │ │ │ └── maki_swimming.png │ │ ├── maki_table_tennis.imageset │ │ │ ├── Contents.json │ │ │ └── maki_table_tennis.png │ │ ├── maki_teahouse.imageset │ │ │ ├── Contents.json │ │ │ └── maki_teahouse.png │ │ ├── maki_telephone.imageset │ │ │ ├── Contents.json │ │ │ └── maki_telephone.png │ │ ├── maki_tennis.imageset │ │ │ ├── Contents.json │ │ │ └── maki_tennis.png │ │ ├── maki_theatre.imageset │ │ │ ├── Contents.json │ │ │ └── maki_theatre.png │ │ ├── maki_toilet.imageset │ │ │ ├── Contents.json │ │ │ └── maki_toilet.png │ │ ├── maki_town.imageset │ │ │ ├── Contents.json │ │ │ └── maki_town.png │ │ ├── maki_town_hall.imageset │ │ │ ├── Contents.json │ │ │ └── maki_town_hall.png │ │ ├── maki_triangle.imageset │ │ │ ├── Contents.json │ │ │ └── maki_triangle.png │ │ ├── maki_triangle_stroked.imageset │ │ │ ├── Contents.json │ │ │ └── maki_triangle_stroked.png │ │ ├── maki_veterinary.imageset │ │ │ ├── Contents.json │ │ │ └── maki_veterinary.png │ │ ├── maki_viewpoint.imageset │ │ │ ├── Contents.json │ │ │ └── maki_viewpoint.png │ │ ├── maki_village.imageset │ │ │ ├── Contents.json │ │ │ └── maki_village.png │ │ ├── maki_volcano.imageset │ │ │ ├── Contents.json │ │ │ └── maki_volcano.png │ │ ├── maki_volleyball.imageset │ │ │ ├── Contents.json │ │ │ └── maki_volleyball.png │ │ ├── maki_warehouse.imageset │ │ │ ├── Contents.json │ │ │ └── maki_warehouse.png │ │ ├── maki_waste_basket.imageset │ │ │ ├── Contents.json │ │ │ └── maki_waste_basket.png │ │ ├── maki_watch.imageset │ │ │ ├── Contents.json │ │ │ └── maki_watch.png │ │ ├── maki_water.imageset │ │ │ ├── Contents.json │ │ │ └── maki_water.png │ │ ├── maki_waterfall.imageset │ │ │ ├── Contents.json │ │ │ └── maki_waterfall.png │ │ ├── maki_watermill.imageset │ │ │ ├── Contents.json │ │ │ └── maki_watermill.png │ │ ├── maki_wetland.imageset │ │ │ ├── Contents.json │ │ │ └── maki_wetland.png │ │ ├── maki_wheelchair.imageset │ │ │ ├── Contents.json │ │ │ └── maki_wheelchair.png │ │ ├── maki_windmill.imageset │ │ │ ├── Contents.json │ │ │ └── maki_windmill.png │ │ ├── maki_zoo.imageset │ │ │ ├── Contents.json │ │ │ └── maki_zoo.png │ │ ├── observe_logo.imageset │ │ │ ├── Contents.json │ │ │ └── observe_logo.png │ │ ├── temaki_abseiling.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_abseiling.png │ │ ├── temaki_accessible_space.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_accessible_space.png │ │ ├── temaki_accounting.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_accounting.png │ │ ├── temaki_adit_profile.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_adit_profile.png │ │ ├── temaki_aerialway_pole.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_aerialway_pole.png │ │ ├── temaki_airport.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_airport.png │ │ ├── temaki_amusement_park.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_amusement_park.png │ │ ├── temaki_anchor_medal.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_anchor_medal.png │ │ ├── temaki_antenna.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_antenna.png │ │ ├── temaki_anvil.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_anvil.png │ │ ├── temaki_anvil_and_hammer.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_anvil_and_hammer.png │ │ ├── temaki_app_terminal.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_app_terminal.png │ │ ├── temaki_archery.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_archery.png │ │ ├── temaki_army_tent.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_army_tent.png │ │ ├── temaki_atm.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_atm.png │ │ ├── temaki_balloon.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_balloon.png │ │ ├── temaki_barn.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_barn.png │ │ ├── temaki_beach.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_beach.png │ │ ├── temaki_beauty_salon.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_beauty_salon.png │ │ ├── temaki_bench.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_bench.png │ │ ├── temaki_benchmark_disk.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_benchmark_disk.png │ │ ├── temaki_bicycle_box.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_bicycle_box.png │ │ ├── temaki_bicycle_locker.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_bicycle_locker.png │ │ ├── temaki_bicycle_rental.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_bicycle_rental.png │ │ ├── temaki_bicycle_repair.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_bicycle_repair.png │ │ ├── temaki_bicycle_structure.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_bicycle_structure.png │ │ ├── temaki_billboard.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_billboard.png │ │ ├── temaki_binoculars.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_binoculars.png │ │ ├── temaki_bleachers.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_bleachers.png │ │ ├── temaki_blind.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_blind.png │ │ ├── temaki_board_bus.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_board_bus.png │ │ ├── temaki_board_ferry.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_board_ferry.png │ │ ├── temaki_board_gondola_lift.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_board_gondola_lift.png │ │ ├── temaki_board_hanging_rail.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_board_hanging_rail.png │ │ ├── temaki_board_heavy_rail.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_board_heavy_rail.png │ │ ├── temaki_board_light_rail.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_board_light_rail.png │ │ ├── temaki_board_monorail.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_board_monorail.png │ │ ├── temaki_board_school_bus.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_board_school_bus.png │ │ ├── temaki_board_subway.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_board_subway.png │ │ ├── temaki_board_train.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_board_train.png │ │ ├── temaki_board_train_bullet.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_board_train_bullet.png │ │ ├── temaki_board_train_diesel.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_board_train_diesel.png │ │ ├── temaki_board_train_kids.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_board_train_kids.png │ │ ├── temaki_board_train_steam.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_board_train_steam.png │ │ ├── temaki_board_tram.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_board_tram.png │ │ ├── temaki_board_transit.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_board_transit.png │ │ ├── temaki_board_trolleybus.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_board_trolleybus.png │ │ ├── temaki_boat.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_boat.png │ │ ├── temaki_boat_floating.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_boat_floating.png │ │ ├── temaki_boat_ramp.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_boat_ramp.png │ │ ├── temaki_boat_rental.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_boat_rental.png │ │ ├── temaki_boat_repair.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_boat_repair.png │ │ ├── temaki_boat_tour.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_boat_tour.png │ │ ├── temaki_boating.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_boating.png │ │ ├── temaki_bollard.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_bollard.png │ │ ├── temaki_bollard_row.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_bollard_row.png │ │ ├── temaki_book_store.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_book_store.png │ │ ├── temaki_bottles.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_bottles.png │ │ ├── temaki_boulder1.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_boulder1.png │ │ ├── temaki_boulder2.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_boulder2.png │ │ ├── temaki_boulder3.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_boulder3.png │ │ ├── temaki_bowling.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_bowling.png │ │ ├── temaki_bowling_alt1.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_bowling_alt1.png │ │ ├── temaki_bread.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_bread.png │ │ ├── temaki_brick_trowel.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_brick_trowel.png │ │ ├── temaki_bridge.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_bridge.png │ │ ├── temaki_briefcase.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_briefcase.png │ │ ├── temaki_briefcase_bolt.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_briefcase_bolt.png │ │ ├── temaki_briefcase_cross.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_briefcase_cross.png │ │ ├── temaki_briefcase_info.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_briefcase_info.png │ │ ├── temaki_briefcase_shield.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_briefcase_shield.png │ │ ├── temaki_buffer_stop.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_buffer_stop.png │ │ ├── temaki_bulb.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_bulb.png │ │ ├── temaki_bulb2.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_bulb2.png │ │ ├── temaki_bulb3.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_bulb3.png │ │ ├── temaki_bulldozer.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_bulldozer.png │ │ ├── temaki_bulletin_board.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_bulletin_board.png │ │ ├── temaki_bunk_beds.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_bunk_beds.png │ │ ├── temaki_bunker.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_bunker.png │ │ ├── temaki_bunker_silo.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_bunker_silo.png │ │ ├── temaki_buoy.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_buoy.png │ │ ├── temaki_bus.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_bus.png │ │ ├── temaki_bus_guided.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_bus_guided.png │ │ ├── temaki_cabin.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_cabin.png │ │ ├── temaki_cable.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_cable.png │ │ ├── temaki_cable_device.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_cable_device.png │ │ ├── temaki_cable_manhole.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_cable_manhole.png │ │ ├── temaki_cable_meter.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_cable_meter.png │ │ ├── temaki_cable_shutoff.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_cable_shutoff.png │ │ ├── temaki_cairn.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_cairn.png │ │ ├── temaki_camper_trailer.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_camper_trailer.png │ │ ├── temaki_camper_trailer_dump.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_camper_trailer_dump.png │ │ ├── temaki_campfire.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_campfire.png │ │ ├── temaki_can.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_can.png │ │ ├── temaki_canoe.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_canoe.png │ │ ├── temaki_capitol.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_capitol.png │ │ ├── temaki_car_dealer.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_car_dealer.png │ │ ├── temaki_car_parked.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_car_parked.png │ │ ├── temaki_car_pool.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_car_pool.png │ │ ├── temaki_car_structure.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_car_structure.png │ │ ├── temaki_car_wash.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_car_wash.png │ │ ├── temaki_carport.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_carport.png │ │ ├── temaki_casino.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_casino.png │ │ ├── temaki_catering.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_catering.png │ │ ├── temaki_cattle_grid.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_cattle_grid.png │ │ ├── temaki_chairlift.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_chairlift.png │ │ ├── temaki_checkpoint.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_checkpoint.png │ │ ├── temaki_chefs_knife.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_chefs_knife.png │ │ ├── temaki_chicane_arrow.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_chicane_arrow.png │ │ ├── temaki_chimney.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_chimney.png │ │ ├── temaki_chocolate.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_chocolate.png │ │ ├── temaki_cleaver.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_cleaver.png │ │ ├── temaki_cliff_falling_rocks.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_cliff_falling_rocks.png │ │ ├── temaki_climbing.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_climbing.png │ │ ├── temaki_clock.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_clock.png │ │ ├── temaki_clothes_hanger.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_clothes_hanger.png │ │ ├── temaki_coffee.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_coffee.png │ │ ├── temaki_compass.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_compass.png │ │ ├── temaki_courthouse.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_courthouse.png │ │ ├── temaki_crane.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_crane.png │ │ ├── temaki_cross_country_skiing.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_cross_country_skiing.png │ │ ├── temaki_curtains.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_curtains.png │ │ ├── temaki_cycle_barrier.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_cycle_barrier.png │ │ ├── temaki_cyclist_crosswalk.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_cyclist_crosswalk.png │ │ ├── temaki_dagger.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_dagger.png │ │ ├── temaki_desk_lamp.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_desk_lamp.png │ │ ├── temaki_diamond.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_diamond.png │ │ ├── temaki_dice.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_dice.png │ │ ├── temaki_disc_golf_basket.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_disc_golf_basket.png │ │ ├── temaki_diving.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_diving.png │ │ ├── temaki_dog_shelter.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_dog_shelter.png │ │ ├── temaki_domed_tower.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_domed_tower.png │ │ ├── temaki_donut.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_donut.png │ │ ├── temaki_drag_lift.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_drag_lift.png │ │ ├── temaki_dress.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_dress.png │ │ ├── temaki_ear.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_ear.png │ │ ├── temaki_egg.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_egg.png │ │ ├── temaki_electronic.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_electronic.png │ │ ├── temaki_elevator.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_elevator.png │ │ ├── temaki_embassy.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_embassy.png │ │ ├── temaki_fashion_accessories.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_fashion_accessories.png │ │ ├── temaki_ferry.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_ferry.png │ │ ├── temaki_field_hockey.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_field_hockey.png │ │ ├── temaki_fire_hydrant.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_fire_hydrant.png │ │ ├── temaki_fireplace.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_fireplace.png │ │ ├── temaki_fish_cleaning.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_fish_cleaning.png │ │ ├── temaki_fish_ladder.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_fish_ladder.png │ │ ├── temaki_fishing_pier.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_fishing_pier.png │ │ ├── temaki_florist.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_florist.png │ │ ├── temaki_food.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_food.png │ │ ├── temaki_fountain.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_fountain.png │ │ ├── temaki_freight_car.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_freight_car.png │ │ ├── temaki_furniture.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_furniture.png │ │ ├── temaki_garden_bed.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_garden_bed.png │ │ ├── temaki_gas.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_gas.png │ │ ├── temaki_gas_device.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_gas_device.png │ │ ├── temaki_gas_manhole.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_gas_manhole.png │ │ ├── temaki_gas_meter.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_gas_meter.png │ │ ├── temaki_gas_shutoff.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_gas_shutoff.png │ │ ├── temaki_gate.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_gate.png │ │ ├── temaki_golf_cart.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_golf_cart.png │ │ ├── temaki_golf_green.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_golf_green.png │ │ ├── temaki_gondola_lift.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_gondola_lift.png │ │ ├── temaki_goods_lift.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_goods_lift.png │ │ ├── temaki_gown.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_gown.png │ │ ├── temaki_grapes.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_grapes.png │ │ ├── temaki_grass.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_grass.png │ │ ├── temaki_guard_rail.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_guard_rail.png │ │ ├── temaki_gym.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_gym.png │ │ ├── temaki_hair_care.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_hair_care.png │ │ ├── temaki_hand.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_hand.png │ │ ├── temaki_handbag.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_handbag.png │ │ ├── temaki_hang_gliding.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_hang_gliding.png │ │ ├── temaki_hangar.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_hangar.png │ │ ├── temaki_hanging_rail.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_hanging_rail.png │ │ ├── temaki_hearing_aid.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_hearing_aid.png │ │ ├── temaki_heart.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_heart.png │ │ ├── temaki_heavy_rail.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_heavy_rail.png │ │ ├── temaki_hedge.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_hedge.png │ │ ├── temaki_height_restrictor.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_height_restrictor.png │ │ ├── temaki_hinduism.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_hinduism.png │ │ ├── temaki_horse_shelter.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_horse_shelter.png │ │ ├── temaki_horseshoe.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_horseshoe.png │ │ ├── temaki_horseshoes.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_horseshoes.png │ │ ├── temaki_houseboat.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_houseboat.png │ │ ├── temaki_ice_fishing.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_ice_fishing.png │ │ ├── temaki_ice_skating.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_ice_skating.png │ │ ├── temaki_info_board.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_info_board.png │ │ ├── temaki_inline_skating.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_inline_skating.png │ │ ├── temaki_island_trees_building.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_island_trees_building.png │ │ ├── temaki_islet_tree.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_islet_tree.png │ │ ├── temaki_j_bar_lift.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_j_bar_lift.png │ │ ├── temaki_jet_skiing.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_jet_skiing.png │ │ ├── temaki_jetplane_front.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_jetplane_front.png │ │ ├── temaki_jewelry_store.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_jewelry_store.png │ │ ├── temaki_junction.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_junction.png │ │ ├── temaki_junk_car.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_junk_car.png │ │ ├── temaki_kayaking.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_kayaking.png │ │ ├── temaki_kerb_flush.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_kerb_flush.png │ │ ├── temaki_kerb_lowered.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_kerb_lowered.png │ │ ├── temaki_kerb_raised.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_kerb_raised.png │ │ ├── temaki_kerb_rolled.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_kerb_rolled.png │ │ ├── temaki_kitchen_sink.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_kitchen_sink.png │ │ ├── temaki_laundry.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_laundry.png │ │ ├── temaki_lawn.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_lawn.png │ │ ├── temaki_lawyer.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_lawyer.png │ │ ├── temaki_letter_box.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_letter_box.png │ │ ├── temaki_library.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_library.png │ │ ├── temaki_lift_gate.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_lift_gate.png │ │ ├── temaki_light_rail.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_light_rail.png │ │ ├── temaki_lipstick.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_lipstick.png │ │ ├── temaki_lock.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_lock.png │ │ ├── temaki_manhole.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_manhole.png │ │ ├── temaki_manufactured_home.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_manufactured_home.png │ │ ├── temaki_mast.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_mast.png │ │ ├── temaki_mast_communication.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_mast_communication.png │ │ ├── temaki_meat.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_meat.png │ │ ├── temaki_milestone.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_milestone.png │ │ ├── temaki_military.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_military.png │ │ ├── temaki_military_checkpoint.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_military_checkpoint.png │ │ ├── temaki_mineshaft_cage.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_mineshaft_cage.png │ │ ├── temaki_mineshaft_profile.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_mineshaft_profile.png │ │ ├── temaki_money_hand.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_money_hand.png │ │ ├── temaki_monorail.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_monorail.png │ │ ├── temaki_motorcycle.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_motorcycle.png │ │ ├── temaki_motorcycle_rental.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_motorcycle_rental.png │ │ ├── temaki_motorcycle_repair.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_motorcycle_repair.png │ │ ├── temaki_mountain_range.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_mountain_range.png │ │ ├── temaki_mountain_rescue.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_mountain_rescue.png │ │ ├── temaki_movie_rental.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_movie_rental.png │ │ ├── temaki_museum.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_museum.png │ │ ├── temaki_needle_and_spool.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_needle_and_spool.png │ │ ├── temaki_oil_well.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_oil_well.png │ │ ├── temaki_os_benchmark.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_os_benchmark.png │ │ ├── temaki_parking_space.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_parking_space.png │ │ ├── temaki_passport_checkpoint.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_passport_checkpoint.png │ │ ├── temaki_ped_cyclist_crosswalk.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_ped_cyclist_crosswalk.png │ │ ├── temaki_pedestrian.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_pedestrian.png │ │ ├── temaki_pedestrian_and_cyclist.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_pedestrian_and_cyclist.png │ │ ├── temaki_pedestrian_crosswalk.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_pedestrian_crosswalk.png │ │ ├── temaki_pedestrian_walled.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_pedestrian_walled.png │ │ ├── temaki_perfume.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_perfume.png │ │ ├── temaki_pet_grooming.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_pet_grooming.png │ │ ├── temaki_pet_store.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_pet_store.png │ │ ├── temaki_pharmacy.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_pharmacy.png │ │ ├── temaki_physiotherapist.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_physiotherapist.png │ │ ├── temaki_pick_hammer.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_pick_hammer.png │ │ ├── temaki_picnic_shelter.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_picnic_shelter.png │ │ ├── temaki_pier_fixed.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_pier_fixed.png │ │ ├── temaki_pier_floating.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_pier_floating.png │ │ ├── temaki_pin.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_pin.png │ │ ├── temaki_pipe.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_pipe.png │ │ ├── temaki_plane_taxiing.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_plane_taxiing.png │ │ ├── temaki_planes.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_planes.png │ │ ├── temaki_planes_bidirectional.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_planes_bidirectional.png │ │ ├── temaki_plaque.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_plaque.png │ │ ├── temaki_platter_lift.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_platter_lift.png │ │ ├── temaki_play_structure.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_play_structure.png │ │ ├── temaki_plumber.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_plumber.png │ │ ├── temaki_police_checkpoint.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_police_checkpoint.png │ │ ├── temaki_police_officer.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_police_officer.png │ │ ├── temaki_polished_nail.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_polished_nail.png │ │ ├── temaki_post_box.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_post_box.png │ │ ├── temaki_poster_box.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_poster_box.png │ │ ├── temaki_power.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_power.png │ │ ├── temaki_power_cb.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_power_cb.png │ │ ├── temaki_power_cb2.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_power_cb2.png │ │ ├── temaki_power_circuit.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_power_circuit.png │ │ ├── temaki_power_ct.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_power_ct.png │ │ ├── temaki_power_device.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_power_device.png │ │ ├── temaki_power_isolator.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_power_isolator.png │ │ ├── temaki_power_la.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_power_la.png │ │ ├── temaki_power_manhole.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_power_manhole.png │ │ ├── temaki_power_meter.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_power_meter.png │ │ ├── temaki_power_pole.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_power_pole.png │ │ ├── temaki_power_shutoff.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_power_shutoff.png │ │ ├── temaki_power_switch.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_power_switch.png │ │ ├── temaki_power_tower.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_power_tower.png │ │ ├── temaki_power_transformer.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_power_transformer.png │ │ ├── temaki_powered_pump.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_powered_pump.png │ │ ├── temaki_propane_tank.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_propane_tank.png │ │ ├── temaki_psychic.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_psychic.png │ │ ├── temaki_quakerism.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_quakerism.png │ │ ├── temaki_racetrack_oval.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_racetrack_oval.png │ │ ├── temaki_radiation.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_radiation.png │ │ ├── temaki_radio.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_radio.png │ │ ├── temaki_rafting.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_rafting.png │ │ ├── temaki_rail_flag.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_rail_flag.png │ │ ├── temaki_rail_profile.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_rail_profile.png │ │ ├── temaki_railing.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_railing.png │ │ ├── temaki_railway_cable_track.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_railway_cable_track.png │ │ ├── temaki_railway_signals.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_railway_signals.png │ │ ├── temaki_railway_track.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_railway_track.png │ │ ├── temaki_railway_track_askew.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_railway_track_askew.png │ │ ├── temaki_railway_track_mini.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_railway_track_mini.png │ │ ├── temaki_railway_track_narrow.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_railway_track_narrow.png │ │ ├── temaki_railway_track_partial.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_railway_track_partial.png │ │ ├── temaki_real_estate_agency.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_real_estate_agency.png │ │ ├── temaki_rocket_firework.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_rocket_firework.png │ │ ├── temaki_roller_coaster.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_roller_coaster.png │ │ ├── temaki_rope_fence.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_rope_fence.png │ │ ├── temaki_row_houses.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_row_houses.png │ │ ├── temaki_ruins.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_ruins.png │ │ ├── temaki_rumble_strip.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_rumble_strip.png │ │ ├── temaki_saddle.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_saddle.png │ │ ├── temaki_sailing.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_sailing.png │ │ ├── temaki_sandwich.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_sandwich.png │ │ ├── temaki_scaffold.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_scaffold.png │ │ ├── temaki_school.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_school.png │ │ ├── temaki_school_bus.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_school_bus.png │ │ ├── temaki_scuba_diving.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_scuba_diving.png │ │ ├── temaki_sculpture.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_sculpture.png │ │ ├── temaki_security_camera.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_security_camera.png │ │ ├── temaki_shield.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_shield.png │ │ ├── temaki_shinto.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_shinto.png │ │ ├── temaki_shopping_mall.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_shopping_mall.png │ │ ├── temaki_shower.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_shower.png │ │ ├── temaki_shrub.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_shrub.png │ │ ├── temaki_shrub_low.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_shrub_low.png │ │ ├── temaki_shuffleboard.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_shuffleboard.png │ │ ├── temaki_sign_and_bench.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_sign_and_bench.png │ │ ├── temaki_sign_and_car.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_sign_and_car.png │ │ ├── temaki_sign_and_pedestrian.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_sign_and_pedestrian.png │ │ ├── temaki_sikhism.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_sikhism.png │ │ ├── temaki_silo.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_silo.png │ │ ├── temaki_skateboarding.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_skateboarding.png │ │ ├── temaki_ski_jumping.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_ski_jumping.png │ │ ├── temaki_skiing.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_skiing.png │ │ ├── temaki_sledding.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_sledding.png │ │ ├── temaki_sleep_shelter.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_sleep_shelter.png │ │ ├── temaki_slide.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_slide.png │ │ ├── temaki_snow.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_snow.png │ │ ├── temaki_snow_shoeing.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_snow_shoeing.png │ │ ├── temaki_snowboarding.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_snowboarding.png │ │ ├── temaki_snowmobile.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_snowmobile.png │ │ ├── temaki_social_facility.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_social_facility.png │ │ ├── temaki_spa.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_spa.png │ │ ├── temaki_speaker.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_speaker.png │ │ ├── temaki_speed_bump.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_speed_bump.png │ │ ├── temaki_speed_dip.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_speed_dip.png │ │ ├── temaki_speed_dip_double.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_speed_dip_double.png │ │ ├── temaki_speed_hump.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_speed_hump.png │ │ ├── temaki_speed_table.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_speed_table.png │ │ ├── temaki_speedway_8.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_speedway_8.png │ │ ├── temaki_speedway_oval.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_speedway_oval.png │ │ ├── temaki_spice_bottle.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_spice_bottle.png │ │ ├── temaki_spike_strip.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_spike_strip.png │ │ ├── temaki_spotting_scope.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_spotting_scope.png │ │ ├── temaki_stamp.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_stamp.png │ │ ├── temaki_statue.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_statue.png │ │ ├── temaki_stile_squeezer.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_stile_squeezer.png │ │ ├── temaki_stop.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_stop.png │ │ ├── temaki_storage.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_storage.png │ │ ├── temaki_storage_drum.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_storage_drum.png │ │ ├── temaki_storage_fermenter.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_storage_fermenter.png │ │ ├── temaki_storage_rental.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_storage_rental.png │ │ ├── temaki_storage_tank.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_storage_tank.png │ │ ├── temaki_street_lamp_arm.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_street_lamp_arm.png │ │ ├── temaki_striped_way.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_striped_way.png │ │ ├── temaki_striped_zone.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_striped_zone.png │ │ ├── temaki_subway.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_subway.png │ │ ├── temaki_suitcase.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_suitcase.png │ │ ├── temaki_suitcase_key.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_suitcase_key.png │ │ ├── temaki_suitcase_xray.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_suitcase_xray.png │ │ ├── temaki_surfing.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_surfing.png │ │ ├── temaki_swamp.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_swamp.png │ │ ├── temaki_t_bar_lift.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_t_bar_lift.png │ │ ├── temaki_tall_gate.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_tall_gate.png │ │ ├── temaki_tanning.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_tanning.png │ │ ├── temaki_tanning2.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_tanning2.png │ │ ├── temaki_taoism.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_taoism.png │ │ ├── temaki_tattoo_machine.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_tattoo_machine.png │ │ ├── temaki_taxi_stand.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_taxi_stand.png │ │ ├── temaki_telephone.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_telephone.png │ │ ├── temaki_telescope.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_telescope.png │ │ ├── temaki_temaki.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_temaki.png │ │ ├── temaki_tennis.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_tennis.png │ │ ├── temaki_ticket.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_ticket.png │ │ ├── temaki_tiling.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_tiling.png │ │ ├── temaki_tire.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_tire.png │ │ ├── temaki_tire_course.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_tire_course.png │ │ ├── temaki_toolbox.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_toolbox.png │ │ ├── temaki_tools.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_tools.png │ │ ├── temaki_tower.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_tower.png │ │ ├── temaki_tower_communication.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_tower_communication.png │ │ ├── temaki_town_hall.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_town_hall.png │ │ ├── temaki_traffic_signals.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_traffic_signals.png │ │ ├── temaki_train.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_train.png │ │ ├── temaki_train_bullet.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_train_bullet.png │ │ ├── temaki_train_diesel.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_train_diesel.png │ │ ├── temaki_train_kids.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_train_kids.png │ │ ├── temaki_train_steam.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_train_steam.png │ │ ├── temaki_train_wash.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_train_wash.png │ │ ├── temaki_tram.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_tram.png │ │ ├── temaki_transit.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_transit.png │ │ ├── temaki_transit_shelter.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_transit_shelter.png │ │ ├── temaki_tree_and_bench.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_tree_and_bench.png │ │ ├── temaki_tree_row.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_tree_row.png │ │ ├── temaki_trench.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_trench.png │ │ ├── temaki_trolleybus.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_trolleybus.png │ │ ├── temaki_truck.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_truck.png │ │ ├── temaki_tunnel.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_tunnel.png │ │ ├── temaki_turnstile.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_turnstile.png │ │ ├── temaki_utility_pole.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_utility_pole.png │ │ ├── temaki_vacuum.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_vacuum.png │ │ ├── temaki_valley.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_valley.png │ │ ├── temaki_vase.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_vase.png │ │ ├── temaki_vending_bread.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_vending_bread.png │ │ ├── temaki_vending_cigarettes.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_vending_cigarettes.png │ │ ├── temaki_vending_cold_drink.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_vending_cold_drink.png │ │ ├── temaki_vending_cold_drink2.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_vending_cold_drink2.png │ │ ├── temaki_vending_eggs.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_vending_eggs.png │ │ ├── temaki_vending_flat_coin.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_vending_flat_coin.png │ │ ├── temaki_vending_hot_drink.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_vending_hot_drink.png │ │ ├── temaki_vending_hot_drink2.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_vending_hot_drink2.png │ │ ├── temaki_vending_ice.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_vending_ice.png │ │ ├── temaki_vending_ice_cream.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_vending_ice_cream.png │ │ ├── temaki_vending_ice_cream2.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_vending_ice_cream2.png │ │ ├── temaki_vending_lockers.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_vending_lockers.png │ │ ├── temaki_vending_love.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_vending_love.png │ │ ├── temaki_vending_machine.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_vending_machine.png │ │ ├── temaki_vending_medicine.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_vending_medicine.png │ │ ├── temaki_vending_newspaper.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_vending_newspaper.png │ │ ├── temaki_vending_pet_waste.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_vending_pet_waste.png │ │ ├── temaki_vending_stamps.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_vending_stamps.png │ │ ├── temaki_vending_tickets.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_vending_tickets.png │ │ ├── temaki_vending_venus.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_vending_venus.png │ │ ├── temaki_vertex.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_vertex.png │ │ ├── temaki_vertical_rotisserie.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_vertical_rotisserie.png │ │ ├── temaki_veterinary_care.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_veterinary_care.png │ │ ├── temaki_wall.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_wall.png │ │ ├── temaki_waste.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_waste.png │ │ ├── temaki_waste_device.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_waste_device.png │ │ ├── temaki_waste_manhole.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_waste_manhole.png │ │ ├── temaki_waste_meter.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_waste_meter.png │ │ ├── temaki_waste_shutoff.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_waste_shutoff.png │ │ ├── temaki_water.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_water.png │ │ ├── temaki_water_device.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_water_device.png │ │ ├── temaki_water_manhole.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_water_manhole.png │ │ ├── temaki_water_meter.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_water_meter.png │ │ ├── temaki_water_shutoff.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_water_shutoff.png │ │ ├── temaki_water_tap.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_water_tap.png │ │ ├── temaki_water_tap_drinkable.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_water_tap_drinkable.png │ │ ├── temaki_water_tower.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_water_tower.png │ │ ├── temaki_waterskiing.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_waterskiing.png │ │ ├── temaki_well_pump_manual.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_well_pump_manual.png │ │ ├── temaki_well_pump_powered.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_well_pump_powered.png │ │ ├── temaki_whale_watching.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_whale_watching.png │ │ ├── temaki_wheel.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_wheel.png │ │ ├── temaki_wheelchair.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_wheelchair.png │ │ ├── temaki_wheelchair_active.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_wheelchair_active.png │ │ ├── temaki_wind_surfing.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_wind_surfing.png │ │ ├── temaki_wind_turbine.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_wind_turbine.png │ │ ├── temaki_windmill.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_windmill.png │ │ ├── temaki_window.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_window.png │ │ ├── temaki_windsock.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_windsock.png │ │ ├── temaki_yield.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_yield.png │ │ └── temaki_zoo.imageset │ │ │ ├── Contents.json │ │ │ └── temaki_zoo.png │ ├── Info.plist │ ├── Monospace.ttf │ ├── NSObject+DTRuntime.h │ ├── NSObject+DTRuntime.m │ ├── NSURLSessionConfiguration+Cookie.h │ ├── NSURLSessionConfiguration+Cookie.m │ ├── Observe.entitlements │ ├── main.m │ ├── osm.json │ └── satellite.json ├── ObserveTests │ ├── Info.plist │ └── ObserveTests.m ├── Podfile ├── Podfile.lock └── Pods │ └── Manifest.lock ├── metro.config.js ├── package.json ├── scripts ├── create-ios-icon-contents.js └── link-icons.sh ├── update-icons.sh ├── version.sh └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/.buckconfig -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/.env.sample -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/App.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/redux-persist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/__mocks__/redux-persist.js -------------------------------------------------------------------------------- /__tests__/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/__tests__/App.js -------------------------------------------------------------------------------- /__tests__/actions/map.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/__tests__/actions/map.test.js -------------------------------------------------------------------------------- /__tests__/fixtures/nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/__tests__/fixtures/nodes.json -------------------------------------------------------------------------------- /__tests__/fixtures/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/__tests__/fixtures/state.json -------------------------------------------------------------------------------- /__tests__/setup/mock-fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/__tests__/setup/mock-fetch.js -------------------------------------------------------------------------------- /__tests__/setup/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/__tests__/setup/mock.js -------------------------------------------------------------------------------- /__tests__/test-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/__tests__/test-utils.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/src/main/assets/osm.json: -------------------------------------------------------------------------------- 1 | ../../../../../app/assets/osm.json -------------------------------------------------------------------------------- /android/app/src/main/assets/satellite.json: -------------------------------------------------------------------------------- 1 | ../../../../../app/assets/satellite.json -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/far_clone.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/far_clone.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/far_dot_circle.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/far_dot_circle.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_ambulance.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_ambulance.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_apple_alt.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_apple_alt.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_archive.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_archive.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_archway.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_archway.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_baby.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_baby.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_bath.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_bath.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_beer.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_beer.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_bell.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_bell.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_biking.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_biking.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_blender.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_blender.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_book.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_book.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_box.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_box.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_box_open.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_box_open.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_bullseye.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_bullseye.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_burn.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_burn.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_cannabis.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_cannabis.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_car_crash.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_car_crash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_carrot.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_carrot.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_cat.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_cat.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_cheese.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_cheese.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_chess_pawn.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_chess_pawn.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_child.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_child.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_church.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_church.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_code.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_code.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_coins.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_coins.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_comment.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_comment.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_comments.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_comments.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_couch.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_couch.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_crown.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_crown.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_crutch.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_crutch.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_cube.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_cube.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_cut.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_cut.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_dice.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_dice.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_directions.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_directions.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_dolly.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_dolly.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_door_open.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_door_open.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_dragon.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_dragon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_dumbbell.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_dumbbell.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_dumpster.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_dumpster.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_dungeon.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_dungeon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_eye.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_eye.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_film.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_film.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_fish.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_fish.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_flask.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_flask.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_frog.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_frog.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_futbol.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_futbol.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_gavel.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_gavel.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_guitar.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_guitar.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_handshake.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_handshake.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_hashtag.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_hashtag.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_hiking.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_hiking.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_horse.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_horse.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_hotdog.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_hotdog.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_hotel.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_hotel.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_i_cursor.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_i_cursor.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_ice_cream.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_ice_cream.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_key.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_key.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_laptop.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_laptop.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_leaf.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_leaf.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_life_ring.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_life_ring.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_lock.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_lock.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_mail_bulk.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_mail_bulk.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_map.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_map.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_map_signs.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_map_signs.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_medkit.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_medkit.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_microchip.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_microchip.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_microphone.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_microphone.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_mobile_alt.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_mobile_alt.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_mosque.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_mosque.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_motorcycle.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_motorcycle.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_music.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_music.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_newspaper.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_newspaper.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_paperclip.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_paperclip.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_pepper_hot.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_pepper_hot.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_pills.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_pills.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_plane.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_plane.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_plug.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_plug.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_plus.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_plus.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_print.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_print.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_question.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_question.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_rocket.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_rocket.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_school.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_school.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_seedling.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_seedling.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_server.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_server.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_shapes.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_shapes.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_share_alt.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_share_alt.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_skating.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_skating.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_skiing.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_skiing.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_sleigh.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_sleigh.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_smoking.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_smoking.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_stamp.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_stamp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_store.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_store.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_suitcase.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_suitcase.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_swimmer.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_swimmer.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_tags.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_tags.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_tape.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_tape.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_taxi.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_taxi.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_teeth.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_teeth.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_th.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_th.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_th_list.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_th_list.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_ticket_alt.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_ticket_alt.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_tint_slash.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_tint_slash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_toilet.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_toilet.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_tractor.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_tractor.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_tram.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_tram.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_user_alt.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_user_alt.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_user_cog.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_user_cog.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_user_tie.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_user_tie.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_users.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_users.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_vial.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_vial.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_video.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_video.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_volume_up.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_volume_up.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_vote_yea.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_vote_yea.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_warehouse.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_warehouse.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_weight.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_weight.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_wifi.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_wifi.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/fas_yin_yang.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/fontawesome/fas_yin_yang.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_aerialway.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_aerialway.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_airfield.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_airfield.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_airport.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_airport.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_alcohol_shop.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_alcohol_shop.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_aquarium.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_aquarium.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_art_gallery.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_art_gallery.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_attraction.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_attraction.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_bakery.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_bakery.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_bank.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_bank.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_bank_jp.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_bank_jp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_bar.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_bar.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_barrier.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_barrier.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_baseball.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_baseball.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_basketball.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_basketball.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_bbq.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_bbq.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_beach.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_beach.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_beer.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_beer.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_bicycle.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_bicycle.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_blood_bank.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_blood_bank.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_bridge.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_bridge.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_building.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_building.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_bus.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_bus.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_cafe.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_cafe.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_campsite.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_campsite.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_car.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_car.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_car_rental.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_car_rental.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_car_repair.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_car_repair.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_casino.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_casino.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_castle.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_castle.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_castle_jp.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_castle_jp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_cemetery.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_cemetery.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_cemetery_jp.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_cemetery_jp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_cinema.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_cinema.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_circle.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_circle.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_city.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_city.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_college.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_college.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_college_jp.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_college_jp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_commercial.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_commercial.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_convenience.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_convenience.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_cricket.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_cricket.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_cross.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_cross.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_dam.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_dam.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_danger.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_danger.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_dentist.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_dentist.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_doctor.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_doctor.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_dog_park.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_dog_park.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_embassy.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_embassy.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_entrance.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_entrance.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_farm.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_farm.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_fast_food.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_fast_food.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_fence.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_fence.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_ferry.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_ferry.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_fire_station.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_fire_station.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_florist.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_florist.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_fuel.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_fuel.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_furniture.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_furniture.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_gaming.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_gaming.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_garden.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_garden.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_gift.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_gift.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_globe.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_globe.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_golf.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_golf.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_grocery.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_grocery.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_hairdresser.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_hairdresser.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_harbor.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_harbor.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_hardware.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_hardware.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_heart.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_heart.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_heliport.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_heliport.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_home.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_home.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_horse_riding.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_horse_riding.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_hospital.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_hospital.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_hospital_jp.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_hospital_jp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_ice_cream.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_ice_cream.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_industry.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_industry.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_information.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_information.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_karaoke.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_karaoke.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_landmark.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_landmark.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_landmark_jp.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_landmark_jp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_landuse.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_landuse.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_laundry.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_laundry.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_library.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_library.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_lighthouse.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_lighthouse.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_lodging.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_lodging.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_logging.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_logging.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_marker.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_marker.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_mobile_phone.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_mobile_phone.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_monument.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_monument.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_mountain.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_mountain.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_museum.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_museum.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_music.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_music.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_natural.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_natural.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_optician.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_optician.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_paint.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_paint.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_park.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_park.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_park_alt1.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_park_alt1.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_parking.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_parking.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_pharmacy.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_pharmacy.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_picnic_site.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_picnic_site.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_pitch.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_pitch.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_playground.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_playground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_police.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_police.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_police_jp.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_police_jp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_post.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_post.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_post_jp.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_post_jp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_prison.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_prison.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_rail.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_rail.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_rail_light.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_rail_light.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_rail_metro.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_rail_metro.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_recycling.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_recycling.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_restaurant.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_restaurant.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_roadblock.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_roadblock.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_rocket.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_rocket.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_school.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_school.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_school_jp.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_school_jp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_scooter.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_scooter.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_shelter.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_shelter.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_shoe.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_shoe.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_shop.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_shop.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_skateboard.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_skateboard.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_skiing.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_skiing.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_slipway.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_slipway.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_snowmobile.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_snowmobile.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_soccer.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_soccer.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_square.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_square.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_stadium.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_stadium.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_star.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_star.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_star_stroked.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_star_stroked.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_suitcase.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_suitcase.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_sushi.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_sushi.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_swimming.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_swimming.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_table_tennis.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_table_tennis.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_teahouse.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_teahouse.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_telephone.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_telephone.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_tennis.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_tennis.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_theatre.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_theatre.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_toilet.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_toilet.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_town.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_town.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_town_hall.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_town_hall.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_triangle.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_triangle.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_veterinary.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_veterinary.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_viewpoint.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_viewpoint.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_village.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_village.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_volcano.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_volcano.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_volleyball.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_volleyball.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_warehouse.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_warehouse.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_waste_basket.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_waste_basket.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_watch.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_watch.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_water.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_water.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_waterfall.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_waterfall.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_watermill.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_watermill.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_wetland.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_wetland.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_wheelchair.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_wheelchair.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_windmill.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_windmill.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/maki_zoo.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/maki/maki_zoo.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_abseiling.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_abseiling.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_airport.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_airport.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_antenna.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_antenna.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_anvil.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_anvil.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_archery.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_archery.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_army_tent.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_army_tent.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_atm.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_atm.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_balloon.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_balloon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_barn.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_barn.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_beach.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_beach.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_bench.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_bench.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_billboard.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_billboard.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_bleachers.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_bleachers.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_blind.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_blind.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_board_bus.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_board_bus.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_boat.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_boat.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_boat_ramp.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_boat_ramp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_boat_tour.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_boat_tour.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_boating.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_boating.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_bollard.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_bollard.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_bottles.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_bottles.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_boulder1.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_boulder1.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_boulder2.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_boulder2.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_boulder3.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_boulder3.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_bowling.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_bowling.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_bread.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_bread.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_bridge.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_bridge.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_briefcase.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_briefcase.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_bulb.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_bulb.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_bulb2.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_bulb2.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_bulb3.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_bulb3.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_bulldozer.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_bulldozer.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_bunk_beds.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_bunk_beds.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_bunker.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_bunker.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_buoy.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_buoy.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_bus.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_bus.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_cabin.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_cabin.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_cable.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_cable.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_cairn.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_cairn.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_campfire.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_campfire.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_can.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_can.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_canoe.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_canoe.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_capitol.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_capitol.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_car_pool.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_car_pool.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_car_wash.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_car_wash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_carport.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_carport.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_casino.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_casino.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_catering.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_catering.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_chairlift.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_chairlift.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_chimney.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_chimney.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_chocolate.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_chocolate.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_cleaver.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_cleaver.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_climbing.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_climbing.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_clock.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_clock.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_coffee.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_coffee.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_compass.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_compass.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_crane.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_crane.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_curtains.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_curtains.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_dagger.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_dagger.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_desk_lamp.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_desk_lamp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_diamond.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_diamond.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_dice.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_dice.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_diving.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_diving.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_donut.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_donut.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_drag_lift.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_drag_lift.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_dress.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_dress.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_ear.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_ear.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_egg.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_egg.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_elevator.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_elevator.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_embassy.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_embassy.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_ferry.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_ferry.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_fireplace.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_fireplace.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_florist.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_florist.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_food.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_food.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_fountain.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_fountain.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_furniture.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_furniture.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_gas.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_gas.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_gas_meter.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_gas_meter.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_gate.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_gate.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_golf_cart.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_golf_cart.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_gown.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_gown.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_grapes.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_grapes.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_grass.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_grass.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_gym.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_gym.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_hair_care.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_hair_care.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_hand.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_hand.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_handbag.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_handbag.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_hangar.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_hangar.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_heart.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_heart.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_hedge.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_hedge.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_hinduism.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_hinduism.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_horseshoe.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_horseshoe.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_houseboat.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_houseboat.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_junction.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_junction.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_junk_car.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_junk_car.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_kayaking.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_kayaking.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_laundry.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_laundry.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_lawn.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_lawn.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_lawyer.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_lawyer.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_library.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_library.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_lift_gate.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_lift_gate.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_lipstick.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_lipstick.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_lock.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_lock.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_manhole.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_manhole.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_mast.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_mast.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_meat.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_meat.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_milestone.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_milestone.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_military.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_military.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_monorail.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_monorail.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_museum.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_museum.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_oil_well.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_oil_well.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_perfume.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_perfume.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_pet_store.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_pet_store.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_pharmacy.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_pharmacy.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_pin.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_pin.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_pipe.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_pipe.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_planes.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_planes.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_plaque.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_plaque.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_plumber.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_plumber.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_post_box.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_post_box.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_power.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_power.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_power_cb.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_power_cb.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_power_cb2.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_power_cb2.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_power_ct.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_power_ct.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_power_la.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_power_la.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_psychic.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_psychic.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_quakerism.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_quakerism.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_radiation.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_radiation.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_radio.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_radio.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_rafting.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_rafting.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_rail_flag.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_rail_flag.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_railing.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_railing.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_ruins.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_ruins.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_saddle.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_saddle.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_sailing.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_sailing.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_sandwich.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_sandwich.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_scaffold.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_scaffold.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_school.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_school.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_sculpture.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_sculpture.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_shield.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_shield.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_shinto.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_shinto.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_shower.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_shower.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_shrub.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_shrub.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_shrub_low.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_shrub_low.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_sikhism.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_sikhism.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_silo.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_silo.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_skiing.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_skiing.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_sledding.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_sledding.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_slide.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_slide.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_snow.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_snow.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_spa.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_spa.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_speaker.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_speaker.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_speed_dip.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_speed_dip.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_stamp.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_stamp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_statue.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_statue.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_stop.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_stop.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_storage.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_storage.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_subway.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_subway.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_suitcase.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_suitcase.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_surfing.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_surfing.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_swamp.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_swamp.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_tall_gate.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_tall_gate.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_tanning.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_tanning.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_tanning2.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_tanning2.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_taoism.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_taoism.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_telephone.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_telephone.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_telescope.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_telescope.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_temaki.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_temaki.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_tennis.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_tennis.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_ticket.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_ticket.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_tiling.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_tiling.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_tire.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_tire.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_toolbox.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_toolbox.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_tools.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_tools.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_tower.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_tower.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_town_hall.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_town_hall.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_train.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_train.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_tram.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_tram.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_transit.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_transit.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_tree_row.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_tree_row.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_trench.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_trench.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_truck.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_truck.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_tunnel.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_tunnel.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_turnstile.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_turnstile.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_vacuum.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_vacuum.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_valley.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_valley.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_vase.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_vase.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_vertex.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_vertex.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_wall.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_wall.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_waste.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_waste.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_water.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_water.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_water_tap.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_water_tap.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_wheel.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_wheel.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_windmill.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_windmill.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_window.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_window.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_windsock.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_windsock.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_yield.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_yield.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/temaki_zoo.png: -------------------------------------------------------------------------------- 1 | ../../../../../../app/assets/temaki/temaki_zoo.png -------------------------------------------------------------------------------- /android/app/version.properties: -------------------------------------------------------------------------------- 1 | VERSION_CODE=18 2 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app.json -------------------------------------------------------------------------------- /app/actions/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/actions/about.js -------------------------------------------------------------------------------- /app/actions/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/actions/account.js -------------------------------------------------------------------------------- /app/actions/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/actions/actionTypes.js -------------------------------------------------------------------------------- /app/actions/authorization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/actions/authorization.js -------------------------------------------------------------------------------- /app/actions/camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/actions/camera.js -------------------------------------------------------------------------------- /app/actions/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/actions/edit.js -------------------------------------------------------------------------------- /app/actions/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/actions/map.js -------------------------------------------------------------------------------- /app/actions/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/actions/notification.js -------------------------------------------------------------------------------- /app/actions/observeApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/actions/observeApi.js -------------------------------------------------------------------------------- /app/actions/traces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/actions/traces.js -------------------------------------------------------------------------------- /app/actions/undoable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/actions/undoable.js -------------------------------------------------------------------------------- /app/actions/wayEditing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/actions/wayEditing.js -------------------------------------------------------------------------------- /app/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/assets/icons.js -------------------------------------------------------------------------------- /app/assets/maki/maki_bank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/assets/maki/maki_bank.png -------------------------------------------------------------------------------- /app/assets/maki/maki_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/assets/maki/maki_bar.png -------------------------------------------------------------------------------- /app/assets/maki/maki_bbq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/assets/maki/maki_bbq.png -------------------------------------------------------------------------------- /app/assets/maki/maki_beer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/assets/maki/maki_beer.png -------------------------------------------------------------------------------- /app/assets/maki/maki_bus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/assets/maki/maki_bus.png -------------------------------------------------------------------------------- /app/assets/maki/maki_cafe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/assets/maki/maki_cafe.png -------------------------------------------------------------------------------- /app/assets/maki/maki_car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/assets/maki/maki_car.png -------------------------------------------------------------------------------- /app/assets/maki/maki_city.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/assets/maki/maki_city.png -------------------------------------------------------------------------------- /app/assets/maki/maki_dam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/assets/maki/maki_dam.png -------------------------------------------------------------------------------- /app/assets/maki/maki_farm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/assets/maki/maki_farm.png -------------------------------------------------------------------------------- /app/assets/maki/maki_fuel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/assets/maki/maki_fuel.png -------------------------------------------------------------------------------- /app/assets/maki/maki_gift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/assets/maki/maki_gift.png -------------------------------------------------------------------------------- /app/assets/maki/maki_golf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/assets/maki/maki_golf.png -------------------------------------------------------------------------------- /app/assets/maki/maki_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/assets/maki/maki_home.png -------------------------------------------------------------------------------- /app/assets/maki/maki_park.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/assets/maki/maki_park.png -------------------------------------------------------------------------------- /app/assets/maki/maki_post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/assets/maki/maki_post.png -------------------------------------------------------------------------------- /app/assets/maki/maki_rail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/assets/maki/maki_rail.png -------------------------------------------------------------------------------- /app/assets/maki/maki_shoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/assets/maki/maki_shoe.png -------------------------------------------------------------------------------- /app/assets/maki/maki_shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/assets/maki/maki_shop.png -------------------------------------------------------------------------------- /app/assets/maki/maki_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/assets/maki/maki_star.png -------------------------------------------------------------------------------- /app/components/Conflict.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/components/Conflict.js -------------------------------------------------------------------------------- /app/components/Container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/components/Container.js -------------------------------------------------------------------------------- /app/components/Drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/components/Drawer.js -------------------------------------------------------------------------------- /app/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/components/Header.js -------------------------------------------------------------------------------- /app/components/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/components/Input.js -------------------------------------------------------------------------------- /app/components/MegaMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/components/MegaMenu.js -------------------------------------------------------------------------------- /app/components/PhotoGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/components/PhotoGrid.js -------------------------------------------------------------------------------- /app/components/PhotoView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/components/PhotoView.js -------------------------------------------------------------------------------- /app/components/TagEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/components/TagEditor.js -------------------------------------------------------------------------------- /app/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/constants.js -------------------------------------------------------------------------------- /app/presets/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/presets/categories.json -------------------------------------------------------------------------------- /app/presets/fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/presets/fields.json -------------------------------------------------------------------------------- /app/presets/presets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/presets/presets.json -------------------------------------------------------------------------------- /app/presets/presets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/presets/presets.yaml -------------------------------------------------------------------------------- /app/presets/taginfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/presets/taginfo.json -------------------------------------------------------------------------------- /app/reducers/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/reducers/about.js -------------------------------------------------------------------------------- /app/reducers/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/reducers/account.js -------------------------------------------------------------------------------- /app/reducers/camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/reducers/camera.js -------------------------------------------------------------------------------- /app/reducers/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/reducers/edit.js -------------------------------------------------------------------------------- /app/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/reducers/index.js -------------------------------------------------------------------------------- /app/reducers/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/reducers/map.js -------------------------------------------------------------------------------- /app/reducers/observeApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/reducers/observeApi.js -------------------------------------------------------------------------------- /app/reducers/presets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/reducers/presets.js -------------------------------------------------------------------------------- /app/reducers/traces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/reducers/traces.js -------------------------------------------------------------------------------- /app/reducers/undoable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/reducers/undoable.js -------------------------------------------------------------------------------- /app/reducers/wayEditing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/reducers/wayEditing.js -------------------------------------------------------------------------------- /app/screens/Account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/screens/Account.js -------------------------------------------------------------------------------- /app/screens/CameraScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/screens/CameraScreen.js -------------------------------------------------------------------------------- /app/screens/Explore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/screens/Explore.js -------------------------------------------------------------------------------- /app/screens/SaveTrace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/screens/SaveTrace.js -------------------------------------------------------------------------------- /app/screens/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/screens/Settings.js -------------------------------------------------------------------------------- /app/selectors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/selectors/index.js -------------------------------------------------------------------------------- /app/services/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/services/auth.js -------------------------------------------------------------------------------- /app/services/nodecache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/services/nodecache.js -------------------------------------------------------------------------------- /app/services/observe-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/services/observe-api.js -------------------------------------------------------------------------------- /app/services/osm-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/services/osm-api.js -------------------------------------------------------------------------------- /app/services/trace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/services/trace.js -------------------------------------------------------------------------------- /app/style/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/style/map.js -------------------------------------------------------------------------------- /app/style/variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/style/variables.js -------------------------------------------------------------------------------- /app/utils/add-icon-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/utils/add-icon-url.js -------------------------------------------------------------------------------- /app/utils/bbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/utils/bbox.js -------------------------------------------------------------------------------- /app/utils/data-cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/utils/data-cache.js -------------------------------------------------------------------------------- /app/utils/edit-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/utils/edit-utils.js -------------------------------------------------------------------------------- /app/utils/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/utils/errors.js -------------------------------------------------------------------------------- /app/utils/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/utils/fetch.js -------------------------------------------------------------------------------- /app/utils/filter-tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/utils/filter-tags.js -------------------------------------------------------------------------------- /app/utils/filter-xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/utils/filter-xml.js -------------------------------------------------------------------------------- /app/utils/format-date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/utils/format-date.js -------------------------------------------------------------------------------- /app/utils/get-category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/utils/get-category.js -------------------------------------------------------------------------------- /app/utils/get-fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/utils/get-fields.js -------------------------------------------------------------------------------- /app/utils/get-place-name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/utils/get-place-name.js -------------------------------------------------------------------------------- /app/utils/get-random-id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/utils/get-random-id.js -------------------------------------------------------------------------------- /app/utils/get-taginfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/utils/get-taginfo.js -------------------------------------------------------------------------------- /app/utils/map-modes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/utils/map-modes.js -------------------------------------------------------------------------------- /app/utils/nearest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/utils/nearest.js -------------------------------------------------------------------------------- /app/utils/next-tick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/utils/next-tick.js -------------------------------------------------------------------------------- /app/utils/order-presets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/utils/order-presets.js -------------------------------------------------------------------------------- /app/utils/photos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/utils/photos.js -------------------------------------------------------------------------------- /app/utils/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/utils/store.js -------------------------------------------------------------------------------- /app/utils/traces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/utils/traces.js -------------------------------------------------------------------------------- /app/utils/upload-edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/utils/upload-edit.js -------------------------------------------------------------------------------- /app/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/app/utils/utils.js -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/babel.config.js -------------------------------------------------------------------------------- /data/address_formats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/data/address_formats.json -------------------------------------------------------------------------------- /data/core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/data/core.yaml -------------------------------------------------------------------------------- /data/deprecated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/data/deprecated.json -------------------------------------------------------------------------------- /data/discarded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/data/discarded.json -------------------------------------------------------------------------------- /data/imagery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/data/imagery.json -------------------------------------------------------------------------------- /data/intro_graph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/data/intro_graph.json -------------------------------------------------------------------------------- /data/keepRight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/data/keepRight.json -------------------------------------------------------------------------------- /data/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/data/languages.json -------------------------------------------------------------------------------- /data/locales.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/data/locales.json -------------------------------------------------------------------------------- /data/phone_formats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/data/phone_formats.json -------------------------------------------------------------------------------- /data/presets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/data/presets/README.md -------------------------------------------------------------------------------- /data/presets/defaults.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/data/presets/defaults.json -------------------------------------------------------------------------------- /data/presets/fields/to.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/data/presets/fields/to.json -------------------------------------------------------------------------------- /data/presets/groups.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/qa_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/data/qa_data.json -------------------------------------------------------------------------------- /data/shortcuts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/data/shortcuts.json -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/apk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/docs/apk.md -------------------------------------------------------------------------------- /docs/collecticons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/docs/collecticons.md -------------------------------------------------------------------------------- /docs/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/docs/debugging.md -------------------------------------------------------------------------------- /docs/macos-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/docs/macos-setup.md -------------------------------------------------------------------------------- /docs/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/docs/style.md -------------------------------------------------------------------------------- /docs/testflight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/docs/testflight.md -------------------------------------------------------------------------------- /docs/tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/docs/tests.md -------------------------------------------------------------------------------- /docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/docs/troubleshooting.md -------------------------------------------------------------------------------- /docs/user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/docs/user-guide.md -------------------------------------------------------------------------------- /field-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/field-options.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/index.js -------------------------------------------------------------------------------- /ios/Observe-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/ios/Observe-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/Observe/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/ios/Observe/AppDelegate.h -------------------------------------------------------------------------------- /ios/Observe/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/ios/Observe/AppDelegate.m -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/far_clone.imageset/far_clone.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/far_clone.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_baby.imageset/fas_baby.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_baby.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_bath.imageset/fas_bath.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_bath.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_beer.imageset/fas_beer.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_beer.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_bell.imageset/fas_bell.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_bell.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_biking.imageset/fas_biking.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_biking.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_book.imageset/fas_book.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_book.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_box.imageset/fas_box.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_box.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_burn.imageset/fas_burn.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_burn.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_carrot.imageset/fas_carrot.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_carrot.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_cat.imageset/fas_cat.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_cat.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_cheese.imageset/fas_cheese.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_cheese.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_child.imageset/fas_child.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_child.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_church.imageset/fas_church.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_church.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_code.imageset/fas_code.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_code.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_coins.imageset/fas_coins.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_coins.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_couch.imageset/fas_couch.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_couch.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_crown.imageset/fas_crown.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_crown.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_crutch.imageset/fas_crutch.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_crutch.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_cube.imageset/fas_cube.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_cube.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_cut.imageset/fas_cut.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_cut.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_dice.imageset/fas_dice.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_dice.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_dolly.imageset/fas_dolly.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_dolly.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_dragon.imageset/fas_dragon.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_dragon.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_eye.imageset/fas_eye.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_eye.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_film.imageset/fas_film.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_film.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_fish.imageset/fas_fish.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_fish.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_flask.imageset/fas_flask.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_flask.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_frog.imageset/fas_frog.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_frog.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_futbol.imageset/fas_futbol.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_futbol.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_gavel.imageset/fas_gavel.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_gavel.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_guitar.imageset/fas_guitar.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_guitar.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_hiking.imageset/fas_hiking.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_hiking.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_horse.imageset/fas_horse.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_horse.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_hotdog.imageset/fas_hotdog.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_hotdog.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_hotel.imageset/fas_hotel.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_hotel.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_key.imageset/fas_key.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_key.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_laptop.imageset/fas_laptop.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_laptop.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_leaf.imageset/fas_leaf.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_leaf.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_lock.imageset/fas_lock.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_lock.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_map.imageset/fas_map.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_map.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_medkit.imageset/fas_medkit.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_medkit.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_mosque.imageset/fas_mosque.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_mosque.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_music.imageset/fas_music.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_music.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_pills.imageset/fas_pills.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_pills.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_plane.imageset/fas_plane.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_plane.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_plug.imageset/fas_plug.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_plug.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_plus.imageset/fas_plus.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_plus.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_print.imageset/fas_print.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_print.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_rocket.imageset/fas_rocket.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_rocket.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_school.imageset/fas_school.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_school.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_server.imageset/fas_server.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_server.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_shapes.imageset/fas_shapes.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_shapes.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_skiing.imageset/fas_skiing.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_skiing.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_sleigh.imageset/fas_sleigh.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_sleigh.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_stamp.imageset/fas_stamp.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_stamp.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_store.imageset/fas_store.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_store.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_tags.imageset/fas_tags.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_tags.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_tape.imageset/fas_tape.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_tape.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_taxi.imageset/fas_taxi.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_taxi.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_teeth.imageset/fas_teeth.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_teeth.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_th.imageset/fas_th.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_th.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_toilet.imageset/fas_toilet.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_toilet.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_tram.imageset/fas_tram.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_tram.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_users.imageset/fas_users.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_users.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_vial.imageset/fas_vial.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_vial.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_video.imageset/fas_video.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_video.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_weight.imageset/fas_weight.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_weight.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/fas_wifi.imageset/fas_wifi.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/fontawesome/fas_wifi.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_airfield.imageset/maki_airfield.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_airfield.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_airport.imageset/maki_airport.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_airport.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_aquarium.imageset/maki_aquarium.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_aquarium.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_bakery.imageset/maki_bakery.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_bakery.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_bank.imageset/maki_bank.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_bank.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_bank_jp.imageset/maki_bank_jp.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_bank_jp.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_bar.imageset/maki_bar.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_bar.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_barrier.imageset/maki_barrier.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_barrier.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_baseball.imageset/maki_baseball.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_baseball.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_bbq.imageset/maki_bbq.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_bbq.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_beach.imageset/maki_beach.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_beach.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_beer.imageset/maki_beer.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_beer.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_bicycle.imageset/maki_bicycle.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_bicycle.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_bridge.imageset/maki_bridge.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_bridge.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_building.imageset/maki_building.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_building.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_bus.imageset/maki_bus.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_bus.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_cafe.imageset/maki_cafe.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_cafe.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_campsite.imageset/maki_campsite.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_campsite.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_car.imageset/maki_car.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_car.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_casino.imageset/maki_casino.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_casino.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_castle.imageset/maki_castle.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_castle.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_cemetery.imageset/maki_cemetery.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_cemetery.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_cinema.imageset/maki_cinema.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_cinema.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_circle.imageset/maki_circle.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_circle.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_city.imageset/maki_city.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_city.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_college.imageset/maki_college.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_college.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_cricket.imageset/maki_cricket.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_cricket.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_cross.imageset/maki_cross.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_cross.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_dam.imageset/maki_dam.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_dam.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_danger.imageset/maki_danger.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_danger.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_dentist.imageset/maki_dentist.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_dentist.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_doctor.imageset/maki_doctor.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_doctor.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_dog_park.imageset/maki_dog_park.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_dog_park.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_embassy.imageset/maki_embassy.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_embassy.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_entrance.imageset/maki_entrance.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_entrance.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_farm.imageset/maki_farm.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_farm.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_fence.imageset/maki_fence.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_fence.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_ferry.imageset/maki_ferry.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_ferry.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_florist.imageset/maki_florist.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_florist.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_fuel.imageset/maki_fuel.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_fuel.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_gaming.imageset/maki_gaming.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_gaming.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_garden.imageset/maki_garden.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_garden.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_gift.imageset/maki_gift.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_gift.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_globe.imageset/maki_globe.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_globe.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_golf.imageset/maki_golf.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_golf.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_grocery.imageset/maki_grocery.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_grocery.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_harbor.imageset/maki_harbor.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_harbor.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_hardware.imageset/maki_hardware.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_hardware.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_heart.imageset/maki_heart.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_heart.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_heliport.imageset/maki_heliport.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_heliport.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_home.imageset/maki_home.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_home.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_hospital.imageset/maki_hospital.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_hospital.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_industry.imageset/maki_industry.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_industry.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_karaoke.imageset/maki_karaoke.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_karaoke.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_landmark.imageset/maki_landmark.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_landmark.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_landuse.imageset/maki_landuse.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_landuse.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_laundry.imageset/maki_laundry.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_laundry.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_library.imageset/maki_library.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_library.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_lodging.imageset/maki_lodging.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_lodging.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_logging.imageset/maki_logging.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_logging.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_marker.imageset/maki_marker.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_marker.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_monument.imageset/maki_monument.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_monument.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_mountain.imageset/maki_mountain.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_mountain.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_museum.imageset/maki_museum.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_museum.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_music.imageset/maki_music.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_music.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_natural.imageset/maki_natural.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_natural.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_optician.imageset/maki_optician.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_optician.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_paint.imageset/maki_paint.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_paint.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_park.imageset/maki_park.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_park.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_parking.imageset/maki_parking.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_parking.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_pharmacy.imageset/maki_pharmacy.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_pharmacy.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_pitch.imageset/maki_pitch.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_pitch.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_police.imageset/maki_police.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_police.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_post.imageset/maki_post.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_post.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_post_jp.imageset/maki_post_jp.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_post_jp.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_prison.imageset/maki_prison.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_prison.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_rail.imageset/maki_rail.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_rail.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_rocket.imageset/maki_rocket.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_rocket.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_school.imageset/maki_school.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_school.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_scooter.imageset/maki_scooter.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_scooter.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_shelter.imageset/maki_shelter.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_shelter.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_shoe.imageset/maki_shoe.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_shoe.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_shop.imageset/maki_shop.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_shop.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_skiing.imageset/maki_skiing.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_skiing.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_slipway.imageset/maki_slipway.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_slipway.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_soccer.imageset/maki_soccer.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_soccer.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_square.imageset/maki_square.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_square.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_stadium.imageset/maki_stadium.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_stadium.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_star.imageset/maki_star.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_star.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_suitcase.imageset/maki_suitcase.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_suitcase.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_sushi.imageset/maki_sushi.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_sushi.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_swimming.imageset/maki_swimming.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_swimming.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_teahouse.imageset/maki_teahouse.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_teahouse.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_tennis.imageset/maki_tennis.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_tennis.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_theatre.imageset/maki_theatre.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_theatre.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_toilet.imageset/maki_toilet.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_toilet.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_town.imageset/maki_town.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_town.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_triangle.imageset/maki_triangle.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_triangle.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_village.imageset/maki_village.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_village.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_volcano.imageset/maki_volcano.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_volcano.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_watch.imageset/maki_watch.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_watch.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_water.imageset/maki_water.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_water.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_wetland.imageset/maki_wetland.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_wetland.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_windmill.imageset/maki_windmill.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_windmill.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/maki_zoo.imageset/maki_zoo.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/maki/maki_zoo.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_anvil.imageset/temaki_anvil.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_anvil.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_atm.imageset/temaki_atm.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_atm.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_barn.imageset/temaki_barn.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_barn.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_beach.imageset/temaki_beach.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_beach.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_bench.imageset/temaki_bench.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_bench.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_blind.imageset/temaki_blind.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_blind.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_boat.imageset/temaki_boat.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_boat.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_bread.imageset/temaki_bread.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_bread.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_bulb.imageset/temaki_bulb.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_bulb.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_bulb2.imageset/temaki_bulb2.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_bulb2.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_bulb3.imageset/temaki_bulb3.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_bulb3.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_buoy.imageset/temaki_buoy.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_buoy.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_bus.imageset/temaki_bus.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_bus.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_cabin.imageset/temaki_cabin.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_cabin.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_cable.imageset/temaki_cable.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_cable.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_cairn.imageset/temaki_cairn.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_cairn.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_can.imageset/temaki_can.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_can.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_canoe.imageset/temaki_canoe.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_canoe.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_clock.imageset/temaki_clock.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_clock.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_crane.imageset/temaki_crane.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_crane.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_dice.imageset/temaki_dice.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_dice.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_donut.imageset/temaki_donut.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_donut.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_dress.imageset/temaki_dress.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_dress.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_ear.imageset/temaki_ear.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_ear.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_egg.imageset/temaki_egg.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_egg.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_ferry.imageset/temaki_ferry.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_ferry.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_food.imageset/temaki_food.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_food.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_gas.imageset/temaki_gas.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_gas.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_gate.imageset/temaki_gate.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_gate.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_gown.imageset/temaki_gown.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_gown.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_grass.imageset/temaki_grass.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_grass.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_gym.imageset/temaki_gym.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_gym.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_hand.imageset/temaki_hand.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_hand.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_heart.imageset/temaki_heart.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_heart.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_hedge.imageset/temaki_hedge.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_hedge.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_lawn.imageset/temaki_lawn.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_lawn.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_lock.imageset/temaki_lock.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_lock.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_mast.imageset/temaki_mast.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_mast.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_meat.imageset/temaki_meat.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_meat.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_pin.imageset/temaki_pin.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_pin.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_pipe.imageset/temaki_pipe.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_pipe.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_power.imageset/temaki_power.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_power.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_radio.imageset/temaki_radio.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_radio.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_ruins.imageset/temaki_ruins.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_ruins.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_shrub.imageset/temaki_shrub.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_shrub.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_silo.imageset/temaki_silo.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_silo.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_slide.imageset/temaki_slide.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_slide.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_snow.imageset/temaki_snow.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_snow.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_spa.imageset/temaki_spa.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_spa.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_stamp.imageset/temaki_stamp.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_stamp.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_stop.imageset/temaki_stop.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_stop.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_swamp.imageset/temaki_swamp.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_swamp.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_tire.imageset/temaki_tire.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_tire.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_tools.imageset/temaki_tools.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_tools.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_tower.imageset/temaki_tower.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_tower.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_train.imageset/temaki_train.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_train.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_tram.imageset/temaki_tram.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_tram.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_truck.imageset/temaki_truck.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_truck.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_vase.imageset/temaki_vase.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_vase.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_wall.imageset/temaki_wall.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_wall.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_waste.imageset/temaki_waste.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_waste.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_water.imageset/temaki_water.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_water.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_wheel.imageset/temaki_wheel.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_wheel.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_yield.imageset/temaki_yield.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_yield.png -------------------------------------------------------------------------------- /ios/Observe/Images.xcassets/temaki_zoo.imageset/temaki_zoo.png: -------------------------------------------------------------------------------- 1 | ../../../../app/assets/temaki/temaki_zoo.png -------------------------------------------------------------------------------- /ios/Observe/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/ios/Observe/Info.plist -------------------------------------------------------------------------------- /ios/Observe/Monospace.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/ios/Observe/Monospace.ttf -------------------------------------------------------------------------------- /ios/Observe/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/ios/Observe/main.m -------------------------------------------------------------------------------- /ios/Observe/osm.json: -------------------------------------------------------------------------------- 1 | ../../app/assets/osm.json -------------------------------------------------------------------------------- /ios/Observe/satellite.json: -------------------------------------------------------------------------------- 1 | ../../app/assets/satellite.json -------------------------------------------------------------------------------- /ios/ObserveTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/ios/ObserveTests/Info.plist -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/ios/Pods/Manifest.lock -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/package.json -------------------------------------------------------------------------------- /scripts/link-icons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/scripts/link-icons.sh -------------------------------------------------------------------------------- /update-icons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/update-icons.sh -------------------------------------------------------------------------------- /version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/version.sh -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developmentseed/observe/HEAD/yarn.lock --------------------------------------------------------------------------------