From 31ec04dea9bf6ceabaf5c83ed8f14b0bb67284d9 Mon Sep 17 00:00:00 2001 From: Shawn Date: Wed, 27 Sep 2023 13:29:46 -0600 Subject: [PATCH 1/9] Add helper class for downloading and resizing MET image and json files --- lib/_tools/artifact_download_helper.dart | 137 ++++++++++++++++++ .../data/wonders_data/search/search_data.dart | 2 +- lib/main.dart | 3 + pubspec.lock | 14 +- pubspec.yaml | 1 + windows/flutter/CMakeLists.txt | 7 +- 6 files changed, 155 insertions(+), 9 deletions(-) create mode 100644 lib/_tools/artifact_download_helper.dart diff --git a/lib/_tools/artifact_download_helper.dart b/lib/_tools/artifact_download_helper.dart new file mode 100644 index 00000000..fe5c5404 --- /dev/null +++ b/lib/_tools/artifact_download_helper.dart @@ -0,0 +1,137 @@ +import 'dart:convert'; +import 'dart:io'; + +import 'package:http/http.dart'; +import 'package:image/image.dart'; +import 'package:path_provider/path_provider.dart'; +import 'package:wonders/logic/data/wonders_data/chichen_itza_data.dart'; +import 'package:wonders/logic/data/wonders_data/christ_redeemer_data.dart'; +import 'package:wonders/logic/data/wonders_data/great_wall_data.dart'; +import 'package:wonders/logic/data/wonders_data/machu_picchu_data.dart'; +import 'package:wonders/logic/data/wonders_data/petra_data.dart'; +import 'package:wonders/logic/data/wonders_data/pyramids_giza_data.dart'; +import 'package:wonders/logic/data/wonders_data/taj_mahal_data.dart'; + +import '../common_libs.dart'; +import '../logic/data/collectible_data.dart'; +import '../logic/data/wonders_data/colosseum_data.dart'; + +class ArtifactDownloadHelper extends StatefulWidget { + const ArtifactDownloadHelper({super.key}); + + @override + State createState() => _ArtifactDownloadHelperState(); +} + +/// Using collectiblesData fetch the data for each artifact and download the image. +/// Resize all images to have multiple sizes (small, medium, large) +/// Save images using format [ID].jpg and [ID].json +/// OR modify CollectibleData_helper.html to include all data in the collectiblesData list so no JSON is required. +class _ArtifactDownloadHelperState extends State { + late String imagesDir; + final http = Client(); + final List missingIds = []; + + @override + void initState() { + super.initState(); + createDirectory(); + } + + Future createDirectory() async { + final rootDir = await getApplicationDocumentsDirectory(); + imagesDir = '${rootDir.path}/met_collectibles'; + await Directory(imagesDir).create(recursive: true); + } + + @override + Widget build(BuildContext context) { + return Center( + child: TextButton( + onPressed: downloadArtifacts, + child: Text('Download Artifacts'), + ), + ); + } + + Future downloadImage(String id, String url) async { + //final sizes = [400, 800, 1600, 3000]; + debugPrint('Downloading $url to $imagesDir'); + final imgResponse = await get(Uri.parse(url)); + // If the image is less than a KB, it's probably a 404 image. + if (imgResponse.bodyBytes.lengthInBytes < 2000) { + return false; + } + File file = File('$imagesDir/$id.jpg'); + file.writeAsBytesSync(imgResponse.bodyBytes); + print('img saved @ ${file.path}'); + return true; + } + + Future downloadImageAndJson(String id) async { + File imgFile = File('$imagesDir/$id.jpg'); + if (imgFile.existsSync()) { + print('Skipping $id'); + await resizeImage(id, 600); + return; + } + Uri uri = Uri.parse('https://collectionapi.metmuseum.org/public/collection/v1/objects/$id'); + print('Downloading $id'); + final response = await http.get(uri); + Map json = jsonDecode(response.body) as Map; + if (!json.containsKey('primaryImage') || json['primaryImage'].isEmpty) { + print('Missing $id'); + missingIds.add(id); + return; + } + final url = json['primaryImage'] as String; + //bool isPublicDomain = json['isPublicDomain'] as bool; + final downloadSuccess = await downloadImage(id, url); + if (downloadSuccess) { + File file = File('$imagesDir/$id.json'); + file.writeAsStringSync(response.body); + print('json saved @ ${file.path}'); + } else { + print('Missing $id'); + missingIds.add(id); + } + } + + void downloadArtifacts() async { + /// Download collectibles + // for (var c in collectiblesData) { + // downloadImageAndJson(c.artifactId); + // } + missingIds.clear(); + + /// Download search artifacts + final searchData = ChichenItzaData().searchData + + ChristRedeemerData().searchData + + ColosseumData().searchData + + GreatWallData().searchData + + MachuPicchuData().searchData + + PetraData().searchData + + PyramidsGizaData().searchData + + TajMahalData().searchData; + for (var a in searchData) { + await downloadImageAndJson(a.id.toString()); + print('${searchData.indexOf(a) + 1}/${searchData.length}'); + } + print('Missing IDs: $missingIds'); + } + + Future resizeImage(String id, int size) async { + final resizedFile = File('$imagesDir/${id}_$size.jpg'); + final srcFile = File('$imagesDir/$id.jpg'); + print('Resizing $id...'); + if (resizedFile.existsSync() || !srcFile.existsSync()) return; + final img = decodeJpg(srcFile.readAsBytesSync()); + if (img != null) { + final resizedImg = copyResize(img, width: size); + resizedFile.writeAsBytesSync(encodeJpg(resizedImg)); + print('Resized $id'); + } else { + print('Failed to resize $id'); + } + } +} diff --git a/lib/logic/data/wonders_data/search/search_data.dart b/lib/logic/data/wonders_data/search/search_data.dart index 7932fa33..dd13fd9d 100644 --- a/lib/logic/data/wonders_data/search/search_data.dart +++ b/lib/logic/data/wonders_data/search/search_data.dart @@ -1,6 +1,6 @@ class SearchData { static const String baseImagePath = 'https://images.metmuseum.org/CRDImages/'; - + static const missingIds = [313256, 327544, 327596, 545776, 38549, 38578, 38473, 38598, 38153, 38203, 64486, 64487]; const SearchData(this.year, this.id, this.title, this.keywords, this.imagePath, [this.aspectRatio = 0]); final int year; final int id; diff --git a/lib/main.dart b/lib/main.dart index b9a2eb71..92fe2edf 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -11,6 +11,8 @@ import 'package:wonders/logic/unsplash_logic.dart'; import 'package:wonders/logic/wallpaper_logic.dart'; import 'package:wonders/logic/wonders_logic.dart'; +import '_tools/artifact_download_helper.dart'; + void main() async { WidgetsBinding widgetsBinding = WidgetsFlutterBinding.ensureInitialized(); // Keep native splash screen up until app is finished bootstrapping @@ -30,6 +32,7 @@ class WondersApp extends StatelessWidget with GetItMixin { WondersApp({Key? key}) : super(key: key); @override Widget build(BuildContext context) { + return MaterialApp(home: ArtifactDownloadHelper()); final locale = watchX((SettingsLogic s) => s.currentLocale); return MaterialApp.router( routeInformationProvider: appRouter.routeInformationProvider, diff --git a/pubspec.lock b/pubspec.lock index c9d6838b..9a812318 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -5,10 +5,10 @@ packages: dependency: transitive description: name: archive - sha256: "0c8368c9b3f0abbc193b9d6133649a614204b528982bebc7026372d61677ce3a" + sha256: "20071638cbe4e5964a427cfa0e86dce55d060bc7d82d56f3554095d7239a8765" url: "https://pub.dev" source: hosted - version: "3.3.7" + version: "3.4.2" args: dependency: transitive description: @@ -61,10 +61,10 @@ packages: dependency: "direct main" description: name: collection - sha256: f092b211a4319e98e5ff58223576de6c2803db36221657b46c82574721240687 + sha256: ee67cb0715911d28db6bf4af1026078bd6f0128b07a5f66fb2ed94ec6783c09a url: "https://pub.dev" source: hosted - version: "1.17.2" + version: "1.18.0" convert: dependency: transitive description: @@ -377,13 +377,13 @@ packages: source: hosted version: "2.1.3" image: - dependency: transitive + dependency: "direct main" description: name: image - sha256: a72242c9a0ffb65d03de1b7113bc4e189686fc07c7147b8b41811d0dd0e0d9bf + sha256: "028f61960d56f26414eb616b48b04eb37d700cbe477b7fb09bf1d7ce57fd9271" url: "https://pub.dev" source: hosted - version: "4.0.17" + version: "4.1.3" image_fade: dependency: "direct main" description: diff --git a/pubspec.yaml b/pubspec.yaml index a142c7bd..cd343439 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -33,6 +33,7 @@ dependencies: google_maps_flutter_web: ^0.5.4+2 go_router: ^6.5.5 http: ^0.13.5 + image: ^4.1.3 image_fade: ^0.6.2 image_gallery_saver: ^2.0.3 intl: ^0.18.1 diff --git a/windows/flutter/CMakeLists.txt b/windows/flutter/CMakeLists.txt index 930d2071..903f4899 100644 --- a/windows/flutter/CMakeLists.txt +++ b/windows/flutter/CMakeLists.txt @@ -10,6 +10,11 @@ include(${EPHEMERAL_DIR}/generated_config.cmake) # https://github.com/flutter/flutter/issues/57146. set(WRAPPER_ROOT "${EPHEMERAL_DIR}/cpp_client_wrapper") +# Set fallback configurations for older versions of the flutter tool. +if (NOT DEFINED FLUTTER_TARGET_PLATFORM) + set(FLUTTER_TARGET_PLATFORM "windows-x64") +endif() + # === Flutter Library === set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/flutter_windows.dll") @@ -92,7 +97,7 @@ add_custom_command( COMMAND ${CMAKE_COMMAND} -E env ${FLUTTER_TOOL_ENVIRONMENT} "${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.bat" - windows-x64 $ + ${FLUTTER_TARGET_PLATFORM} $ VERBATIM ) add_custom_target(flutter_assemble DEPENDS From 27613c6922bf6dc6d07667e0b4dbebef56e5c8bb Mon Sep 17 00:00:00 2001 From: Shawn Date: Tue, 3 Oct 2023 14:10:55 -0600 Subject: [PATCH 2/9] Update search data files with fresh items, remove the imageUrl param --- lib/logic/data/collectible_data.dart | 56 +- .../search/chichen_itza_search_data.dart | 449 +++-- .../search/christ_redeemer_search_data.dart | 54 +- .../search/colosseum_search_data.dart | 1169 +++++++----- .../search/great_wall_search_data.dart | 1272 ++++++++----- .../search/machu_picchu_search_data.dart | 840 ++++---- .../search/petra_search_data.dart | 817 ++++---- .../search/pyramids_giza_search_data.dart | 972 ++++++---- .../search/taj_mahal_search_data.dart | 1686 ++++++----------- lib/ui/common/collectible_item.dart | 2 +- 10 files changed, 3854 insertions(+), 3463 deletions(-) diff --git a/lib/logic/data/collectible_data.dart b/lib/logic/data/collectible_data.dart index 06ea731c..96c7c0a7 100644 --- a/lib/logic/data/collectible_data.dart +++ b/lib/logic/data/collectible_data.dart @@ -1,4 +1,5 @@ import 'package:wonders/common_libs.dart'; +import 'package:wonders/logic/data/artifact_data.dart'; class CollectibleState { static const int lost = 0; @@ -9,8 +10,6 @@ class CollectibleState { class CollectibleData { CollectibleData({ required this.title, - required this.imageUrl, - required this.imageUrlSmall, required this.iconName, required this.artifactId, required this.wonder, @@ -19,8 +18,6 @@ class CollectibleData { } final String title; - final String imageUrl; - final String imageUrlSmall; final String iconName; late final ImageProvider icon; @@ -30,6 +27,9 @@ class CollectibleData { String get id => artifactId; String get subtitle => wondersLogic.getData(wonder).artifactCulture; + + String get imageUrl => ArtifactData.getSelfHostedImageUrl(id); + String get imageUrlSmall => ArtifactData.getSelfHostedImageUrlSmall(id); } // Note: look up a human readable page with: @@ -41,24 +41,18 @@ List collectiblesData = [ title: 'Pendant', wonder: WonderType.chichenItza, artifactId: '701645', - imageUrl: 'https://images.metmuseum.org/CRDImages/ao/original/DP-25104-001.jpg', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/ao/mobile-large/DP-25104-001.jpg', iconName: 'jewelry', ), CollectibleData( title: 'Bird Ornament', wonder: WonderType.chichenItza, artifactId: '310555', - imageUrl: 'https://images.metmuseum.org/CRDImages/ao/original/DP-23474-001.jpg', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/ao/mobile-large/DP-23474-001.jpg', iconName: 'jewelry', ), CollectibleData( title: 'La Prison, à Chichen-Itza', wonder: WonderType.chichenItza, artifactId: '286467', - imageUrl: 'https://images.metmuseum.org/CRDImages/ph/original/DP132063.jpg', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/ph/mobile-large/DP132063.jpg', iconName: 'picture', ), @@ -67,24 +61,18 @@ List collectiblesData = [ title: 'Engraved Horn', wonder: WonderType.christRedeemer, artifactId: '501302', - imageUrl: 'https://images.metmuseum.org/CRDImages/mi/original/MUS550A2.jpg', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/mi/mobile-large/MUS550A2.jpg', iconName: 'statue', ), CollectibleData( title: 'Fixed fan', wonder: WonderType.christRedeemer, artifactId: '157985', - imageUrl: 'https://images.metmuseum.org/CRDImages/ci/original/48.60_front_CP4.jpg', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/ci/mobile-large/48.60_front_CP4.jpg', iconName: 'jewelry', ), CollectibleData( title: 'Handkerchiefs (one of two)', wonder: WonderType.christRedeemer, artifactId: '227759', - imageUrl: 'https://images.metmuseum.org/CRDImages/ad/original/DP2896.jpg', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/ad/mobile-large/DP2896.jpg', iconName: 'textile', ), @@ -93,24 +81,18 @@ List collectiblesData = [ title: 'Glass hexagonal amphoriskos', wonder: WonderType.colosseum, artifactId: '245376', - imageUrl: 'https://images.metmuseum.org/CRDImages/gr/original/DP124005.jpg', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/gr/mobile-large/DP124005.jpg', iconName: 'vase', ), CollectibleData( title: 'Bronze plaque of Mithras slaying the bull', wonder: WonderType.colosseum, artifactId: '256570', - imageUrl: 'https://images.metmuseum.org/CRDImages/gr/original/DP119236.jpg', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/gr/mobile-large/DP119236.jpg', iconName: 'statue', ), CollectibleData( title: 'Interno del Colosseo', wonder: WonderType.colosseum, artifactId: '286136', - imageUrl: 'https://images.metmuseum.org/CRDImages/ph/original/DP138036.jpg', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/ph/mobile-large/DP138036.jpg', iconName: 'picture', ), @@ -119,24 +101,18 @@ List collectiblesData = [ title: 'Biographies of Lian Po and Lin Xiangru', wonder: WonderType.greatWall, artifactId: '39918', - imageUrl: 'https://images.metmuseum.org/CRDImages/as/original/DP153769.jpg', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/as/mobile-large/DP153769.jpg', iconName: 'scroll', ), CollectibleData( title: 'Jar with Dragon', wonder: WonderType.greatWall, artifactId: '39666', - imageUrl: 'https://images.metmuseum.org/CRDImages/as/original/DT5083.jpg', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/as/mobile-large/DT5083.jpg', iconName: 'vase', ), CollectibleData( title: 'Panel with Peonies and Butterfly', wonder: WonderType.greatWall, artifactId: '39735', - imageUrl: 'https://images.metmuseum.org/CRDImages/as/original/DT834.jpg', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/as/mobile-large/DT834.jpg', iconName: 'textile', ), @@ -145,24 +121,18 @@ List collectiblesData = [ title: 'Eight-Pointed Star Tunic', wonder: WonderType.machuPicchu, artifactId: '308120', - imageUrl: 'https://images.metmuseum.org/CRDImages/ao/original/ra33.149.100.R.jpg', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/ao/mobile-large/ra33.149.100.R.jpg', iconName: 'textile', ), CollectibleData( title: 'Camelid figurine', wonder: WonderType.machuPicchu, artifactId: '309960', - imageUrl: 'https://images.metmuseum.org/CRDImages/ao/original/DP-13440-031.jpg', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/ao/mobile-large/DP-13440-031.jpg', iconName: 'statue', ), CollectibleData( title: 'Double Bowl', wonder: WonderType.machuPicchu, artifactId: '313341', - imageUrl: 'https://images.metmuseum.org/CRDImages/ao/original/DP-24356-001.jpg', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/ao/mobile-large/DP-24356-001.jpg', iconName: 'vase', ), @@ -171,24 +141,18 @@ List collectiblesData = [ title: 'Camel and riders', wonder: WonderType.petra, artifactId: '322592', - imageUrl: 'https://images.metmuseum.org/CRDImages/an/original/DP-14352-001.jpg', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/an/mobile-large/DP-14352-001.jpg', iconName: 'statue', ), CollectibleData( title: 'Vessel', wonder: WonderType.petra, artifactId: '325918', - imageUrl: 'https://images.metmuseum.org/CRDImages/an/original/hb67_246_37.jpg', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/an/mobile-large/hb67_246_37.jpg', iconName: 'vase', ), CollectibleData( title: 'Open bowl', wonder: WonderType.petra, artifactId: '326243', - imageUrl: 'https://images.metmuseum.org/CRDImages/an/original/DT904.jpg', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/an/mobile-large/DT904.jpg', iconName: 'vase', ), @@ -197,24 +161,18 @@ List collectiblesData = [ title: 'Two papyrus fragments', wonder: WonderType.pyramidsGiza, artifactId: '546510', - imageUrl: 'https://images.metmuseum.org/CRDImages/eg/original/09.180.537A_recto_0083.jpg', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/eg/mobile-large/09.180.537A_recto_0083.jpg', iconName: 'scroll', ), CollectibleData( title: 'Fragmentary Face of King Khafre', wonder: WonderType.pyramidsGiza, artifactId: '543896', - imageUrl: 'https://images.metmuseum.org/CRDImages/eg/original/DT11751.jpg', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/eg/mobile-large/DT11751.jpg', iconName: 'statue', ), CollectibleData( title: 'Jewelry Elements', wonder: WonderType.pyramidsGiza, artifactId: '545728', - imageUrl: 'https://images.metmuseum.org/CRDImages/eg/original/DP327402.jpg', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/eg/mobile-large/DP327402.jpg', iconName: 'jewelry', ), @@ -223,24 +181,18 @@ List collectiblesData = [ title: 'Dagger with Scabbard', wonder: WonderType.tajMahal, artifactId: '24907', - imageUrl: 'https://images.metmuseum.org/CRDImages/aa/original/DP157706.jpg', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/aa/mobile-large/DP157706.jpg', iconName: 'jewelry', ), CollectibleData( title: 'The House of Bijapur', wonder: WonderType.tajMahal, artifactId: '453183', - imageUrl: 'https://images.metmuseum.org/CRDImages/is/original/DP231353.jpg', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/is/mobile-large/DP231353.jpg', iconName: 'picture', ), CollectibleData( title: 'Panel of Nasta\'liq Calligraphy', wonder: WonderType.tajMahal, artifactId: '453983', - imageUrl: 'https://images.metmuseum.org/CRDImages/is/original/DP299944.jpg', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/is/mobile-large/DP299944.jpg', iconName: 'scroll', ), ]; diff --git a/lib/logic/data/wonders_data/search/chichen_itza_search_data.dart b/lib/logic/data/wonders_data/search/chichen_itza_search_data.dart index 487bc9aa..d6a677eb 100644 --- a/lib/logic/data/wonders_data/search/chichen_itza_search_data.dart +++ b/lib/logic/data/wonders_data/search/chichen_itza_search_data.dart @@ -1,199 +1,260 @@ part of '../chichen_itza_data.dart'; // Search suggestions (59) -List _searchSuggestions = const ['stamp', 'yoke', 'hacha', 'male', 'female', 'serpentine', 'andesite', 'figure', 'cylindrical', 'chisel', 'earflare', 'relief', 'model', 'plate', 'ornament', 'red', 'censer', 'jade', 'slip', 'gold', 'implements', 'musical', 'jar', 'stone', 'sculpture', 'pendant', 'rattle', 'monkey', 'seated', 'mythological', 'beads', 'ceramics', 'ornaments', 'pigment', 'metal', 'instruments', 'head', 'deity', 'ceramic', 'shell', 'containers', 'flint', 'bird', 'double', 'bead', 'ochre', 'carved', 'face', 'jadeite', 'tripod', 'tubular', 'vessel', 'celt', 'bowl', 'eagle', 'paint', 'limestone', 'scene', 'lid', ]; +List _searchSuggestions = const [ + 'stamp', + 'yoke', + 'hacha', + 'god', + 'male', + 'female', + 'serpentine', + 'figure', + 'andesite', + 'cylindrical', + 'chisel', + 'earflare', + 'cinnabar', + 'relief', + 'model', + 'plate', + 'ornament', + 'red', + 'censer', + 'jade', + 'slip', + 'gold', + 'implements', + 'musical', + 'jar', + 'stone', + 'sculpture', + 'pendant', + 'rattle', + 'monkey', + 'seated', + 'mythological', + 'beads', + 'ceramics', + 'ornaments', + 'pigment', + 'instruments', + 'deity', + 'head', + 'ceramic', + 'shell', + 'containers', + 'flint', + 'bird', + 'bead', + 'ochre', + 'carved', + 'jadeite', + 'face', + 'tripod', + 'tubular', + 'vessel', + 'celt', + 'bowl', + 'eagle', + 'paint', + 'limestone', + 'scene', + 'lid', +]; -// Chichen Itza (191) +// Chichen Itza (189) List _searchData = const [ - SearchData(550, 317120, 'Earflare', 'earflare|jade|stone-ornaments', 'ao/mobile-large/VS1994_35_582.JPG', 1.18), - SearchData(700, 313336, 'Handle (?)', 'tube|bone|bone/ivory-sculpture', 'ao/mobile-large/vs1979_206_1144.jpg', 0.28), - SearchData(1400, 317635, 'Gouge', 'chisel|stone|stone-implements', 'ao/mobile-large/vs1994_35_771.jpg', 3.40), - SearchData(1250, 318229, 'Metate Fragment', 'metate fragment|stone|stone-sculpture', 'ao/mobile-large/X.180.10.JPG', 1.52), - SearchData(1400, 317303, 'Chisel', 'chisel|stone|stone-implements', 'ao/mobile-large/VS1994_35_447.JPG', 1.43), - SearchData(1100, 313348, 'Monkey Vessel', 'vessel|onyx marble, pyrite, shell|stone-containers', 'ao/mobile-large/DP-25032-001.jpg', 0.80), - SearchData(1400, 317267, 'Celt', 'celt|stone|stone-implements', 'ao/mobile-large/hz1994_35_401.jpg', 0.58), - SearchData(200, 312581, 'House Model', 'house model|ceramic|ceramics-sculpture', 'ao/mobile-large/DP-23907-001.jpg', 0.78), - SearchData(1350, 312599, 'Pedestal Bowl', 'bowl|ceramic|ceramics-containers', 'ao/mobile-large/DP102175.jpg', 1.03), - SearchData(850, 309404, 'Monumental Figure', 'figure|limestone|stone-sculpture', 'ao/mobile-large/DP104844.jpg', 0.44), - SearchData(750, 501839, 'Pottery Rattle', 'pottery rattle|clay|idiophone-shaken-rattle', 'mi/mobile-large/DP-23770-001.jpg', 0.80), - SearchData(1400, 317227, 'Celt', 'celt|stone|stone-implements', 'ao/mobile-large/hz1994_35_361.jpg', 0.62), - SearchData(749, 503940, 'Double Whistle', 'double whistle|pottery, paint|aerophone-whistle flute', 'mi/mobile-large/DT4624a.jpg', 0.78), - SearchData(400, 309713, 'Yoke-Form Vessel', 'vessel with lid|ceramic|ceramics-containers', 'ao/mobile-large/DT11169.jpg', 0.80), - SearchData(1400, 317234, 'Celt', 'celt|stone|stone-implements', 'ao/mobile-large/hz1994_35_368.jpg', 0.87), - SearchData(-650, 313138, 'Seated Bench Figure', 'figure|serpentine|stone-sculpture', 'ao/mobile-large/DT9963.jpg', 0.80), - SearchData(1400, 317210, 'Celt', 'celt|stone|stone-implements', 'ao/mobile-large/hz1994_35_343.jpg', 0.79), - SearchData(700, 310651, 'Vessel, Palace Scene', 'vessel|ceramic|ceramics-containers', 'ao/mobile-large/1978.412.202_a.JPG', 0.77), - SearchData(1400, 317211, 'Celt', 'celt|stone|stone-implements', 'ao/mobile-large/hz1994_35_344.jpg', 0.68), - SearchData(1400, 317248, 'Celt', 'celt|stone|stone-implements', 'ao/mobile-large/hz1994_35_382.jpg', 0.44), - SearchData(-1000, 314946, 'Bird Vessel', 'vessel|ceramic, red ochre|ceramics-containers', 'ao/mobile-large/DP23080.jpg', 0.83), - SearchData(700, 313315, 'Vessel with Deity Figures', 'vessel|ceramic|ceramics-containers', 'ao/mobile-large/1979.206.1122_a.JPG', 0.81), - SearchData(1400, 317099, 'Stone Chisel', 'chisel|stone|stone-implements', 'ao/mobile-large/hz1994_35_334.jpg', 0.87), - SearchData(1000, 313091, 'Ceremonial Metate', 'metate|diabase|stone-implements', 'ao/mobile-large/DP104835.jpg', 1.00), - SearchData(1400, 317314, 'Eccentric Flint', 'flint|flint|stone-implements', 'ao/mobile-large/hz1994_35_458.jpg', 0.22), - SearchData(700, 319633, 'Cylindrical Vessel', 'vessel|ceramic|ceramics-containers', 'ao/mobile-large/DP-13003-003.jpg', 0.75), - SearchData(1400, 317291, 'Adze', 'adze|stone|stone-implements', 'ao/mobile-large/VS1994_35_435.JPG', 0.63), - SearchData(-1000, 312589, 'Relief-Carved Bowl', 'vessel|ceramic|ceramics-containers', 'ao/mobile-large/DP296005.jpg', 1.10), - SearchData(1550, 310589, 'Figure Vessel', 'vessel|ceramic|ceramics-containers', 'ao/mobile-large/DT10182.jpg', 0.79), - SearchData(0, 317600, 'Temple Model', 'temple model|ceramic|ceramics-sculpture', 'ao/mobile-large/DP-23904-001.jpg', 1.09), - SearchData(1400, 317241, 'Celt', 'celt|stone|stone-implements', 'ao/mobile-large/hz1994_35_375.jpg', 0.86), - SearchData(775, 310551, 'Censer Support', 'censer support|ceramic|ceramics-sculpture', 'ao/mobile-large/DP102949.jpg', 0.67), - SearchData(400, 316299, 'Pair of Earflare Frontals', 'earflare frontals|jade (jadeite)|stone-ornaments', 'ao/mobile-large/DP-14786-043.jpg', 1.39), - SearchData(1410, 321343, 'Serpent Labret with Articulated Tongue', 'labret|gold|metal-ornaments', 'ao/mobile-large/DP-478-020.jpg', 1.61), - SearchData(750, 310474, 'Hacha', 'hacha|stone, pigment|stone-sculpture', 'ao/mobile-large/DP-17617-001.jpg', 0.76), - SearchData(700, 310468, 'Standing Male Figure', 'male figure|ceramic|ceramics-sculpture', 'ao/mobile-large/1978.412.6_1.jpg', 0.87), - SearchData(1400, 317101, 'Stone Chisel', 'chisel|stone|stone-implements', 'ao/mobile-large/hz1994_35_336.jpg', 0.67), - SearchData(-650, 309987, 'Duck-Face Ornament', 'ornament|jadeite, pigment|stone-ornaments', 'ao/mobile-large/DP-12761-009.jpg', 1.09), - SearchData(1400, 317222, 'Celt', 'celt|stone|stone-implements', 'ao/mobile-large/hz1994_35_356.jpg', 0.67), - SearchData(1400, 317244, 'Stone Chisel', 'chisel|stone|stone-implements', 'ao/mobile-large/hz1994_35_378.jpg', 0.56), - SearchData(700, 314311, 'Cylindrical Vessel', 'vessel|ceramic, slip, pigment|stone-containers', 'ao/mobile-large/DP-575-001.jpg', 0.75), - SearchData(900, 309901, 'Pedestal Bowl', 'bowl|marble|stone-containers', 'ao/mobile-large/DP-17794-001.jpg', 0.80), - SearchData(1400, 317233, 'Celt', 'celt|stone|stone-implements', 'ao/mobile-large/hz1994_35_367.jpg', 0.88), - SearchData(1399, 318679, 'Monkey stamp', 'stamp|ceramic|ceramics-implements', 'ao/mobile-large/vs00_5_1165.jpg', 0.70), - SearchData(750, 313386, '"Smiling" Figure', 'male figure|ceramic|ceramics-sculpture', 'ao/mobile-large/DP104829.jpg', 0.89), - SearchData(1360, 309861, 'Deity Censer (Xantil)', 'censer|ceramic, pigment|ceramics-sculpture', 'ao/mobile-large/DT1256.jpg', 0.80), - SearchData(800, 310540, 'Column, Costumed Figure', 'column|limestone|stone-sculpture', 'ao/mobile-large/DP-22128-001.jpg', 0.64), - SearchData(700, 314217, 'Vessel, Mythological Scene', 'vessel|ceramic|ceramics-containers', 'ao/mobile-large/DP-571-001.jpg', 0.74), - SearchData(600, 310607, 'Vessel, Seated Deities', 'vessel|ceramic|ceramics-containers', 'ao/mobile-large/DP-13003-005.jpg', 0.75), - SearchData(800, 312593, 'Hacha, Head', 'hacha|andesite|stone-sculpture', 'ao/mobile-large/1979.206.371.jpg', 1.22), - SearchData(750, 312915, 'Whistle with the Maize God emerging from a flower', 'figure|ceramic, pigment|ceramics-sculpture', 'ao/mobile-large/DT9945.jpg', 0.80), - SearchData(350, 318345, 'Censer, Seated King', 'censer|ceramic|ceramics-containers', 'ao/mobile-large/DT4512.jpg', 0.80), - SearchData(-650, 310467, 'Celt with Incised Profile', 'celt|jade (jadeite)|stone-implements', 'ao/mobile-large/DP-23470-001.jpg', 0.72), - SearchData(0, 314523, 'Cylindrical Vessel', 'vessel|ceramic, slip|ceramics-containers', 'ao/mobile-large/DP101926.jpg', 0.98), - SearchData(1049, 319238, 'Female figure', 'figure|stone|stone-sculpture', 'ao/mobile-large/vs00_5_6.jpg', 0.51), - SearchData(1420, 307744, 'Stamp, Monkey', 'stamp|ceramic|ceramics-implements', 'ao/mobile-large/00.5.1164.jpg', 0.80), - SearchData(1400, 317100, 'Stone Chisel', 'chisel|stone|stone-implements', 'ao/mobile-large/hz1994_35_335.jpg', 0.94), - SearchData(1400, 317217, 'Celt', 'celt|stone|stone-implements', 'ao/mobile-large/hz1994_35_350.jpg', 0.77), - SearchData(1100, 307599, 'Eagle Relief', 'panel|andesite/dacite, paint|stone-sculpture', 'ao/mobile-large/DP-20487-001.jpg', 1.11), - SearchData(1400, 317214, 'Celt', 'celt|stone|stone-implements', 'ao/mobile-large/hz1994_35_347.jpg', 0.66), - SearchData(1159, 310268, 'Eagle Pendant', 'pendant|gold|metal-ornaments', 'ao/mobile-large/DT5062.jpg', 0.80), - SearchData(-1000, 310556, 'Bottle', 'bottle|ceramic, pigment|ceramics-containers', 'ao/mobile-large/hb_1978.412.104.jpg', 0.76), - SearchData(1420, 307748, 'Stamp, Monkey', 'stamp|ceramic|ceramics-implements', 'ao/mobile-large/00.5.1177_b.jpg', 0.67), - SearchData(1400, 317247, 'Celt', 'celt|stone|stone-implements', 'ao/mobile-large/hz1994_35_381.jpg', 0.63), - SearchData(500, 317885, 'Bowl', 'bowl|ceramic|ceramics-containers', 'ao/mobile-large/1998.317.4.JPG', 1.17), - SearchData(700, 312596, 'Seated Female Figure', 'female figure|ceramic|ceramics-musical instruments', 'ao/mobile-large/1979.206.374.JPG', 0.72), - SearchData(1400, 317216, 'Celt', 'celt|stone|stone-implements', 'ao/mobile-large/hz1994_35_349.jpg', 0.62), - SearchData(25, 318346, 'Spouted Jar', 'jar|indurated limestone|stone-containers', 'ao/mobile-large/DT4518.jpg', 1.25), - SearchData(1400, 317102, 'Stone Chisel', 'chisel|stone|stone-implements', 'ao/mobile-large/hz1994_35_337.jpg', 0.75), - SearchData(700, 313149, 'Canine Ornament', 'ornament|shell (spondylus)|shell-ornaments', 'ao/mobile-large/DP-25094-001.jpg', 1.50), - SearchData(750, 315883, 'Bowl, Mythological Scene', 'bowl|ceramic|ceramics-containers', 'ao/mobile-large/DP-578-001.jpg', 1.32), - SearchData(1400, 317215, 'Celt', 'celt|stone|stone-implements', 'ao/mobile-large/hz1994_35_348.jpg', 0.71), - SearchData(1400, 317213, 'Celt', 'celt|stone|stone-implements', 'ao/mobile-large/hz1994_35_346.jpg', 0.63), - SearchData(800, 316813, 'Jar, Ritual Scenes', 'jar|ceramic, slip, pigment|ceramics-containers', 'ao/mobile-large/1993.441_a.JPG', 0.83), - SearchData(500, 316645, 'Deity Head Pendant', 'pendant|jade|stone-ornaments', 'ao/mobile-large/vs1991_362_2.jpg', 0.73), - SearchData(500, 309557, 'Closed Yoke', 'yoke|stone|stone-sculpture', 'ao/mobile-large/DP-17792-001.jpg', 1.53), - SearchData(-950, 318473, 'Blackware Bowl', 'bowl|ceramic|ceramics-containers', 'ao/mobile-large/DP705410.jpg', 0.82), - SearchData(1400, 317107, 'Celt', 'celt|stone|stone-implements', 'ao/mobile-large/hz1994_35_342.jpg', 0.73), - SearchData(-300, 313316, 'Bench Figure', 'male figure|greenstone (muscovite-paragonite phyllite)|stone-sculpture', 'ao/mobile-large/DP23089.jpg', 0.78), - SearchData(1400, 317226, 'Celt', 'celt|stone|stone-implements', 'ao/mobile-large/hz1994_35_360.jpg', 0.58), - SearchData(500, 313235, 'Hacha in the Shape of Bound Hands', 'hacha|stone|stone-sculpture', 'ao/mobile-large/DP104825.jpg', 0.95), - SearchData(750, 312643, 'Yoke', 'yoke|serpentine|stone-sculpture', 'ao/mobile-large/DP-23864-001.jpg', 1.46), - SearchData(1400, 317359, 'Tubular Bead', 'bead|stone|beads-ornaments', 'ao/mobile-large/VS1994_35_509.JPG', 0.49), - SearchData(550, 318444, 'Grouped Pigment Jars', 'jars|ceramic, pigment|ceramics-sculpture', 'ao/mobile-large/DP-23881-001.jpg', 1.37), - SearchData(400, 313262, 'Deity Figure', 'figure|jade (pyroxene jadeite)|stone-sculpture', 'ao/mobile-large/DP-23472-001.jpg', 0.76), - SearchData(1400, 317270, 'Celt', 'celt|stone|stone-implements', 'ao/mobile-large/hz1994_35_404.jpg', 0.47), - SearchData(1400, 317301, 'Celt-Form Pendant', 'pendant|stone|stone-ornaments', 'ao/mobile-large/VS1994_35_445.JPG', 0.93), - SearchData(499, 313330, 'Bird Pendant', 'pendant|jadeite|stone-ornaments', 'ao/mobile-large/DP-17791-001.jpg', 0.80), - SearchData(600, 310527, 'Stela Fragment with Glyphs', 'stela fragment|stone|stone-sculpture', 'ao/mobile-large/DT10173.jpg', 1.03), - SearchData(1100, 307598, 'Eagle Relief', 'panel|andesite or dacite, paint|stone-sculpture', 'ao/mobile-large/DP-17616-001.jpg', 1.08), - SearchData(1400, 317350, 'Bead', 'bead|stone|beads-ornaments', 'ao/mobile-large/hz1994_35_500.jpg', 0.97), - SearchData(1400, 317352, 'Bead', 'bead|stone|beads-ornaments', 'ao/mobile-large/hz1994_35_502.jpg', 1.01), - SearchData(400, 312586, 'Tripod Vessel', 'vessel|ceramic, red ochre|ceramics-containers', 'ao/mobile-large/DP302441.jpg', 1.10), - SearchData(500, 314557, 'Seated Figure Censer (Incensario)', 'censer|ceramic|ceramics-containers', 'ao/mobile-large/DT7407.jpg', 0.80), - SearchData(750, 316274, 'Plate with Trumpeter', 'plate|ceramic|ceramics-containers', 'ao/mobile-large/DP-24261-001.jpg', 1.02), - SearchData(650, 313254, 'Animal Head Hacha', 'hacha|stone|stone-sculpture', 'ao/mobile-large/DP-23868-001.jpg', 1.13), - SearchData(550, 317121, 'Earflare', 'earflare|jade|stone-ornaments', 'ao/mobile-large/VS1994_35_583.JPG', 1.21), - SearchData(800, 320147, 'Figure', 'figure|ceramic|ceramics-sculpture', 'ao/mobile-large/DP221679.jpg', 0.75), - SearchData(1400, 317237, 'Celt', 'celt|stone|stone-implements', 'ao/mobile-large/hz1994_35_371.jpg', 0.79), - SearchData(50, 319227, 'House Model', 'house model|ceramic|ceramics-sculpture', 'ao/mobile-large/DP-23908-001.jpg', 0.90), - SearchData(700, 317712, 'Head Pendant', 'pendant|shell|shell-ornaments', 'ao/mobile-large/262187.jpg', 0.64), - SearchData(1400, 318653, 'Celt', 'celt|stone|stone-implements', 'ao/mobile-large/hz1994_35_352.jpg', 0.84), - SearchData(1400, 317297, 'Celt-Form Pendant', 'pendant|stone|stone-ornaments', 'ao/mobile-large/VS1994_35_441.JPG', 0.61), - SearchData(749, 718242, 'Tripod Plate, Mythological Scene', 'plate|ceramic with red, cream, and black slip|ceramics', 'ao/mobile-large/DP-23101-003.jpg', 1.02), - SearchData(800, 320205, 'Figure', 'figure|ceramic, hematite|ceramics-sculpture', 'ao/mobile-large/DP220954.jpg', 0.75), - SearchData(550, 317429, 'Earflare Set', 'earflare set|jade|stone-ornaments', 'ao/mobile-large/VS1994_35_590.JPG', 1.80), - SearchData(1400, 317265, 'Celt', 'celt|stone|stone-implements', 'ao/mobile-large/hz1994_35_399.jpg', 0.64), - SearchData(1400, 317235, 'Celt', 'celt|stone|stone-implements', 'ao/mobile-large/hz1994_35_369.jpg', 0.87), - SearchData(700, 313241, 'Vessel', 'vessel|ceramic|ceramics-containers', 'ao/mobile-large/1979.206.1048_a.JPG', 0.93), - SearchData(750, 313335, 'Crocodile Rattle', 'rattle|ceramic|ceramics-musical instruments', 'ao/mobile-large/DT9416.jpg', 1.25), - SearchData(1475, 307634, 'Cihuateotl', 'figure|stone, pigment|stone-sculpture', 'ao/mobile-large/DT5116.jpg', 0.80), - SearchData(550, 317760, 'Pair of Carved Ornaments', 'earflare frontals|shell|shell-ornaments', 'ao/mobile-large/DP-14786-044.jpg', 1.29), - SearchData(-1050, 316302, 'Bowl (Tecomate)', 'bowl|ceramic|ceramics-containers', 'ao/mobile-large/DP23126.jpg', 0.93), - SearchData(550, 318405, 'Carved Bowl', 'bowl|ceramic|ceramics-containers', 'ao/mobile-large/DT4631.jpg', 1.25), - SearchData(1400, 317597, 'Polishing Stone (?)', 'polishing stone|stone|stone-implements', 'ao/mobile-large/vs1994_35_764.jpg', 0.96), - SearchData(700, 310364, 'Vessel, Mythological Scene', 'vessel|ceramic, pigment|ceramics-containers', 'ao/mobile-large/DP-576-001.jpg', 0.74), - SearchData(300, 314827, 'Tripod Bird Bowl', 'bowl with lid|ceramic|ceramics-containers', 'ao/mobile-large/DT4867.jpg', 0.80), - SearchData(750, 312162, 'Bowl', 'bowl|ceramic|ceramics-containers', 'ao/mobile-large/1979.205.7.JPG', 1.50), - SearchData(1400, 317266, 'Celt', 'celt|stone|stone-implements', 'ao/mobile-large/hz1994_35_400.jpg', 0.60), - SearchData(300, 312161, 'Bottle (Florero)', 'bottle|ceramic|ceramics-containers', 'ao/mobile-large/DP101922.jpg', 0.90), - SearchData(700, 319586, 'Pendant with Seated Lord', 'pendant|jadeite|stone-ornaments', 'ao/mobile-large/DP131715.jpg', 0.75), - SearchData(450, 310542, 'Double-Chambered Vessel', 'vessel with lid|ceramic|ceramics-containers', 'ao/mobile-large/DP-23468-001.jpg', 0.77), - SearchData(1400, 317103, 'Celt', 'celt|stone|stone-implements', 'ao/mobile-large/hz1994_35_338.jpg', 0.95), - SearchData(700, 319009, 'Covered Bowl', 'bowl with lid|ceramic|ceramics-containers', 'ao/mobile-large/DP-23884-001.jpg', 0.93), - SearchData(1460, 316873, 'Temple Model', 'temple model|ceramic|ceramics-sculpture', 'ao/mobile-large/DP341942.jpg', 0.75), - SearchData(700, 310475, 'Head from a Figure', 'head|ceramic|ceramics-sculpture', 'ao/mobile-large/1978.412.19.JPG', 0.72), - SearchData(800, 316267, 'Ball Player', 'male figure|ceramic|ceramics-sculpture', 'ao/mobile-large/DP-23878-001.jpg', 0.67), - SearchData(150, 314524, 'Cylindrical Vessel', 'vessel|ceramic|ceramics-containers', 'ao/mobile-large/h1_1982.207.7.jpg', 0.71), - SearchData(-650, 313337, 'Ritual Spoon Pendant', 'pendant|jadeite|stone-ornaments', 'ao/mobile-large/DP-25108-001.jpg', 0.46), - SearchData(699, 53939, 'Head Pendant', 'pendant|jade (jadeite)|jade', 'as/mobile-large/DP-14791-008.jpg', 0.75), - SearchData(750, 313151, 'Costumed Figure', 'male figure|ceramic, pigment|ceramics-musical instruments', 'ao/mobile-large/1979.206.953_a.JPG', 0.67), - SearchData(1400, 317305, 'Celt', 'chisel|stone|stone-implements', 'ao/mobile-large/VS1994_35_449.JPG', 1.46), - SearchData(699, 662967, 'Codex-Style Vase with Mythological Scene', 'vase|ceramic|ceramics-vessels', 'ao/mobile-large/DP348021.jpg', 0.75), - SearchData(-650, 749344, 'Kneeling Bearded Figure', 'figure|serpentine|stone-sculpture', 'ao/mobile-large/DP15497-009-.jpg', 0.80), - SearchData(-1000, 316301, 'Bowl (Tecomate)', 'bowl|ceramic|ceramics-containers', 'ao/mobile-large/DP-23910-001.jpg', 1.16), - SearchData(1399, 705547, 'Necklace with Beads in the Shape of Jaguar Teeth', 'necklace|gold|metalwork-gold', 'ao/mobile-large/DP-14865-001.jpg', 1.33), - SearchData(-600, 310513, 'Pendant', 'pendant|jade|stone-ornaments', 'ao/mobile-large/vs1978_412_57.jpg', 1.66), - SearchData(800, 317619, 'Turkey Vessel', 'vessel|ceramic, slip, pigment|ceramics-containers', 'ao/mobile-large/hz1998_71.jpg', 1.31), - SearchData(750, 313325, 'Ceremonial Handle (?)', 'handle|jade (jadeite/omphacite)|stone-sculpture', 'ao/mobile-large/DP102172corrected.jpg', 0.87), - SearchData(-1000, 313319, 'Small Yoke with Face', 'yoke|stone|stone-sculpture', 'ao/mobile-large/DP-24242-001.jpg', 1.22), - SearchData(700, 313342, 'Figure with Helmet Mask', 'male figure|ceramic, pigment|ceramics-sculpture', 'ao/mobile-large/1979.206.1150_a1.JPG', 1.07), - SearchData(1400, 317106, 'Celt', 'celt|stone|stone-implements', 'ao/mobile-large/hz1994_35_341.jpg', 1.00), - SearchData(1400, 315730, 'Footed Vessel', 'bowl|calcite|stone-containers', 'ao/mobile-large/1989.314.25.JPG', 0.81), - SearchData(772, 313240, 'Relief with Enthroned Ruler', 'relief|limestone, paint|stone-sculpture', 'ao/mobile-large/DP104826.jpg', 0.99), - SearchData(-1000, 318464, 'Duck-Head Vessel', 'vessel|ceramic|ceramics-containers', 'ao/mobile-large/DP705381.jpg', 0.98), - SearchData(650, 701645, 'Pendant', 'pendant|jadeite, pigment|stone-ornaments', 'ao/mobile-large/DP-25104-001.jpg', 0.63), - SearchData(-750, 317697, 'Eagle Transformation Figure', 'figure|albitite, cinnabar|stone-sculpture', 'ao/mobile-large/DP-25107-001.jpg', 0.58), - SearchData(550, 313256, 'Mirror-Bearer', 'male figure|wood, red hematite|wood-sculpture', 'ao/mobile-large/DP-24340-001.jpg', 0.73), - SearchData(1400, 317295, 'Celt', 'celt|stone|stone-implements', 'ao/mobile-large/VS1994_35_439.JPG', 0.46), - SearchData(750, 318463, 'Pendant with Figure and Double-Headed Crocodilian', 'pendant|shell|shell-ornaments', 'ao/mobile-large/DP-25095-001.jpg', 1.33), - SearchData(700, 310555, 'Bird Ornament', 'ornament|shell|shell-ornaments', 'ao/mobile-large/DP-23474-001.jpg', 1.09), - SearchData(1400, 317225, 'Celt', 'celt|stone|stone-implements', 'ao/mobile-large/hz1994_35_359.jpg', 0.67), - SearchData(1400, 317275, 'Celt', 'celt|stone|stone-implements', 'ao/mobile-large/hz1994_35_409.jpg', 2.77), - SearchData(700, 319873, 'Deity Face Pendant', 'pendant|jadeite/omphacite, iron ochre|stone-ornaments', 'ao/mobile-large/DP148420.jpg', 0.75), - SearchData(700, 316711, 'Vessel with Seated Lord', 'vessel|ceramic, stucco|ceramics-containers', 'ao/mobile-large/DP-24262-001.jpg', 0.86), - SearchData(700, 312595, 'Seated Female Figure', 'female figure|ceramic|ceramics-musical instruments', 'ao/mobile-large/DP-12659-001.jpg', 0.75), - SearchData(750, 318628, 'Cylinder Vessel', 'vessel|ceramic, slip, stucco|ceramics-containers', 'ao/mobile-large/1979.205.8.JPG', 0.85), - SearchData(1300, 313257, 'Crocodile-Head Figure Pendant', 'pendant|gold (cast alloy), pyrite inlay|metal-ornaments', 'ao/mobile-large/VS19792061064.JPG', 0.70), - SearchData(1400, 317263, 'Celt', 'celt|stone|stone-implements', 'ao/mobile-large/hz1994_35_397.jpg', 0.70), - SearchData(737, 318662, 'Vessel, Throne Scene', 'vessel|ceramic, pigment|ceramics-containers', 'ao/mobile-large/DT4514.jpg', 0.80), - SearchData(150, 316300, 'Cylindrical Vessel', 'vessel|ceramic|ceramics-containers', 'ao/mobile-large/DP242327.jpg', 1.03), - SearchData(-99, 314522, 'Tetrapod Jar', 'bowl|ceramic|ceramics-containers', 'ao/mobile-large/DP23127.jpg', 1.03), - SearchData(1400, 317320, 'Blade', 'blade|flint|stone-implements', 'ao/mobile-large/hz1994_35_464.jpg', 0.43), - SearchData(750, 312645, 'Palma with textile motif', 'palma|stone, pigment|stone-sculpture', 'ao/mobile-large/DP104834.jpg', 0.83), - SearchData(550, 314832, 'Shell Ornament', 'pendant|jade|stone-ornaments', 'ao/mobile-large/vs1985_216_2.jpg', 2.35), - SearchData(1400, 317246, 'Celt', 'celt|stone|stone-implements', 'ao/mobile-large/hz1994_35_380.jpg', 0.60), - SearchData(50, 677436, 'Human Figure', 'figure|clay|ceramics-sculpture', 'ao/mobile-large/LC-300_5434.jpg', 1.34), - SearchData(1843, 591853, 'Incidents of Travel in Yucatan', '|illustrated book|', 'li/mobile-large/liUDs83v2.R.jpg', 1.53), - SearchData(1470, 321292, 'Head from a figure, Xochipilli-Macuilxochitl', 'head|obsidian|glass-sculpture', 'ao/mobile-large/TR.451.2.2012_a.jpg', 1.60), - SearchData(300, 313035, 'Ornament with Maya Glyph', 'ornament|jadeite|stone-ornaments', 'ao/mobile-large/VS1979206858A.JPG', 1.23), - SearchData(900, 316304, 'Tripod Plate', 'plate|ceramic|ceramics-containers', 'ao/mobile-large/DP219258.jpg', 0.81), - SearchData(700, 310644, 'Scepter with Profile Figures', 'scepter|flint|stone-sculpture', 'ao/mobile-large/DT10197.jpg', 0.79), - SearchData(1400, 317358, 'Tubular Bead', 'bead|stone|beads-ornaments', 'ao/mobile-large/VS1994_35_508.JPG', 2.59), - SearchData(1000, 310480, 'Head of a Rain God', 'head|fossiliferous limestone|stone-sculpture', 'ao/mobile-large/DP102948.jpg', 0.99), - SearchData(800, 318678, 'Standing Figure', 'figure|ceramic|ceramics-sculpture', 'ao/mobile-large/vs00_5_176.jpg', 0.96), - SearchData(749, 761272, 'Vessel with Water Bird and Hieroglyphic Text', 'vessel|ceramic|ceramics-vessels', 'ao/mobile-large/DP-15497-005.jpg', 1.21), - SearchData(-650, 316288, 'Celt', 'celt|jade|stone-ornaments', 'ao/mobile-large/1989.314.4.jpg', 0.67), - SearchData(700, 312818, 'Ornamental Figure', 'ornament|shell|shell-ornaments', 'ao/mobile-large/vs1979_206_622.jpg', 0.38), - SearchData(900, 307443, 'Fragmentary Relief', 'relief|stone|stone-sculpture', 'ao/mobile-large/DP-20489-002.jpg', 1.43), - SearchData(300, 315884, 'Lidded Vessel', 'bowl with lid|ceramic, slip, pigment|ceramics-containers', 'ao/mobile-large/1987.450.2ab1.JPG', 1.30), - SearchData(1400, 317365, 'Tubular Bead', 'bead|stone|beads-ornaments', 'ao/mobile-large/VS1994_35_515.JPG', 3.53), - SearchData(-650, 310495, 'Yoke', 'yoke|stone, pigment|stone-sculpture', 'ao/mobile-large/DT10169.jpg', 0.80), - SearchData(700, 314305, 'Bowl', 'bowl|ceramic, slip, pigment|ceramics-containers', 'ao/mobile-large/1983.505_a.JPG', 1.50), - SearchData(550, 317430, 'Earflare Set', 'earflare set|jade|stone-ornaments', 'ao/mobile-large/VS1994_35_591.JPG', 1.79), - SearchData(800, 320206, 'Figure', 'figure|ceramic|ceramics-sculpture', 'ao/mobile-large/DP220955.jpg', 0.75), - SearchData(500, 310354, 'Bowl with Pouring Lip', 'bowl|ceramic|ceramics-containers', 'ao/mobile-large/1978.309.1.JPG', 1.12), - SearchData(1400, 317212, 'Celt', 'celt|stone|stone-implements', 'ao/mobile-large/hz1994_35_345.jpg', 0.64), - SearchData(750, 312804, 'Figure Rattle', 'rattle|ceramic, pigment|ceramics-musical instruments', 'ao/mobile-large/1979.206.608.JPG', 0.70), - SearchData(900, 313242, 'Bowl', 'bowl|ceramic|ceramics-containers', 'ao/mobile-large/1979.206.1049_a.JPG', 1.23), - SearchData(550, 315035, 'Head Pendant', 'pendant|stone|stone-ornaments', 'ao/mobile-large/vs1986_483.jpg', 0.57), - SearchData(200, 314518, 'Tetrapod Bowl', 'vessel|ceramic|ceramics-containers', 'ao/mobile-large/DP-13003-001.jpg', 1.25), -]; \ No newline at end of file + SearchData(500, 317885, 'Bowl', 'bowl|ceramic|ceramics-containers'), + SearchData(1550, 310589, 'Figure Vessel', 'vessel|ceramic|ceramics-containers'), + SearchData(8, 312915, 'Maize God emerging from a flower', 'figure|ceramic, pigment|ceramics-sculpture'), + SearchData(550, 317430, 'Earflare Set', 'earflare set|jade|stone-ornaments'), + SearchData(550, 315035, 'Head Pendant', 'pendant|stone|stone-ornaments'), + SearchData(1000, 310480, 'Head of a Rain God', 'head|fossiliferous limestone|stone-sculpture'), + SearchData(1400, 317275, 'Celt', 'celt|stone|stone-implements'), + SearchData(1400, 317266, 'Celt', 'celt|stone|stone-implements'), + SearchData(50, 319227, 'House Model', 'house model|ceramic|ceramics-sculpture'), + SearchData(-950, 318473, 'Blackware Bowl', 'bowl|ceramic|ceramics-containers'), + SearchData(1400, 317101, 'Stone Chisel', 'chisel|stone|stone-implements'), + SearchData(700, 313336, 'Handle (?)', 'tube|bone|bone/ivory-sculpture'), + SearchData(1400, 317247, 'Celt', 'celt|stone|stone-implements'), + SearchData(400, 316299, 'Pair of Earflare Frontals', 'earflare frontals|jade (jadeite)|stone-ornaments'), + SearchData(700, 317712, 'Head Pendant', 'pendant|shell|shell-ornaments'), + SearchData(1475, 307634, 'Cihuateotl', 'figure|volcanic stone (porphyritic andesite), pigment|stone-sculpture'), + SearchData(1400, 317107, 'Celt', 'celt|stone|stone-implements'), + SearchData(550, 318444, 'Grouped Pigment Jars', 'jars|ceramic, pigment|ceramics-sculpture'), + SearchData(-300, 313316, 'Bench Figure', 'male figure|greenstone (muscovite-paragonite phyllite)|stone-sculpture'), + SearchData(1400, 317352, 'Bead', 'bead|stone|beads-ornaments'), + SearchData(-650, 749344, 'Kneeling Bearded Figure', 'figure|serpentine, pigment (probably cinnabar)|stone-sculpture'), + SearchData(737, 318662, 'Vessel, Throne Scene', 'vessel|ceramic, pigment|ceramics-containers'), + SearchData(1000, 313091, 'Ceremonial Metate', 'metate|diabase|stone-implements'), + SearchData(1400, 317241, 'Celt', 'celt|stone|stone-implements'), + SearchData(700, 313241, 'Vessel', 'vessel|ceramic|ceramics-containers'), + SearchData(750, 312162, 'Bowl', 'bowl|ceramic|ceramics-containers'), + SearchData(1400, 317246, 'Celt', 'celt|stone|stone-implements'), + SearchData(1400, 317263, 'Celt', 'celt|stone|stone-implements'), + SearchData(1400, 317215, 'Celt', 'celt|stone|stone-implements'), + SearchData(1420, 307748, 'Stamp, Monkey', 'stamp|ceramic|ceramics-implements'), + SearchData(499, 313330, 'Bird Pendant', 'pendant|jadeite|stone-ornaments'), + SearchData(150, 314524, 'Cylindrical Vessel', 'vessel|ceramic|ceramics-containers'), + SearchData(-650, 313138, 'Seated Bench Figure', 'figure|serpentine|stone-sculpture'), + SearchData(550, 317121, 'Earflare', 'earflare|jade|stone-ornaments'), + SearchData(350, 318345, 'Censer, Seated King', 'censer|ceramic|ceramics-containers'), + SearchData(1400, 317211, 'Celt', 'celt|stone|stone-implements'), + SearchData(0, 314523, 'Cylindrical Vessel', 'vessel|ceramic, slip|ceramics-containers'), + SearchData(1400, 317102, 'Stone Chisel', 'chisel|stone|stone-implements'), + SearchData(700, 310475, 'Head from a Figure', 'head|ceramic|ceramics-sculpture'), + SearchData(1400, 317212, 'Celt', 'celt|stone|stone-implements'), + SearchData(0, 701645, 'Pendant', 'pendant|jadeite, pigment|stone-ornaments'), + SearchData(-99, 314522, 'Tetrapod Jar', 'bowl|ceramic|ceramics-containers'), + SearchData(150, 316300, 'Cylindrical Vessel', 'vessel|ceramic|ceramics-containers'), + SearchData(-1050, 316302, 'Bowl (Tecomate)', 'bowl|ceramic|ceramics-containers'), + SearchData(1400, 317297, 'Celt-Form Pendant', 'pendant|stone|stone-ornaments'), + SearchData(400, 313262, 'Deity figure', 'figure|jade (pyroxene jadeite)|stone-sculpture'), + SearchData(700, 314305, 'Bowl', 'bowl|ceramic, slip, pigment|ceramics-containers'), + SearchData(750, 316274, 'Plate with Trumpeter', 'plate|ceramic|ceramics-containers'), + SearchData(700, 316711, 'Vessel with Seated Lord', 'vessel|ceramic, stucco|ceramics-containers'), + SearchData(749, 761272, 'Vessel with water bird and hieroglyphic text', 'vessel|ceramic|ceramics-vessels'), + SearchData(1400, 317635, 'Gouge', 'chisel|stone|stone-implements'), + SearchData(500, 313235, 'Hacha in the Shape of Bound Hands', 'hacha|stone|stone-sculpture'), + SearchData(550, 318405, 'Carved Bowl', 'bowl|ceramic|ceramics-containers'), + SearchData(1400, 317303, 'Chisel', 'chisel|stone|stone-implements'), + SearchData(1159, 310268, 'Eagle Pendant', 'pendant|gold|metal-ornaments'), + SearchData(700, 312818, 'Ornamental Figure', 'ornament|shell|shell-ornaments'), + SearchData(700, 310555, 'Bird ornament', 'ornament|shell|shell-ornaments'), + SearchData(300, 312161, 'Bottle (Florero)', 'bottle|ceramic|ceramics-containers'), + SearchData(50, 677436, 'Human Figure', 'figure|clay|ceramics-sculpture'), + SearchData(700, 312596, 'Seated Female Figure', 'female figure|ceramic|ceramics-musical instruments'), + SearchData(1400, 317248, 'Celt', 'celt|stone|stone-implements'), + SearchData(1400, 315730, 'Footed Vessel', 'bowl|calcite|stone-containers'), + SearchData(900, 313242, 'Bowl', 'bowl|ceramic|ceramics-containers'), + SearchData(-1000, 313319, 'Small Yoke with Face', 'yoke|stone|stone-sculpture'), + SearchData(1400, 317213, 'Celt', 'celt|stone|stone-implements'), + SearchData(750, 315883, 'Bowl, Mythological Scene', 'bowl|ceramic|ceramics-containers'), + SearchData(750, 310474, 'Hacha', 'hacha|stone, pigment|stone-sculpture'), + SearchData(750, 312804, 'Figure Rattle', 'rattle|ceramic, pigment|ceramics-musical instruments'), + SearchData(750, 313151, 'Costumed Figure', 'male figure|ceramic, pigment|ceramics-musical instruments'), + SearchData(750, 501839, 'Pottery Rattle', 'pottery rattle|clay|idiophone-shaken-rattle'), + SearchData(-650, 310495, 'Yoke', 'yoke|stone, pigment|stone-sculpture'), + SearchData(700, 310364, 'Vessel with mythological scene', 'vessel|ceramic, pigment|ceramics-containers'), + SearchData(1399, 705547, 'Necklace with Beads in the Shape of Jaguar Teeth', 'necklace|gold|metalwork-gold'), + SearchData(-650, 316288, 'Celt', 'celt|jade|stone-ornaments'), + SearchData(550, 317429, 'Earflare Set', 'earflare set|jade|stone-ornaments'), + SearchData(900, 316304, 'Tripod Plate', 'plate|ceramic|ceramics-containers'), + SearchData(800, 316267, 'Ball Player', 'male figure|ceramic|ceramics-sculpture'), + SearchData(1300, 313257, 'Crocodile-Head Figure Pendant', 'pendant|gold (cast alloy), pyrite inlay|metal-ornaments'), + SearchData(-1000, 316301, 'Bowl (Tecomate)', 'bowl|ceramic|ceramics-containers'), + SearchData(-650, 309987, 'Duck-Face Ornament', 'ornament|jadeite, pigment|stone-ornaments'), + SearchData(1400, 317291, 'Adze', 'adze|stone|stone-implements'), + SearchData(1399, 318679, 'Monkey stamp', 'stamp|ceramic|ceramics-implements'), + SearchData(1400, 317099, 'Stone Chisel', 'chisel|stone|stone-implements'), + SearchData(1400, 317359, 'Tubular Bead', 'bead|stone|beads-ornaments'), + SearchData(650, 313254, 'Animal Head Hacha', 'hacha|stone|stone-sculpture'), + SearchData(772, 313240, 'Relief with Enthroned Ruler', 'relief|limestone, paint|stone-sculpture'), + SearchData(700, 313342, 'Figure with Helmet Mask', 'male figure|ceramic, pigment|ceramics-sculpture'), + SearchData(800, 316813, 'Jar, Ritual Scenes', 'jar|ceramic, slip, pigment|ceramics-containers'), + SearchData(1400, 317314, 'Eccentric Flint', 'flint|flint|stone-implements'), + SearchData(1400, 317270, 'Celt', 'celt|stone|stone-implements'), + SearchData(1400, 317226, 'Celt', 'celt|stone|stone-implements'), + SearchData(850, 310540, 'Column', 'column|limestone|stone-sculpture'), + SearchData(-1000, 312589, 'Relief-Carved Bowl', 'vessel|ceramic|ceramics-containers'), + SearchData(1400, 317350, 'Bead', 'bead|stone|beads-ornaments'), + SearchData(1470, 321292, 'Head from a figure, Xochipilli-Macuilxochitl', 'head|obsidian|glass-sculpture'), + SearchData(1400, 317237, 'Celt', 'celt|stone|stone-implements'), + SearchData(750, 313325, 'Ceremonial Handle (?)', 'handle|jade (jadeite/omphacite)|stone-sculpture'), + SearchData(900, 309901, 'Pedestal Bowl', 'bowl|marble|stone-containers'), + SearchData(800, 320205, 'Figure', 'figure|ceramic, hematite|ceramics-sculpture'), + SearchData(1400, 317365, 'Tubular Bead', 'bead|stone|beads-ornaments'), + SearchData(1400, 317265, 'Celt', 'celt|stone|stone-implements'), + SearchData(0, 319873, 'Deity face pendant', 'pendant|jadeite or omphacite, iron ochre|stone-ornaments'), + SearchData(0, 312581, 'House Model', 'house model|ceramic|ceramics-sculpture'), + SearchData(700, 313315, 'Vessel with Deity Figures', 'vessel|ceramic|ceramics-containers'), + SearchData(600, 310527, 'Stela Fragment with Glyphs', 'stela fragment|stone|stone-sculpture'), + SearchData(1400, 317216, 'Celt', 'celt|stone|stone-implements'), + SearchData(300, 313035, 'Ornament with Maya Glyph', 'ornament|jadeite|stone-ornaments'), + SearchData(1400, 317295, 'Celt', 'celt|stone|stone-implements'), + SearchData(500, 314557, 'Seated Figure Censer (Incensario)', 'censer|ceramic|ceramics-containers'), + SearchData(850, 309404, 'Chahk', 'figure|limestone|stone-sculpture'), + SearchData(750, 313386, '"Smiling" Figure', 'male figure|ceramic|ceramics-sculpture'), + SearchData(-1000, 318464, 'Duck-Head Vessel', 'vessel|ceramic|ceramics-containers'), + SearchData( + 749, 718242, 'Tripod plate with mythological scene', 'plate|ceramic with red, cream, and black slip|ceramics'), + SearchData(800, 317619, 'Turkey Vessel', 'vessel|ceramic, slip, pigment|ceramics-containers'), + SearchData(700, 310468, 'Standing Male Figure', 'male figure|ceramic|ceramics-sculpture'), + SearchData(700, 314311, 'Cylindrical Vessel', 'vessel|ceramic, slip, pigment|stone-containers'), + SearchData(-650, 313337, 'Ritual Spoon Pendant', 'pendant|jadeite|stone-ornaments'), + SearchData(1400, 317222, 'Celt', 'celt|stone|stone-implements'), + SearchData(1400, 317106, 'Celt', 'celt|stone|stone-implements'), + SearchData(1400, 317267, 'Celt', 'celt|stone|stone-implements'), + SearchData(749, 503940, 'Double Whistle', 'double whistle|pottery, paint|aerophone-whistle flute'), + SearchData(700, 314217, 'Vessel with mythological scene', 'vessel|ceramic|ceramics-containers'), + SearchData(500, 310354, 'Bowl with Pouring Lip', 'bowl|ceramic|ceramics-containers'), + SearchData(25, 318346, 'Spouted Jar', 'jar|indurated limestone|stone-containers'), + SearchData(1400, 317235, 'Celt', 'celt|stone|stone-implements'), + SearchData(1400, 317597, 'Polishing Stone (?)', 'polishing stone|stone|stone-implements'), + SearchData(1400, 317100, 'Stone Chisel', 'chisel|stone|stone-implements'), + SearchData(1400, 317103, 'Celt', 'celt|stone|stone-implements'), + SearchData(700, 312595, 'Seated Female Figure', 'female figure|ceramic|ceramics-musical instruments'), + SearchData(1350, 312599, 'Pedestal Bowl', 'bowl|ceramic|ceramics-containers'), + SearchData(550, 314832, 'Shell Ornament', 'pendant|jade|stone-ornaments'), + SearchData(550, 317120, 'Earflare', 'earflare|jade|stone-ornaments'), + SearchData(699, 662967, 'Vessel with mythological scene', 'vase|ceramic|ceramics-vessels'), + SearchData(700, 310651, 'Vessel, Palace Scene', 'vessel|ceramic|ceramics-containers'), + SearchData(1049, 319238, 'Female figure', 'figure|stone|stone-sculpture'), + SearchData(750, 313335, 'Crocodile whistle and rattle', 'rattle|ceramic, pigment|ceramics-musical instruments'), + SearchData(400, 312586, 'Tripod Vessel', 'vessel|ceramic, red ochre|ceramics-containers'), + SearchData(750, 318628, 'Cylinder Vessel', 'vessel|ceramic, slip, stucco|ceramics-containers'), + SearchData(800, 312593, 'Hacha, Head', 'hacha|andesite, pigment|stone-sculpture'), + SearchData(700, 319633, 'Cylindrical Vessel', 'vessel|ceramic|ceramics-containers'), + SearchData(699, 53939, 'Head Pendant', 'pendant|jade (jadeite)|jade'), + SearchData(700, 313149, 'Canine Ornament', 'ornament|shell (spondylus)|shell-ornaments'), + SearchData(1400, 317217, 'Celt', 'celt|stone|stone-implements'), + SearchData(750, 318463, 'Pendant with Figure and Double-Headed Crocodilian', 'pendant|shell|shell-ornaments'), + SearchData(1100, 313348, 'Monkey Vessel', 'vessel|onyx marble, pyrite, shell|stone-containers'), + SearchData(700, 319009, 'Covered Bowl', 'bowl with lid|ceramic|ceramics-containers'), + SearchData(750, 312645, 'Palma with textile motif', + 'palma|stone, pigment hazardous materials: contains mercury and lead|stone-sculpture'), + SearchData(450, 310542, 'Whistling vessel', 'vessel with lid|ceramic|ceramics-containers'), + SearchData(1400, 317244, 'Stone Chisel', 'chisel|stone|stone-implements'), + SearchData(500, 316645, 'Deity Head Pendant', 'pendant|jade|stone-ornaments'), + SearchData(1460, 316873, 'Temple Model', 'temple model|ceramic|ceramics-sculpture'), + SearchData(550, 317760, 'Pair of carved ornaments with the Maize God', 'earflare frontals|shell|shell-ornaments'), + SearchData(1400, 317227, 'Celt', 'celt|stone|stone-implements'), + SearchData(1360, 309861, 'Deity Censer (Xantil)', 'censer|ceramic, pigment|ceramics-sculpture'), + SearchData(300, 314827, 'Tripod Bird Bowl', 'bowl with lid|ceramic|ceramics-containers'), + SearchData(1400, 317225, 'Celt', 'celt|stone|stone-implements'), + SearchData(1400, 317214, 'Celt', 'celt|stone|stone-implements'), + SearchData(1400, 317234, 'Celt', 'celt|stone|stone-implements'), + SearchData(500, 309557, 'Closed Yoke', 'yoke|volcanic rhyolitic tuff|stone-sculpture'), + SearchData(800, 320147, 'Figure', 'figure|ceramic|ceramics-sculpture'), + SearchData(200, 314518, 'Tetrapod Bowl', 'vessel|ceramic|ceramics-containers'), + SearchData(800, 318678, 'Standing Figure', 'figure|ceramic|ceramics-sculpture'), + SearchData(1420, 307744, 'Stamp, Monkey', 'stamp|ceramic|ceramics-implements'), + SearchData(-600, 310513, 'Pendant', 'pendant|jade|stone-ornaments'), + SearchData(-650, 310467, 'Celt with Incised Profile', 'celt|jade (jadeite), traces of red pigment|stone-implements'), + SearchData(300, 315884, 'Lidded Vessel', 'bowl with lid|ceramic, slip, pigment|ceramics-containers'), + SearchData(-1000, 314946, 'Bird Vessel', 'vessel|ceramic, red ochre|ceramics-containers'), + SearchData(1400, 317210, 'Celt', 'celt|stone|stone-implements'), + SearchData(700, 319586, 'Pendant with Seated Lord', 'pendant|jadeite|stone-ornaments'), + SearchData(800, 320206, 'Figure', 'figure|ceramic|ceramics-sculpture'), + SearchData(1400, 317358, 'Tubular Bead', 'bead|stone|beads-ornaments'), + SearchData(-1000, 310556, 'Bottle', 'bottle|ceramic, pigment|ceramics-containers'), + SearchData(900, 307443, 'Fragmentary Relief', 'relief|stone|stone-sculpture'), + SearchData(1100, 307598, 'Eagle Relief', 'panel|andesite or dacite, paint|stone-sculpture'), + SearchData(1100, 307599, 'Eagle Relief', 'panel|andesite/dacite, paint|stone-sculpture'), + SearchData(1400, 317301, 'Celt-Form Pendant', 'pendant|stone|stone-ornaments'), + SearchData(0, 317600, 'Temple Model', 'temple model|ceramic|ceramics-sculpture'), + SearchData(1250, 318229, 'Metate Fragment', 'metate fragment|stone|stone-sculpture'), + SearchData(1400, 318653, 'Celt', 'celt|stone|stone-implements'), + SearchData(775, 310551, 'Censer Support', 'censer support|ceramic|ceramics-sculpture'), + SearchData(600, 310607, 'Vessel, Seated Deities', 'vessel|ceramic|ceramics-containers'), + SearchData(700, 310644, 'Scepter with profile figures', 'scepter|flint|stone-sculpture'), + SearchData(1843, 591853, 'Incidents of Travel in Yucatan', '|illustrated book|'), + SearchData(-750, 317697, 'Eagle Transformation Figure', 'figure|albitite, cinnabar, stone|stone-sculpture'), + SearchData(1400, 317233, 'Celt', 'celt|stone|stone-implements'), + SearchData(750, 312643, 'Yoke', 'yoke|serpentine|stone-sculpture'), + SearchData(1400, 317305, 'Celt', 'chisel|stone|stone-implements'), + SearchData(1400, 317320, 'Blade', 'blade|flint|stone-implements'), + SearchData( + 400, 309713, 'Yoke-Form Vessel', 'vessel with lid|ceramic, red pigment (possibly cinnabar)|ceramics-containers'), +]; diff --git a/lib/logic/data/wonders_data/search/christ_redeemer_search_data.dart b/lib/logic/data/wonders_data/search/christ_redeemer_search_data.dart index a8b4bb4c..77d68aef 100644 --- a/lib/logic/data/wonders_data/search/christ_redeemer_search_data.dart +++ b/lib/logic/data/wonders_data/search/christ_redeemer_search_data.dart @@ -1,24 +1,40 @@ part of '../christ_redeemer_data.dart'; // Search suggestions (11) -List _searchSuggestions = const ['ivory', 'blown', 'cane', 'hole', 'vibrated', 'aerophone', 'blow', 'fan', 'flute', 'bamboo', 'lip', ]; +List _searchSuggestions = const [ + 'ivory', + 'blown', + 'cane', + 'hole', + 'vibrated', + 'aerophone', + 'blow', + 'fan', + 'flute', + 'bamboo', + 'lip', +]; -// Christ the Redeemer (16) +// Christ the Redeemer (17) List _searchData = const [ - SearchData(1850, 501336, 'Flute', 'flute|bamboo|aerophone-blow hole-end-blown flute (vertical)', 'mi/mobile-large/midp89.4.720 (2).jpg', 1.78), - SearchData(1875, 501319, 'Pluriarc', 'pluriarc||chordophone-musical bow', 'mi/mobile-large/midp89.4.703.jpg', 0.60), - SearchData(1875, 501302, 'Engraved Horn', 'engraved horn|horn|aerophone-lip vibrated-horn', 'mi/mobile-large/MUS550A2.jpg', 0.58), - SearchData(1850, 502019, 'Rattle', 'rattle|fruit or nut shells, fiber rope, cord|idiophone-shaken-rattle', 'mi/mobile-large/midp89.4.1453.jpg', 1.78), - SearchData(950, 319556, 'Plate', 'plate|ceramic|ceramics-containers', 'ao/mobile-large/2005.461_a.jpg', 1.50), - SearchData(1850, 502107, 'Caracasha', 'caracasha|bamboo, basketry, oxhorn, fiber, rubber or resin|aerophone-lip vibrated-trumpet / trombone', 'mi/mobile-large/MUS563A21.jpg', 0.40), - SearchData(1850, 227759, 'Handkerchiefs (one of two)', 'handkerchief||', 'ad/mobile-large/DP2896.jpg', 0.95), - SearchData(1850, 501338, 'Poo-Do-Parana (flute)', 'poo-do-parana (flute)|bamboo, dried grass|aerophone-blow hole-side-blown flute (transverse)', 'mi/mobile-large/midp89.4.722.jpg', 2.26), - SearchData(1850, 227758, 'Handkerchiefs (one of two)', 'handkerchief||', 'ad/mobile-large/DP2927.jpg', 1.01), - SearchData(1850, 501337, 'Flute', 'flute|cane|aerophone-blow hole-end-blown flute (vertical)', 'mi/mobile-large/midp89.4.721.jpg', 1.78), - SearchData(1850, 501335, 'Flute', 'flute|bamboo or cane|aerophone-blow hole-side-blown flute (transverse)', 'mi/mobile-large/midp89.4.719.jpg', 1.78), - SearchData(1887, 122578, 'Fan', 'fan|feathers, ivory|', 'ci/mobile-large/CI43.45.1.jpg', 1.09), - SearchData(1850, 502182, 'Caracasha', 'caracasha|gourd, cane or bamboo, basketry, fibercord, rubber or resin|aerophone-lip vibrated-trumpet / trombone', 'mi/mobile-large/MUS563A19.jpg', 5.25), - SearchData(1850, 501334, 'Whistle', 'whistle|wood|aerophone-whistle flute-whistle flute', 'mi/mobile-large/MUS563A5.jpg', 0.16), - SearchData(1870, 157985, 'Fixed fan', 'fixed fan|ivory, feather|', 'ci/mobile-large/48.60_front_CP4.jpg', 0.79), - SearchData(1887, 122579, 'Fan', 'fan|feathers, ivory|', 'ci/mobile-large/CI43.45.2.jpg', 1.01), -]; \ No newline at end of file + SearchData(1849, 215298, 'Square', 'square|drawnwork|'), + SearchData(1850, 501337, 'Flute', 'flute|cane|aerophone-blow hole-end-blown flute (vertical)'), + SearchData(950, 319556, 'Plate', 'plate|ceramic|ceramics-containers'), + SearchData(1870, 157985, 'Fixed fan', 'fixed fan|ivory, feather|'), + SearchData(1850, 501336, 'Flute', 'flute|bamboo|aerophone-blow hole-end-blown flute (vertical)'), + SearchData(1850, 227759, 'Handkerchiefs (one of two)', 'handkerchief||'), + SearchData(1850, 501334, 'Whistle', 'whistle|cane or bamboo|aerophone-whistle flute-whistle flute'), + SearchData(1875, 501319, 'Pluriarc', 'pluriarc||chordophone-musical bow'), + SearchData(1887, 122579, 'Fan', 'fan|feathers, ivory|'), + SearchData(1850, 227758, 'Handkerchiefs (one of two)', 'handkerchief||'), + SearchData(1850, 501335, 'Flute', 'flute|bamboo or cane|aerophone-blow hole-side-blown flute (transverse)'), + SearchData(1875, 501302, 'Engraved Horn', 'engraved horn|horn|aerophone-lip vibrated-horn'), + SearchData(1850, 502019, 'Rattle', 'rattle|fruit or nut shells, fiber rope, cord|idiophone-shaken-rattle'), + SearchData(1850, 502107, 'Caracasha', + 'caracasha|bamboo, basketry, oxhorn, fiber, rubber or resin|aerophone-lip vibrated-trumpet / trombone'), + SearchData(1850, 501338, 'Poo-Do-Parana (flute)', + 'poo-do-parana (flute)|bamboo, dried grass|aerophone-blow hole-side-blown flute (transverse)'), + SearchData(1850, 502182, 'Caracasha', + 'caracasha|gourd, cane or bamboo, basketry, fibercord, rubber or resin|aerophone-lip vibrated-trumpet / trombone'), + SearchData(1887, 122578, 'Fan', 'fan|feathers, ivory|'), +]; diff --git a/lib/logic/data/wonders_data/search/colosseum_search_data.dart b/lib/logic/data/wonders_data/search/colosseum_search_data.dart index 07c8dd48..87a7b6a6 100644 --- a/lib/logic/data/wonders_data/search/colosseum_search_data.dart +++ b/lib/logic/data/wonders_data/search/colosseum_search_data.dart @@ -1,506 +1,671 @@ part of '../colosseum_data.dart'; -// Search suggestions (70) -List _searchSuggestions = const ['skyphos', 'marble', 'wall', 'mosaic', 'man', 'ornament', 'copper', 'sarcophagus', 'miscellaneous', 'pentelic', 'grotesque', 'handle', 'silver', 'ring', 'terracotta', 'stone', 'sculpture', 'phallic', 'urn', 'panel', 'cinerary', 'vase', 'beaker', 'oil', 'champlev', 'ivory', 'fresco', 'funerary', 'glass', 'cup', 'torso', 'fragment', 'lid', 'decoration', 'statuette', 'amulet', 'bronzes', 'woman', 'drinking', 'relief', 'bronze', 'emperor', 'villa', 'bottle', 'brooch', 'fragmentary', 'shaped', 'ribbed', 'paintings', 'gold', 'jar', 'inscription', 'pendant', 'lamp', 'spoon', 'bone', 'head', 'enamel', 'stucco', 'painting', 'flask', 'bust', 'statue', 'imperial', 'jug', 'terracottas', 'bowl', 'enamels', 'vases', 'portrait', ]; +// Search suggestions (61) +List _searchSuggestions = const [ + 'marble', + 'wall', + 'mosaic', + 'ornament', + 'miscellaneous', + 'pentelic', + 'grotesque', + 'denarius', + 'amphora', + 'handle', + 'silver', + 'terracotta', + 'stone', + 'sculpture', + 'phallic', + 'urn', + 'cinerary', + 'vase', + 'beaker', + 'ivory', + 'fresco', + 'glass', + 'cup', + 'shape', + 'fragment', + 'aureus', + 'decoration', + 'sestertius', + 'coins', + 'perfume', + 'statuette', + 'gems', + 'amulet', + 'bronzes', + 'drinking', + 'relief', + 'barbotine', + 'bronze', + 'emperor', + 'villa', + 'bottle', + 'intaglio', + 'inlay', + 'fragmentary', + 'ribbed', + 'paintings', + 'gold', + 'jar', + 'inscription', + 'lamp', + 'bone', + 'head', + 'painting', + 'flask', + 'statue', + 'imperial', + 'jug', + 'terracottas', + 'bowl', + 'vases', + 'portrait', +]; -// Colosseum (498) +// Colosseum (495) List _searchData = const [ - SearchData(149, 251450, 'Marble left hand holding a small box', 'hand|marble|stone sculpture', 'gr/mobile-large/DP231316.jpg', 1.33), - SearchData(125, 250559, 'Bronze bust of a young satyr', 'bust of a satyr, chariot attachment|bronze, silver, copper|bronzes', 'gr/mobile-large/DP20474.jpg', 1.00), - SearchData(349, 249692, 'Glass pendant in the form of a dolphin', 'pendant in the form of a dolphin|glass|glass', 'gr/mobile-large/DP121034.jpg', 0.75), - SearchData(49, 257866, 'Marble cinerary urn in the form of a tree stump with leaves and grapes', 'urn|marble|stone sculpture', 'gr/mobile-large/DP-24425-001.jpg', 0.75), - SearchData(40, 245846, 'Wall painting fragment', 'wall painting fragment|fresco|miscellaneous-paintings', 'gr/mobile-large/DP112919.jpg', 1.00), - SearchData(34, 245285, 'Glass bowl', 'bowl, patella|glass|glass', 'gr/mobile-large/DP105510.jpg', 1.00), - SearchData(25, 245364, 'Glass beaker', 'beaker|glass|glass', 'gr/mobile-large/DP120991.jpg', 1.00), - SearchData(100, 246907, 'Bronze batillum (incense shovel)', 'shovel|bronze|bronzes', 'gr/mobile-large/DP20384.jpg', 1.09), - SearchData(100, 250790, 'Fragmentary bronze statuette of boy wearing a mantle', 'statuette of a boy, upper part|bronze|bronzes', 'gr/mobile-large/sf1919257.jpg', 0.99), - SearchData(200, 250096, 'Three-handled jug with relief medallions', 'jug|terracotta|vases', 'gr/mobile-large/DP107074.jpg', 1.00), - SearchData(49, 257878, 'A pair of glass drinking cups', 'cups, pair|glass|glass', 'gr/mobile-large/DP275294.jpg', 1.33), - SearchData(199, 250092, 'Terracotta flask', 'vase in the form of a pomegranate|terracotta|vases', 'gr/mobile-large/DP117521.jpg', 1.00), - SearchData(60, 241579, 'Terracotta oil lamp', 'lamp|terracotta|terracottas', 'gr/mobile-large/DP-19673-006.jpg', 0.83), - SearchData(149, 250258, 'Terracotta flask', 'vase|terracotta, glass|vases', 'gr/mobile-large/DP107317.jpg', 1.00), - SearchData(300, 466583, 'Sarcophagus Lid with Last Judgement', 'sarcophagus lid|marble|sculpture-stone', 'md/mobile-large/DT271481.jpg', 5.41), - SearchData(124, 257876, 'Glass serving dish', 'tray, cast|glass, greenish colorless|glass', 'gr/mobile-large/DP286319.jpg', 1.50), - SearchData(25, 245648, 'Glass mosaic bottle', 'perfume bottle, mosaic|glass|glass', 'gr/mobile-large/DP120995.jpg', 1.00), - SearchData(25, 257829, 'Glass gold-band mosaic lid fragment', 'lid fragment, gold-band mosaic|glass|glass', 'gr/mobile-large/DP145727.jpg', 1.33), - SearchData(-5, 250946, 'Wall painting: Polyphemus and Galatea in a landscape, from the imperial villa at Boscotrecase', 'wall painting: polyphemus and galatea in a landscape|fresco|miscellaneous-paintings', 'gr/mobile-large/DP138763.jpg', 0.67), - SearchData(149, 250100, 'Terracotta beaker with barbotine decoration', 'bowl|terracotta|vases', 'gr/mobile-large/DP107680.jpg', 1.00), - SearchData(199, 250245, 'Terracotta barrel-shaped jar', 'jar, barrel-shaped|terracotta|vases', 'gr/mobile-large/DP107354.jpg', 1.00), - SearchData(200, 473287, 'Disk Brooch', 'brooch|copper alloy, millefiori enamel|enamels-champlevé', 'md/mobile-large/TR46922000OBV.jpg', 0.88), - SearchData(12, 257842, 'Glass network mosaic bowl fragment', 'fragment, mosaic network bowl|glass|glass', 'gr/mobile-large/DP145738.jpg', 0.75), - SearchData(25, 249470, 'Glass jug', 'ennion jug|glass|glass', 'gr/mobile-large/DP121998.jpg', 0.75), - SearchData(100, 256657, 'Bronze statuette of a ram', 'statuette of a ram|bronze|bronzes', 'gr/mobile-large/DP2058.jpg', 1.00), - SearchData(39, 248851, 'Marble portrait bust of the emperor Gaius, known as Caligula', 'portrait bust of the emperor caligula|marble|stone sculpture', 'gr/mobile-large/DP337262.jpg', 0.75), - SearchData(-15, 250064, 'Terracotta cup', 'cup|terracotta|vases', 'gr/mobile-large/DP1293.jpg', 1.00), - SearchData(100, 249232, 'Couch and footstool with bone carvings and glass inlays', 'couch and footstool with bone carvings and glass inlay|wood, bone, glass|miscellaneous-bone, ivory', 'gr/mobile-large/DP138722.jpg', 1.63), - SearchData(100, 246914, 'Bronze simpulum (ladle)', 'ladle|bronze|bronzes', 'gr/mobile-large/DP20381.jpg', 0.99), - SearchData(199, 251506, 'Bone hairpin with bust of a woman', 'pin|bone|miscellaneous-bone, ivory', 'gr/mobile-large/DP121062.jpg', 0.75), - SearchData(50, 246732, 'Terracotta jug with barbotine decoration', 'jug|terracotta|vases', 'gr/mobile-large/DP109351.jpg', 1.00), - SearchData(175, 256570, 'Bronze plaque of Mithras slaying the bull', 'plaque of mithras killing the bull|bronze|bronzes', 'gr/mobile-large/DP119236.jpg', 0.84), - SearchData(50, 257884, 'Marble two-sided relief', 'relief with masks|marble|stone sculpture', 'gr/mobile-large/DP285251.jpg', 1.33), - SearchData(-15, 245787, 'Glass garland bowl', 'bowl|glass|glass', 'gr/mobile-large/DP122006.jpg', 0.74), - SearchData(20, 257641, 'Marble statue of a member of the imperial family', 'statue of a young man, half-draped|marble|stone sculpture', 'gr/mobile-large/DP-1353-002.jpg', 0.75), - SearchData(150, 255251, 'Bronze statuette of a mouse', 'statuette of a mouse from a lamp|bronze|bronzes', 'gr/mobile-large/DP20805.jpg', 1.01), - SearchData(50, 250112, 'Terracotta jug', 'vase|terracotta|vases', 'gr/mobile-large/DP107684.jpg', 1.00), - SearchData(149, 250098, 'Terracotta jar with barbotine decoration', 'bowl|terracotta|vases', 'gr/mobile-large/DP1282.jpg', 1.00), - SearchData(137, 245170, 'Glass jug', 'jug|glass|glass', 'gr/mobile-large/DP121441.jpg', 1.00), - SearchData(25, 241632, 'Terracotta oil lamp', 'lamp|terracotta|terracottas', 'gr/mobile-large/DP-19673-001.jpg', 1.21), - SearchData(67, 250497, 'Terracotta mortarium fragment', 'mortarium fragment|terracotta|vases', 'gr/mobile-large/DP231269.jpg', 0.75), - SearchData(199, 466288, 'Brooch in the form of a Stag', 'brooch|copper alloy, champleve enamel|metalwork-copper alloy', 'md/mobile-large/sf1996-212s1.jpg', 1.20), - SearchData(-50, 250915, 'Silver skyphos (drinking cup)', 'skyphos|silver|gold and silver', 'gr/mobile-large/GR874.jpg', 1.08), - SearchData(100, 246906, 'Bronze batillum (incense shovel)', 'shovel|bronze|bronzes', 'gr/mobile-large/DP20376.jpg', 2.03), - SearchData(199, 249033, 'Ivory needle', 'needle|ivory|miscellaneous-bone, ivory', 'gr/mobile-large/DP121009.jpg', 0.75), - SearchData(50, 251447, 'Marble calyx-krater with reliefs of maidens and dancing maenads', 'calyx-krater|marble, pentelic|stone sculpture', 'gr/mobile-large/DT4541.jpg', 0.80), - SearchData(149, 250646, 'Marble column with base and capital', 'column|marble|stone sculpture', 'gr/mobile-large/DP-14287-095.jpg', 0.34), - SearchData(299, 248959, 'Glass strigil (scraper)', 'strigil|glass|glass', 'gr/mobile-large/DP107016.jpg', 1.00), - SearchData(-50, 250919, 'Silver cochlear (spoon)', 'spoon, cochlear|silver|gold and silver', 'gr/mobile-large/DT277656.jpg', 0.80), - SearchData(349, 245716, 'Glass beaker or lamp', 'beaker or lamp|glass|glass', 'gr/mobile-large/DP117585.jpg', 1.00), - SearchData(100, 250563, 'Bronze statuette of an actor', 'statuette of an actor|bronze|bronzes', 'gr/mobile-large/DP20478.jpg', 0.86), - SearchData(-100, 254781, 'Terracotta wine amphora', 'amphora, pointed|terracotta|vases', 'gr/mobile-large/DP121458.jpg', 0.55), - SearchData(100, 254968, 'Gold funerary wreath', 'wreath, funerary|gold|gold and silver', 'gr/mobile-large/SF5759.jpg', 1.33), - SearchData(50, 245667, 'Glass ribbed bowl', 'bowl, rippenschale|glass|glass', 'gr/mobile-large/DP120996.jpg', 1.00), - SearchData(25, 257855, 'Marble funerary altar', 'funerary altar of anthus|marble|stone sculpture', 'gr/mobile-large/DP-16750-002.jpg', 1.33), - SearchData(362, 249674, 'Glass pendant shaped like a jug', 'pendant in the form of a vase|glass|glass', 'gr/mobile-large/DP121030.jpg', 0.75), - SearchData(199, 256774, 'Marble funerary inscription', 'plaque with funerary inscription|marble|stone sculpture', 'gr/mobile-large/DP132690.jpg', 1.28), - SearchData(349, 246976, 'Bronze lampstand', 'lampstand|bronze|bronzes', 'gr/mobile-large/DP20382.jpg', 0.90), - SearchData(149, 259142, 'Terracotta mold fragment', 'vase fragment|terracotta|vases', 'gr/mobile-large/DP121117.jpg', 1.00), - SearchData(25, 249048, 'Terracotta atramentarium (inkwell)', 'inkwell|terracotta|vases', 'gr/mobile-large/DP107085.jpg', 1.00), - SearchData(100, 246704, 'Bronze strigil', 'strigil|bronze|bronzes', 'gr/mobile-large/DP133623.jpg', 0.75), - SearchData(50, 255093, 'Bronze phallic amulet', 'amulet, grotesque ornament|bronze|bronzes', 'gr/mobile-large/DP20798.jpg', 1.00), - SearchData(25, 241979, 'Marble inscribed block fragment', 'inscription, fragment|marble, blue gray|cesnola inscriptions', 'gr/mobile-large/DP132681.jpg', 1.42), - SearchData(10, 245827, 'Glass gold-band mosaic scyphus (drinking cup)', 'skyphos, gold-band mosaic|glass|glass', 'gr/mobile-large/DP118055.jpg', 1.33), - SearchData(115, 250106, 'Terracotta jug', 'jug|terracotta|vases', 'gr/mobile-large/DP107681.jpg', 1.00), - SearchData(-50, 250917, 'Silver simpulum (ladle)', 'kyathos|silver|gold and silver', 'gr/mobile-large/h1_20.49.2-12.jpg', 1.02), - SearchData(87, 245341, 'Glass jug', 'jug|glass|glass', 'gr/mobile-large/DP107095.jpg', 1.00), - SearchData(349, 245682, 'Glass beaker', 'beaker|glass|glass', 'gr/mobile-large/DP117586.jpg', 1.00), - SearchData(55, 250075, 'Terracotta bowl', 'bowl|terracotta|vases', 'gr/mobile-large/DP107068.jpg', 1.00), - SearchData(100, 257867, 'Bronze balsamarium decorated with lion-skins and herms', 'balsamarium with lion-skins and herms|bronze|bronzes', 'gr/mobile-large/DP-24426-003.jpg', 0.72), - SearchData(40, 253337, 'Wall painting fragment', 'wall painting fragment|fresco|miscellaneous-paintings', 'gr/mobile-large/DP114270.jpg', 1.00), - SearchData(-45, 247008, 'Wall painting from the west wall of Room L of the Villa of P. Fannius Synistor at Boscoreale', 'wall painting|fresco|miscellaneous-paintings', 'gr/mobile-large/DP141474.jpg', 1.35), - SearchData(232, 258540, 'Marble portrait bust of Severus Alexander', 'portrait bust of severus alexander|marble|stone sculpture', 'gr/mobile-large/DP345023.jpg', 0.75), - SearchData(47, 634951, 'Porphyry vessel with bearded masks', 'urn, cinerary|porphyry|miscellaneous-stone vases', 'gr/mobile-large/DP329148.jpg', 1.31), - SearchData(199, 250104, 'Terracotta jar with barbotine decoration', 'urn|terracotta|vases', 'gr/mobile-large/DP121126.jpg', 1.00), - SearchData(22, 250120, 'Terracotta modiolus (drinking cup)', 'cup, "modiolus"|terracotta|vases', 'gr/mobile-large/DP107076.jpg', 1.00), - SearchData(140, 257864, 'Marble head of Zeus Ammon', 'head of zeus ammon|marble|stone sculpture', 'gr/mobile-large/DP265183.jpg', 0.87), - SearchData(100, 256652, 'Bronze statuette of a bull', 'statuette of a bull|bronze|bronzes', 'gr/mobile-large/sfx2184.jpg', 1.18), - SearchData(100, 251478, 'Bronze stamp', 'stamp, inscribed|bronze|bronzes', 'gr/mobile-large/DP20597.jpg', 1.15), - SearchData(199, 245369, 'Glass flask decorated with intersecting circles', 'flask|glass|glass', 'gr/mobile-large/DP107637.jpg', 1.00), - SearchData(12, 245719, 'Glass bowl', 'bowl|glass|glass', 'gr/mobile-large/DP121412.jpg', 1.00), - SearchData(100, 256661, 'Bronze statuette of bull', 'statuette of a bull|bronze|bronzes', 'gr/mobile-large/sfx2197.jpg', 1.33), - SearchData(249, 463712, 'Fragment of a Glass Bowl', 'bowl fragment|glass, gold leaf|glass-gold glass', 'md/mobile-large/sf16-174-1s1b.jpg', 1.18), - SearchData(347, 252884, 'Marble portrait head of the Emperor Constantine I', 'portrait head|marble|stone sculpture', 'gr/mobile-large/DP138715.jpg', 0.75), - SearchData(50, 245743, 'Glass amphoriskos (perfume flask)', 'amphoriskos|glass|glass', 'gr/mobile-large/DP146603.jpg', 0.75), - SearchData(74, 250086, 'Terracotta bowl', 'plate|terracotta|vases', 'gr/mobile-large/DP1421.jpg', 1.00), - SearchData(399, 256731, 'Glass bottle', 'amphoriskos|glass|glass', 'gr/mobile-large/DP124913.jpg', 1.00), - SearchData(190, 250462, 'Terracotta mortarium fragment', 'mortarium fragment|terracotta|vases', 'gr/mobile-large/DP107023.jpg', 1.00), - SearchData(100, 257633, 'Marble torso of Eros', 'torso of eros|marble|stone sculpture', 'gr/mobile-large/DP105506.jpg', 1.00), - SearchData(100, 250897, 'Marble statue of a young satyr turning to look at his tail', 'statue of a faun|marble|stone sculpture', 'gr/mobile-large/DP326488.jpg', 0.68), - SearchData(50, 249015, 'Glass pin', 'pin|glass|glass', 'gr/mobile-large/GR726.jpg', 0.58), - SearchData(25, 250783, 'Bronze statuette of a Lar', 'statuette of a lar|bronze|bronzes', 'gr/mobile-large/DP-14287-151.jpg', 0.74), - SearchData(237, 249032, 'Ivory pin', 'pin|ivory|miscellaneous-bone, ivory', 'gr/mobile-large/DP121008.jpg', 0.75), - SearchData(-5, 250945, 'Wall painting: Perseus and Andromeda in landscape, from the imperial villa at Boscotrecase', 'wall painting: perseus and andromeda in landscape|fresco|miscellaneous-paintings', 'gr/mobile-large/DP138761.jpg', 0.65), - SearchData(0, 257836, 'Mosaic glass fragment', 'fragment, mosaic base ring|glass|glass', 'gr/mobile-large/DP145723.jpg', 1.33), - SearchData(50, 255086, 'Bronze phallic ornament', 'amulet, grotesque ornament|bronze|bronzes', 'gr/mobile-large/DP20790.jpg', 1.00), - SearchData(199, 256588, 'Glass ‘Mercury’ bottle fragment', 'bottle, mercury flask|glass|glass', 'gr/mobile-large/DP102367.jpg', 0.94), - SearchData(100, 256771, 'Marble plaque with funerary inscription', 'plaque with funerary inscription|marble|stone sculpture', 'gr/mobile-large/LC-X_248_1-20200226-06.jpg', 1.50), - SearchData(50, 246092, 'Gold, emerald, carnelian, banded onyx, and garnet necklace', 'necklace|gold, emerald, carnelian, banded onyx, with central cabochon garnet|gold and silver', 'gr/mobile-large/SF951613.jpg', 1.13), - SearchData(199, 249031, 'Ivory and gold pin', 'pin|ivory, gold|miscellaneous-bone, ivory', 'gr/mobile-large/DP121007.jpg', 0.75), - SearchData(100, 249157, 'Bronze fitting decorated with a bust of Neptune', 'boat fitting with head of poseidon|bronze|bronzes', 'gr/mobile-large/DP124614.jpg', 1.33), - SearchData(125, 250474, 'Terracotta jug fragment', 'vase fragment|terracotta|vases', 'gr/mobile-large/DP121120.jpg', 1.00), - SearchData(149, 250456, 'Terracotta lamp handle', 'lamp handle|terracotta|vases', 'gr/mobile-large/DP229117.jpg', 0.75), - SearchData(25, 249053, 'Terracotta scyphus (drinking cup)', 'skyphos|terracotta|vases', 'gr/mobile-large/DP1442.jpg', 1.00), - SearchData(100, 251419, 'Marble relief fragment with the head of Medea', 'relief fragment with head of medea|marble|stone sculpture', 'gr/mobile-large/263089.jpg', 0.82), - SearchData(55, 254473, 'Sardonyx cameo portrait of the Emperor Augustus', 'cameo, portrait of augustus|sardonyx|gems', 'gr/mobile-large/DP155547.jpg', 0.75), - SearchData(87, 246911, 'Bronze lamp', 'lamp|bronze|bronzes', 'gr/mobile-large/DP20383.jpg', 0.99), - SearchData(274, 250419, 'Terracotta fragment from the rim of a vase', 'vase fragment|terracotta|vases', 'gr/mobile-large/DP229105.jpg', 1.33), - SearchData(87, 250927, 'Marble portrait of a young girl', 'portrait bust of a woman (domatilla?)|marble|stone sculpture', 'gr/mobile-large/DP331267.jpg', 0.75), - SearchData(150, 250107, 'Terracotta scyphus (drinking cup)', 'skyphos|terracotta|vases', 'gr/mobile-large/DP107682.jpg', 1.00), - SearchData(350, 465922, 'Plate Base with Peregrina between Saints Peter and Paul', 'bowl bottom|glass, gold leaf|glass-gold glass', 'md/mobile-large/DP225574.jpg', 1.07), - SearchData(100, 246902, 'Bronze aryballos', 'bottle|bronze|bronzes', 'gr/mobile-large/DP20369.jpg', 0.99), - SearchData(150, 255880, 'Gilded bronze mirror with the Three Graces', 'mirror with three graces|bronze, silver, gold, speculum|bronzes', 'gr/mobile-large/DT8597.jpg', 1.25), - SearchData(149, 250416, 'Terracotta bowl fragment', 'vase fragment|terracotta|vases', 'gr/mobile-large/DP107022.jpg', 1.00), - SearchData(-50, 250912, 'Four silver spoons', 'spoons, 4|silver|gold and silver', 'gr/mobile-large/h1_20.49.2-12.jpg', 1.02), - SearchData(249, 257881, 'Glass snake-thread dropper flask', 'flask, dropper|glass|glass', 'gr/mobile-large/DP281260.jpg', 0.75), - SearchData(180, 250918, 'Brass spoon', 'spoon|[bronze] brass|bronzes', 'gr/mobile-large/SF204910.jpg', 1.40), - SearchData(74, 245371, 'Glass amphoriskos with horizontal ribs', 'miniature transport amphora|glass|glass', 'gr/mobile-large/DP117534.jpg', 1.00), - SearchData(-45, 247010, 'Wall painting from Room H of the Villa of P. Fannius Synistor at Boscoreale', 'wall painting|fresco|miscellaneous-paintings', 'gr/mobile-large/DP140600.jpg', 1.08), - SearchData(0, 257839, 'Mosaic glass fragment', 'fragment, mosaic|glass|glass', 'gr/mobile-large/DP145722.jpg', 1.33), - SearchData(34, 245478, 'Glass gold-band mosaic bottle', 'bottle, gold-band mosaic|glass|glass', 'gr/mobile-large/DP105511.jpg', 1.00), - SearchData(299, 256744, 'Glass bottle', 'bottle, kuttrolf|glass|glass', 'gr/mobile-large/DP108414.jpg', 1.00), - SearchData(50, 245654, 'Glass jug', 'jug|glass|glass', 'gr/mobile-large/DP117540.jpg', 1.00), - SearchData(50, 249746, 'Glass pendant in the form of a leaf', 'pendant|glass|glass', 'gr/mobile-large/DP121039.jpg', 0.75), - SearchData(200, 250464, 'Terracotta medallion', 'medallion, fragment|terracotta|vases', 'gr/mobile-large/DP105842.jpg', 1.00), - SearchData(100, 245501, 'Bronze mirror handle (?) with Aphrodite', 'mirror support ? with aphrodite|bronze|bronzes', 'gr/mobile-large/DP20162.jpg', 0.99), - SearchData(149, 251492, 'Marble statuette of a woman', 'statuette of a woman|marble, pentelic|stone sculpture', 'gr/mobile-large/DP271490.jpg', 0.75), - SearchData(-50, 250459, 'Terracotta handle', 'patera handle|terracotta|vases', 'gr/mobile-large/DP107059.jpg', 1.00), - SearchData(100, 246915, 'Bronze spout in the form of a Corinthian column', 'spout in the form of a column|bronze|bronzes', 'gr/mobile-large/DP20388.jpg', 0.80), - SearchData(75, 256735, 'Glass cup with splayed foot', 'cup|glass|glass', 'gr/mobile-large/DP107067.jpg', 1.00), - SearchData(100, 253372, 'Marble statue of Aphrodite, the so-called Venus Genetrix', 'statue of aphrodite, the so-called venus genetrix type|marble|stone sculpture', 'gr/mobile-large/DP116947.jpg', 0.71), - SearchData(349, 245626, 'Glass jug', 'jug|glass|glass', 'gr/mobile-large/DP304006.jpg', 0.75), - SearchData(100, 250928, 'Bronze statuette of Mercury', 'statuette of hermes|bronze|bronzes', 'gr/mobile-large/DP20564.jpg', 0.95), - SearchData(215, 259248, 'Marble portrait head of a woman', 'head of a woman|marble|stone sculpture', 'gr/mobile-large/DP322106.jpg', 0.81), - SearchData(25, 249054, 'Terracotta scyphus (drinking cup)', 'skyphos|terracotta|vases', 'gr/mobile-large/DP107316.jpg', 1.00), - SearchData(100, 256650, 'Bronze statuette of Hercules', 'statuette of herakles|bronze|bronzes', 'gr/mobile-large/DP2063.jpg', 1.00), - SearchData(149, 245510, 'Terracotta statuette of Isis or a follower of her cult', 'statuette of isis|terracotta|terracottas', 'gr/mobile-large/DP105512.jpg', 1.00), - SearchData(50, 251403, 'Ivory pyxis (box with lid)', 'pyxis with erotes|ivory|miscellaneous-bone, ivory', 'gr/mobile-large/DP-14287-004.jpg', 0.94), - SearchData(100, 251476, 'Marble head and torso of Athena', 'statue of athena, upper part|marble, pentelic|stone sculpture', 'gr/mobile-large/DP357289.jpg', 0.75), - SearchData(349, 255960, 'Silver mirror', 'mirror|silver|gold and silver', 'gr/mobile-large/DP145605.jpg', 1.00), - SearchData(349, 249685, 'Glass pendant in the form of a lamp', 'pendant in the form of a lamp|glass|glass', 'gr/mobile-large/DP121032.jpg', 0.75), - SearchData(149, 250256, 'Terracotta flask', 'vase|terracotta|vases', 'gr/mobile-large/DP107688.jpg', 1.00), - SearchData(312, 241770, 'Terracotta oil lamp', 'lamp|terracotta|terracottas', 'gr/mobile-large/DP-22527-291.jpg', 1.05), - SearchData(325, 465921, 'Bowl Fragments with Menorah, Shofar, and Torah Ark', 'bowl fragments|glass, gold leaf|glass-gold glass', 'md/mobile-large/h1_18.145.1ab.jpg', 1.28), - SearchData(50, 253327, 'Fresco fragment with siren', 'wall painting fragment|fresco|miscellaneous-paintings', 'gr/mobile-large/DP229128.jpg', 0.75), - SearchData(100, 251493, 'Marble head of a Greek general', 'head of a general (strategos)|marble, pentelic ?|stone sculpture', 'gr/mobile-large/DP345013.jpg', 0.75), - SearchData(150, 250095, 'Terracotta pyxis (box) with lid', 'pyxis with lid|terracotta|vases', 'gr/mobile-large/DP1412.jpg', 1.00), - SearchData(325, 466220, 'Sarcophagus with Scenes from the Lives of Saint Peter and Christ', 'sarcophagus|marble|sculpture-stone', 'md/mobile-large/DT6738.jpg', 2.71), - SearchData(100, 251415, 'Marble statuette of a slave boy with a lantern', 'statuette of a slave with lamp|marble|stone sculpture', 'gr/mobile-large/DP292010.jpg', 0.75), - SearchData(100, 250562, 'Bronze statuette of a comic actor', 'statuette of an actor, comic|bronze|bronzes', 'gr/mobile-large/DP20985.jpg', 0.99), - SearchData(150, 257620, 'Terracotta mold fragment', 'mold fragment|terracotta|vases', 'gr/mobile-large/DP121119.jpg', 1.00), - SearchData(150, 249020, 'Gilt bronze strigil', 'strigil|bronze, gold|bronzes', 'gr/mobile-large/DP124613.jpg', 0.75), - SearchData(0, 257834, 'Glass striped mosaic fragment', 'fragment, striped mosaic|glass|glass', 'gr/mobile-large/DP145732.jpg', 1.33), - SearchData(220, 249061, 'Right corner of a marble sarcophagus with the myth of Apollo and the satyr Marsyas', 'sarcophagus fragment, apollo and marsyas|marble|stone sculpture', 'gr/mobile-large/DP-14287-039.jpg', 0.85), - SearchData(82, 251838, 'Fragments of a marble statue of the Diadoumenos (youth tying a fillet around his head)', 'statue of the diadoumenos, fragmentary|marble|stone sculpture', 'gr/mobile-large/DT11982.jpg', 0.73), - SearchData(30, 257612, 'Terracotta bowl', 'bowl|terracotta|vases', 'gr/mobile-large/DP107027.jpg', 1.00), - SearchData(149, 253386, 'Marble portrait of the emperor Antoninus Pius', 'portrait head of the emperor antoninus pius|marble|stone sculpture', 'gr/mobile-large/DP333076.jpg', 0.75), - SearchData(0, 257831, 'Glass mosaic ribbed bowl fragment', 'fragment, mosaic ribbed bowl rim|glass|glass', 'gr/mobile-large/DP145729.jpg', 1.33), - SearchData(100, 650960, 'Greywacke plate', 'plate|greywacke|miscellaneous-stone vases', 'gr/mobile-large/DP700676.jpg', 1.26), - SearchData(312, 468759, 'Table Base with Jonah Swallowed and Cast Up by the Big Fish', 'sculpture|marble, white|sculpture-stone', 'md/mobile-large/DT234784.jpg', 1.25), - SearchData(-5, 250931, 'Wall painting on black ground: Egyptianizing scene and pair of swans, from the imperial villa at Boscotrecase', 'wall painting on black ground: egyptianizing scene and pair of swans|fresco|miscellaneous-paintings', 'gr/mobile-large/DP144211.jpg', 1.00), - SearchData(349, 245717, 'Glass flask', 'bottle with engraved lines|glass|glass', 'gr/mobile-large/DP304007.jpg', 0.75), - SearchData(50, 251412, 'Bronze furniture attachment', 'furniture attachment, head of a mule|bronze|bronzes', 'gr/mobile-large/DP20617.jpg', 0.98), - SearchData(50, 250954, 'Statue of a boy', 'statuette of a youth|bekhen stone|stone sculpture', 'gr/mobile-large/DP-23278-001.jpg', 0.75), - SearchData(150, 250089, 'Terracotta bowl', 'bowl|terracotta|vases', 'gr/mobile-large/DP1400.jpg', 1.00), - SearchData(325, 258076, 'Glass bowl in the form of a shell', 'bowl|glass|glass', 'gr/mobile-large/DP153111.jpg', 1.00), - SearchData(149, 248175, 'Stucco relief fragment', 'relief of emperor antoninus pius and a barbarian suppliant|stucco|miscellaneous-stucco', 'gr/mobile-large/DP105599.jpg', 1.00), - SearchData(265, 254819, 'Marble sarcophagus with the Triumph of Dionysos and the Seasons', 'sarcophagus, triumph of dionysos and the seasons|marble|stone sculpture', 'gr/mobile-large/DP-14287-144.jpg', 0.87), - SearchData(40, 253326, 'Wall painting fragment', 'wall painting fragment|fresco|miscellaneous-paintings', 'gr/mobile-large/DP112915.jpg', 1.00), - SearchData(50, 246917, 'Bronze handle of a patera (shallow saucepan)', 'handle of a patera with wolf|bronze|bronzes', 'gr/mobile-large/DP133619.jpg', 1.33), - SearchData(10, 248973, 'Glass ribbed bowl', 'bowl, ribbed|glass|glass', 'gr/mobile-large/DP120951.jpg', 1.00), - SearchData(185, 250099, 'Terracotta indented beaker', 'beaker|terracotta indented beaker, probably made at trier|vases', 'gr/mobile-large/DP1288.jpg', 1.00), - SearchData(449, 241592, 'Terracotta oil lamp', 'lamp|terracotta|terracottas', 'gr/mobile-large/DP-22527-244.jpg', 1.05), - SearchData(-13, 248466, 'Bronze statuette of a philosopher on a lamp stand', 'statuette of philosopher on lamp stand, hermarchos ?|bronze|bronzes', 'gr/mobile-large/DP337221.jpg', 0.75), - SearchData(25, 241722, 'Terracotta oil lamp', 'lamp|terracotta|terracottas', 'gr/mobile-large/DP-22527-186.jpg', 0.91), - SearchData(100, 250955, 'Bronze statuette of Hermes seated on a rock', 'statuette of hermes holding a purse|bronze|bronzes', 'gr/mobile-large/DP20561.jpg', 0.95), - SearchData(95, 250105, 'Terracotta oil lamp', 'lamp, glazed|terracotta|terracottas', 'gr/mobile-large/DP229109.jpg', 1.33), - SearchData(100, 250142, 'Glass head of Zeus Sarapis', 'head of zeus sarapis|glass|glass', 'gr/mobile-large/DP121791.jpg', 1.00), - SearchData(199, 256823, 'Bronze steelyard weight', 'weight, bust of isis|bronze|bronzes', 'gr/mobile-large/DP2088.jpg', 1.00), - SearchData(325, 250141, 'Glass portrait head', 'head of a man|glass|glass', 'gr/mobile-large/DP141538.jpg', 1.00), - SearchData(449, 246909, 'Bronze steelyard and weight', 'steelyard|bronze|bronzes', 'gr/mobile-large/DP20386.jpg', 1.26), - SearchData(349, 258494, 'Glass dish', 'dish|glass|glass', 'gr/mobile-large/DP228638.jpg', 1.58), - SearchData(220, 257781, 'Marble strigilated sarcophagus', 'sarcophagus, strigilated|marble|stone sculpture', 'gr/mobile-large/DP130701.jpg', 1.38), - SearchData(149, 251414, 'Marble relief of a chisel and mallet', 'relief of a mallet and chisel|marble-italian ?|stone sculpture', 'gr/mobile-large/LC-23_160_81.jpg', 0.85), - SearchData(50, 250983, 'Gold and pearl earring', 'earring with pearl pendants|gold, pearl|gold and silver', 'gr/mobile-large/SF20234235.jpg', 1.31), - SearchData(87, 245683, 'Glass bottle shaped like a date', 'flask in the form of a date|glass|glass', 'gr/mobile-large/DP121411.jpg', 1.00), - SearchData(25, 249176, 'Terracotta bowl', 'bowl, footed|terracotta|vases', 'gr/mobile-large/DP105600.jpg', 1.00), - SearchData(249, 245390, 'Glass plate with head of Medusa', 'plate with head of medusa|glass|glass', 'gr/mobile-large/GR762.jpg', 1.65), - SearchData(0, 257835, 'Network mosaic glass fragment', 'mosaic glass fragment|glass|glass', 'gr/mobile-large/DP145733.jpg', 0.75), - SearchData(22, 250118, 'Terracotta scyphus (drinking cup)', 'skyphos|terracotta|vases', 'gr/mobile-large/DP107075.jpg', 1.00), - SearchData(199, 468362, 'Brooch in the Form of a Peacock', 'brooch|champlevé enamel, bronze, garnet cabochon|enamels-champlevé', 'md/mobile-large/sf51-125-1s1.jpg', 0.75), - SearchData(25, 245495, 'Glass cameo cup fragment', 'cameo cup fragment, symplegma|glass|glass', 'gr/mobile-large/DT12101.jpg', 0.79), - SearchData(249, 245815, 'Glass finger ring', 'ring|glass|glass', 'gr/mobile-large/DP121097.jpg', 0.75), - SearchData(75, 250248, 'Terracotta bowl', 'dish|terracotta|vases', 'gr/mobile-large/DP1418.jpg', 1.00), - SearchData(0, 257639, 'Bronze torso from an equestrian statue wearing a cuirass', 'torso from an equestrian statue wearing a cuirass|bronze|bronzes', 'gr/mobile-large/DP108187.jpg', 1.00), - SearchData(100, 250566, 'Bronze statuette of Jupiter Capitolinus', 'statuette of jupiter capitolinus|bronze|bronzes', 'gr/mobile-large/DP161809.jpg', 1.00), - SearchData(13, 245631, 'Glass beaker', 'beaker|glass, cast|glass', 'gr/mobile-large/SF9111238color.jpg', 0.88), - SearchData(249, 245744, 'Glass double head-shaped flask', 'flask, double head-shaped|glass|glass', 'gr/mobile-large/DP107639.jpg', 1.00), - SearchData(100, 256772, 'Marble plaque with funerary inscription', 'plaque with funerary inscription|marble|stone sculpture', 'gr/mobile-large/LC-X_248_2-20200226-06.jpg', 1.50), - SearchData(149, 250556, 'Marble torso of a youth', 'statue of a youth, torso|marble|stone sculpture', 'gr/mobile-large/DP-14287-141.jpg', 0.75), - SearchData(195, 250351, 'Fragment of terra sigillata', 'vase fragment|terracotta|vases', 'gr/mobile-large/DP107020.jpg', 1.00), - SearchData(215, 245931, 'Gold and beryl ring', 'ring|gold, beryl|gold and silver', 'gr/mobile-large/sf9515131edited.jpg', 1.33), - SearchData(149, 257626, 'Marble cornice fragment', 'architectural fragment|marble|stone sculpture', 'gr/mobile-large/sf2002603.jpg', 1.83), - SearchData(99, 251475, 'Marble torso of Eros', 'statue of eros, fragmentary|marble|stone sculpture', 'gr/mobile-large/59444.jpg', 0.78), - SearchData(50, 255869, 'Bronze lamp', 'lamp|bronze|bronzes', 'gr/mobile-large/DP20848.jpg', 1.00), - SearchData(25, 257725, 'Bone pyxis (box with lid)', 'pyxis with lid|bone|miscellaneous-bone, ivory', 'gr/mobile-large/SF2004507abedited.jpg', 1.17), - SearchData(25, 247993, 'Marble portrait of the emperor Augustus', 'portrait head of the emperor augustus|marble|stone sculpture', 'gr/mobile-large/DP337220.jpg', 0.75), - SearchData(562, 245304, 'Glass weight', 'weight|glass|glass', 'gr/mobile-large/DP121465.jpg', 1.00), - SearchData(25, 245493, 'Glass cameo fragment of a large platter or tabletop', 'cameo, platter fragment|glass|glass', 'gr/mobile-large/DP118115.jpg', 1.68), - SearchData(150, 253037, 'Terracotta fragment of a bowl', 'vase fragment|terracotta|vases', 'gr/mobile-large/DP105846.jpg', 1.00), - SearchData(50, 241623, 'Terracotta oil lamp', 'lamp|terracotta|terracottas', 'gr/mobile-large/DP-22527-252.jpg', 1.05), - SearchData(50, 250504, 'Fragmentary terracotta bowl', 'cup, fragment|terracotta|vases', 'gr/mobile-large/DP121123.jpg', 1.00), - SearchData(15, 250776, 'Terracotta cup', 'cup, fragment|terracotta|vases', 'gr/mobile-large/DP1415.jpg', 1.00), - SearchData(149, 250257, 'Terracotta rattle in the form of a pig', 'rattle in the form of a pig|terracotta, glass|terracottas', 'gr/mobile-large/DP2031.jpg', 1.00), - SearchData(12, 257827, 'Mosaic glass fragment', 'mosaic glass fragment|glass|glass', 'gr/mobile-large/DP145725.jpg', 1.33), - SearchData(41, 245849, 'Wall painting fragment with a swan', 'wall painting fragment|fresco|miscellaneous-paintings', 'gr/mobile-large/DP112922.jpg', 1.00), - SearchData(212, 256758, 'Marble portrait head of a woman', 'portrait bust of a woman|marble|stone sculpture', 'gr/mobile-large/DP333686.jpg', 0.75), - SearchData(499, 245521, 'Terracotta statuette of a bear holding an oil lamp', 'statuette of a bear holding lamp|terracotta|terracottas', 'gr/mobile-large/DP145569.jpg', 0.74), - SearchData(100, 251460, 'Marble statuette of a seated philosopher', 'statuette of a philosopher|marble|stone sculpture', 'gr/mobile-large/DP338143.jpg', 0.75), - SearchData(-5, 250939, 'Wall painting on black ground: landscape, from the imperial villa at Boscotrecase', 'wall painting on black ground: landscape|fresco|miscellaneous-paintings', 'gr/mobile-large/DP146610.jpg', 1.00), - SearchData(100, 250787, 'Bronze statuette of Cupid', 'statuette of cupid|bronze|bronzes', 'gr/mobile-large/DP20573.jpg', 0.93), - SearchData(25, 245363, 'Glass beaker with inscription', 'beaker, inscribed|glass|glass', 'gr/mobile-large/DP120990.jpg', 1.00), - SearchData(249, 256732, 'Glass bottle shaped like a bunch of grapes', 'bottle with stylized grape cluster|glass|glass', 'gr/mobile-large/DP108406.jpg', 1.00), - SearchData(149, 250242, 'Fragmentary terracotta cup', 'cup, fragmentary|terracotta|vases', 'gr/mobile-large/DP121114.jpg', 1.00), - SearchData(195, 250350, 'Fragment of terra sigillata', 'vase fragment|terracotta|vases', 'gr/mobile-large/DP107019.jpg', 1.00), - SearchData(74, 245836, 'Stucco relief panel', 'stucco relief of maenad|stucco|miscellaneous-stucco', 'gr/mobile-large/DP-14287-077.jpg', 1.13), - SearchData(50, 245734, 'Glass ribbed bowl', 'bowl, rippenschale|glass|glass', 'gr/mobile-large/DP107100.jpg', 1.00), - SearchData(0, 257833, 'Glass mosaic base ring fragment', 'fragment, mosaic|glass|glass', 'gr/mobile-large/DP145731.jpg', 1.33), - SearchData(100, 246992, 'Marble head of a Hellenistic ruler', 'head of a youth|marble|stone sculpture', 'gr/mobile-large/DP119205.jpg', 0.71), - SearchData(37, 250540, 'Bronze bust of Jupiter', 'bust of zeus|bronze, copper|bronzes', 'gr/mobile-large/DP-12522-001.jpg', 1.00), - SearchData(249, 257875, 'Glass snake-thread flask shaped like a mouse', 'flask, snake-thread mouse-shaped|glass, blue|glass', 'gr/mobile-large/DP286317.jpg', 1.33), - SearchData(25, 246266, 'Marble cinerary chest with lid', 'cippus of lucius gavius (funerary chest)|marble|stone sculpture', 'gr/mobile-large/47477.jpg', 0.94), - SearchData(74, 245834, 'Stucco relief panel', 'stucco relief|stucco|miscellaneous-stucco', 'gr/mobile-large/DP-14287-073.jpg', 0.83), - SearchData(50, 250586, 'Miniature amber amphora (jar)', 'amphora, miniature|amber|miscellaneous-amber', 'gr/mobile-large/SF1723053edited.jpg', 1.08), - SearchData(-45, 247017, 'Cubiculum (bedroom) from the Villa of P. Fannius Synistor at Boscoreale', 'cubiculum (bedroom) from the villa of p. fannius synistor|fresco|miscellaneous-paintings', 'gr/mobile-large/DP143704.jpg', 1.04), - SearchData(212, 239584, 'Marble sarcophagus with garlands', 'sarcophagus, garland|marble, proconnesian|stone sculpture', 'gr/mobile-large/DP140135.jpg', 1.45), - SearchData(449, 245695, 'Glass bottle', 'bottle|glass|glass', 'gr/mobile-large/DP121451.jpg', 1.00), - SearchData(214, 253592, 'Marble portrait of the emperor Caracalla', 'portrait head of the emperor marcus aurelius antoninus (called caracalla)|marble|stone sculpture', 'gr/mobile-large/DP333080.jpg', 0.75), - SearchData(149, 249051, 'Marble portrait of a man', 'portrait bust of a man|marble|stone sculpture', 'gr/mobile-large/DP344994.jpg', 0.75), - SearchData(-5, 250933, 'Wall painting on black ground: supports with entrablature, from the imperial villa at Boscotrecase', 'wall painting on black ground: supports with entablature|fresco|miscellaneous-paintings', 'gr/mobile-large/DP146615.jpg', 1.00), - SearchData(50, 255089, 'Bronze phallic amulet', 'amulet, grotesque ornament|bronze|bronzes', 'gr/mobile-large/DP20802.jpg', 1.01), - SearchData(180, 250519, 'Terracotta relief from a lamp with Leda and the swan', 'lamp relief fragment|terracotta|terracottas', 'gr/mobile-large/DP229108.jpg', 0.75), - SearchData(105, 250094, 'Terracotta plate', 'plate|terracotta|vases', 'gr/mobile-large/DP107081.jpg', 1.00), - SearchData(12, 257830, 'Glass striped mosaic fragment', 'fragment, striped mosaic, quadripartite|glass|glass', 'gr/mobile-large/DP145728.jpg', 0.75), - SearchData(399, 256712, 'Glass jug with trefoil rim', 'jug with trefoil rim|glass|glass', 'gr/mobile-large/DP117557.jpg', 1.00), - SearchData(149, 468473, 'Bow Brooch', 'brooch|champlevé enamel, bronze|enamels-champlevé', 'md/mobile-large/sf55-140s4.jpg', 0.60), - SearchData(199, 245344, 'Glass spouted jug', 'jug|glass|glass', 'gr/mobile-large/DP107636.jpg', 1.00), - SearchData(87, 251452, 'Glass cinerary urn with lid', 'urn with two handles and lid|glass|glass', 'gr/mobile-large/DP107323.jpg', 1.00), - SearchData(84, 250234, 'Terracotta strainer jug', 'vase|terracotta|vases', 'gr/mobile-large/DP107686.jpg', 1.00), - SearchData(145, 241809, 'Terracotta oil lamp', 'lamp|terracotta|terracottas', 'gr/mobile-large/DP-22527-183.jpg', 0.88), - SearchData(249, 246849, 'Silver bracelet in the form of a snake', 'bracelet with snakes\' heads|silver|gold and silver', 'gr/mobile-large/DP136030.jpg', 1.33), - SearchData(350, 473395, 'Lute', 'lute|wood with traces of paint|woodwork-miscellany', 'md/mobile-large/DP302641.jpg', 1.33), - SearchData(150, 246760, 'Pair of gold earrings', 'earring|gold|gold and silver', 'gr/mobile-large/DP136021.jpg', 1.33), - SearchData(150, 250241, 'Terracotta jar with barbotine decoration', 'vase|terracotta|vases', 'gr/mobile-large/DP107687.jpg', 1.00), - SearchData(537, 241597, 'Terracotta oil lamp', 'lamp|terracotta|terracottas', 'gr/mobile-large/DP105613.jpg', 1.00), - SearchData(100, 250623, 'Bronze specillum (probe)', 'spatula|bronze|bronzes', 'gr/mobile-large/DP20539.jpg', 1.41), - SearchData(34, 249623, 'Glass and gold inlay', 'mosaic block inlay|glass|glass', 'gr/mobile-large/sf17194387color.jpg', 1.05), - SearchData(50, 255090, 'Bronze phallic amulet', 'amulet, grotesque ornament|bronze|bronzes', 'gr/mobile-large/DP20803.jpg', 1.00), - SearchData(50, 255094, 'Bronze phallic ornament', 'amulet, grotesque ornament|bronze|bronzes', 'gr/mobile-large/DP20797.jpg', 1.00), - SearchData(0, 259216, 'Marble pillar with Neo-Attic reliefs', 'pillar|marble|stone sculpture', 'gr/mobile-large/DP325731.jpg', 0.55), - SearchData(252, 247117, 'Bronze statue of the emperor Trebonianus Gallus', 'statue of emperor trebonianus gallus|bronze|bronzes', 'gr/mobile-large/DP138716.jpg', 0.75), - SearchData(50, 253355, 'Plaster relief fragment with a male figure on a throne', 'mold of ancient casts for metal reliefs|plaster|miscellaneous-plaster', 'gr/mobile-large/sf311116.jpg', 1.33), - SearchData(50, 253354, 'Plaster relief fragment with a male figure on a throne', 'mold of ancient casts for metal reliefs|plaster|miscellaneous-plaster', 'gr/mobile-large/DP146294.jpg', 0.75), - SearchData(74, 245837, 'Stucco relief panel', 'stucco relief|stucco|miscellaneous-stucco', 'gr/mobile-large/DP-14287-080.jpg', 1.07), - SearchData(349, 249676, 'Glass pendant shaped like a jug', 'pendant in the form of a vase|glass|glass', 'gr/mobile-large/DP124931.jpg', 0.75), - SearchData(20, 255973, 'Statue of Dionysos leaning on a female figure ("Hope Dionysos")', 'statue of dionysos leaning on a female figure ("hope dionysos")|marble|stone sculpture', 'gr/mobile-large/DT6494.jpg', 0.80), - SearchData(115, 250109, 'Terracotta lamp', 'lamp|terracotta|terracottas', 'gr/mobile-large/DP105840.jpg', 1.00), - SearchData(74, 245839, 'Stucco relief panel', 'stucco relief|stucco|miscellaneous-stucco', 'gr/mobile-large/DP-14287-079.jpg', 1.37), - SearchData(399, 256746, 'Glass bottle', 'bottle|glass|glass', 'gr/mobile-large/DP117554.jpg', 1.00), - SearchData(349, 245720, 'Glass beaker', 'beaker|glass|glass', 'gr/mobile-large/DP141536.jpg', 1.00), - SearchData(50, 245381, 'Glass bottle', 'bottle|glass|glass', 'gr/mobile-large/DP107097.jpg', 1.00), - SearchData(75, 245378, 'Glass cup in the form of the head of a Black African', 'cup in the form of a head of a african|glass|glass', 'gr/mobile-large/DP118340.jpg', 1.00), - SearchData(150, 250123, 'Glass bowl fragment with later inscription', 'bowl fragment|glass|glass', 'gr/mobile-large/DP166246.jpg', 1.00), - SearchData(252, 247169, 'Bronze sestertius of Trebonianus Gallus', 'sestertius|bronze|coins', 'gr/mobile-large/DP104783.jpg', 1.00), - SearchData(100, 246708, 'Pair of gold boat-shaped earrings', 'earring, pair|gold|gold and silver', 'gr/mobile-large/DP136022.jpg', 1.33), - SearchData(349, 245689, 'Glass flask', 'flask, globular|glass|glass', 'gr/mobile-large/DP121450.jpg', 1.00), - SearchData(50, 250139, 'Ivory hairpin', 'pin|ivory|miscellaneous-bone, ivory', 'gr/mobile-large/DP121059.jpg', 0.75), - SearchData(149, 465900, 'Brooch in the Form of a Dog', 'brooch|champlevé enamel, bronze|enamels-champlevé', 'md/mobile-large/sf17-194-2390s1.jpg', 1.79), - SearchData(249, 245358, 'Glass indented jar', 'jar, indented|glass|glass', 'gr/mobile-large/DP117533.jpg', 1.00), - SearchData(50, 245370, 'Glass hexagonal jug', 'jug, hexagonal|glass|glass', 'gr/mobile-large/DP120993.jpg', 1.00), - SearchData(74, 245833, 'Stucco relief panel', 'stucco relief|stucco|miscellaneous-stucco', 'gr/mobile-large/DP-14287-074.jpg', 0.89), - SearchData(100, 256660, 'Bronze statuette of a goose', 'statuette of a goose|bronze|bronzes', 'gr/mobile-large/sfx2196.jpg', 1.33), - SearchData(40, 253334, 'Wall painting fragment', 'wall painting fragment|fresco|miscellaneous-paintings', 'gr/mobile-large/DP114268.jpg', 1.00), - SearchData(85, 250909, 'Terracotta one-handled cup', 'cup, one-handled|terracotta|vases', 'gr/mobile-large/DP1463.jpg', 1.00), - SearchData(50, 255010, 'Bronze bust of an Amazon', 'bust of amazon|bronze|bronzes', 'gr/mobile-large/DP20780.jpg', 1.00), - SearchData(50, 245374, 'Glass beaker', 'beaker|glass|glass', 'gr/mobile-large/DP107096.jpg', 1.00), - SearchData(1, 257877, 'Glass ribbed bowl', 'bowl, ribbed|glass|glass', 'gr/mobile-large/DP281252.jpg', 1.44), - SearchData(149, 256126, 'Porphyry support for a water basin', 'stand for a basin|porphyry|stone sculpture', 'gr/mobile-large/DP-14287-132.jpg', 1.71), - SearchData(150, 250093, 'Terracotta plate', 'plate|terracotta|vases', 'gr/mobile-large/DP107080.JPG', 1.00), - SearchData(40, 253335, 'Wall painting fragment', 'wall painting fragment|fresco|miscellaneous-paintings', 'gr/mobile-large/DP114269.jpg', 1.00), - SearchData(25, 245367, 'Glass beaker with inscription', 'beaker, inscribed|glass|glass', 'gr/mobile-large/DP120992.jpg', 1.00), - SearchData(49, 241656, 'Terracotta oil lamp', 'lamp|terracotta|terracottas', 'gr/mobile-large/DP-19673-097.jpg', 1.06), - SearchData(0, 257832, 'Glass striped mosaic fragment', 'fragment, striped mosaic|glass|glass', 'gr/mobile-large/DP145730.jpg', 1.33), - SearchData(-112, 246594, 'Terracotta Megarian bowl', 'bowl|terracotta|vases', 'gr/mobile-large/DP1297.jpg', 1.00), - SearchData(100, 246676, 'Bronze ladle', 'ladle|bronze|bronzes', 'gr/mobile-large/DP20324.jpg', 0.95), - SearchData(100, 245503, 'Bronze ring with bust of Serapis', 'ring with bust of serapis|bronze|bronzes', 'gr/mobile-large/sf892558.jpg', 0.93), - SearchData(50, 255088, 'Bronze phallic amulet', 'amulet, grotesque ornament|bronze|bronzes', 'gr/mobile-large/DP20801.jpg', 1.01), - SearchData(149, 256778, 'Marble head of a woman', 'portrait head of a woman|marble|stone sculpture', 'gr/mobile-large/DP333689.jpg', 0.75), - SearchData(50, 250188, 'Terracotta vase fragment with relief of Minerva', 'vase fragment|terracotta|vases', 'gr/mobile-large/DP105601.jpg', 1.00), - SearchData(1, 258555, 'Marble statuette of young Dionysos', 'torso of dionysos|marble|stone sculpture', 'gr/mobile-large/DP265186.jpg', 0.79), - SearchData(50, 254841, 'Bronze fulcrum attachment with a bust of Eros', 'furniture attachment from a couch, eros|bronze|bronzes', 'gr/mobile-large/DP20784.jpg', 1.00), - SearchData(212, 256773, 'Marble funerary inscription', 'plaque with funerary inscription|marble|stone sculpture', 'gr/mobile-large/DP132689.jpg', 1.26), - SearchData(200, 250326, 'Terracotta medallion fragment', 'medallion, fragment|terracotta|vases', 'gr/mobile-large/DP107078.jpg', 1.00), - SearchData(199, 245840, 'Wall painting fragment', 'wall painting fragment|fresco|miscellaneous-paintings', 'gr/mobile-large/DP145600.jpg', 1.00), - SearchData(34, 249624, 'Glass mosaic inlay fragments', 'mosaic block inlay|glass|glass', 'gr/mobile-large/sf17194388a-c_edited.jpg', 1.60), - SearchData(100, 250492, 'Terracotta vase fragment with figure of Hercules', 'vase fragment|terracotta|vases', 'gr/mobile-large/DP105602.jpg', 1.00), - SearchData(162, 247524, 'Silver handle of a large dish', 'handle of a large dish|silver, gold|gold and silver', 'gr/mobile-large/DP107034.jpg', 1.00), - SearchData(200, 466382, 'Disk Brooch', 'brooch|champlevé enamel, bronze|enamels-champlevé', 'md/mobile-large/sf22-50-11s1.jpg', 1.09), - SearchData(199, 466218, 'S-Shaped Brooch', 'brooch|bronze|metalwork-bronze', 'md/mobile-large/MED150.jpg', 0.72), - SearchData(299, 249669, 'Glass pendant shaped like a jar', 'pendant|glass|glass', 'gr/mobile-large/DP121028.jpg', 0.75), - SearchData(75, 245685, 'Glass cinerary urn with lid', 'urn with two handles and lid|glass|glass', 'gr/mobile-large/DP109362.jpg', 1.00), - SearchData(99, 250929, 'Limestone torso of a hunter', 'torso of a hunter, fragmentary|black limestone|stone sculpture', 'gr/mobile-large/DP279059.jpg', 0.75), - SearchData(100, 251431, 'Amber disk with a nereid riding a triton', 'disk|amber|miscellaneous-amber', 'gr/mobile-large/SF2316098color.jpg', 1.08), - SearchData(50, 255087, 'Bronze phallic amulet', 'amulet, grotesque ornament|bronze|bronzes', 'gr/mobile-large/DP20800.jpg', 1.01), - SearchData(55, 245636, 'Glass ribbed bowl', 'bowl, rippenschale|glass|glass', 'gr/mobile-large/DP107098.jpg', 1.00), - SearchData(99, 250899, 'Marble torso of a seated man', 'torso of a youth, fragmentary|marble|stone sculpture', 'gr/mobile-large/120133.jpg', 0.67), - SearchData(149, 250784, 'Bronze statuette of Minerva', 'statuette of athena|bronze|bronzes', 'gr/mobile-large/DP-14972-001.jpg', 0.79), - SearchData(199, 250904, 'Fragmentary porphyry head of a bearded man', 'head of a man|porphyry|stone sculpture', 'gr/mobile-large/DP202796.jpg', 1.00), - SearchData(40, 253338, 'Wall painting fragment', 'wall painting fragment|fresco|miscellaneous-paintings', 'gr/mobile-large/DP114271.jpg', 1.00), - SearchData(100, 250564, 'Bronze footed globular vessel with lid', 'pyxis with lid|bronze|bronzes', 'gr/mobile-large/DP21061.jpg', 0.99), - SearchData(299, 250487, 'Glass bowl fragment with gold leaf and painted decoration', 'bowl with gilding-gold leaf; ocean|glass, gold, paint|glass', 'gr/mobile-large/DP107355.jpg', 1.00), - SearchData(199, 250734, 'Glass jug decorated with intersecting circles', 'jug|glass|glass', 'gr/mobile-large/DP107001.jpg', 1.00), - SearchData(100, 246908, 'Bronze batillum (incense shovel)', 'shovel|bronze|bronzes', 'gr/mobile-large/DP20385.jpg', 1.35), - SearchData(275, 466645, 'Medallion with a Portrait of Gennadios', 'medallion|glass, gold leaf, polychromy|glass-gold glass', 'md/mobile-large/DP325825.jpg', 0.99), - SearchData(300, 253369, 'Fragmentary marble votive altar', 'votive relief fragment, inscription|marble|stone sculpture', 'gr/mobile-large/DP145791.jpg', 0.71), - SearchData(150, 469961, 'Wing Brooch', 'brooch|silver, gold, four carnelians|metalwork-silver', 'md/mobile-large/DT108.jpg', 0.80), - SearchData(50, 245709, 'Glass jug', 'jug|glass|glass', 'gr/mobile-large/DP117541.jpg', 1.00), - SearchData(100, 246904, 'Bronze aryballos', 'bottle|bronze|bronzes', 'gr/mobile-large/DP20368.jpg', 0.99), - SearchData(399, 245314, 'Glass pendant in the form of a miniature jug', 'pendant in the form of a miniature jug|glass|glass', 'gr/mobile-large/DP121094.jpg', 0.75), - SearchData(390, 250383, 'Terracotta bowl fragment', 'bowl fragment|terracotta|vases', 'gr/mobile-large/DP121116.jpg', 1.00), - SearchData(61, 250078, 'Terracotta marbled slip ware bowl', 'bowl|terracotta|vases', 'gr/mobile-large/DP107069.jpg', 1.00), - SearchData(40, 245845, 'Wall painting fragment', 'wall painting fragment|fresco|miscellaneous-paintings', 'gr/mobile-large/DP112918.jpg', 1.00), - SearchData(75, 250082, 'Terracotta amphora (jar)', 'amphora|terracotta|vases', 'gr/mobile-large/DP107070.jpg', 1.00), - SearchData(299, 466585, 'Fragment of a Sarcophagus with Putti in a Grapevine', 'relief|marble|sculpture-stone', 'md/mobile-large/sf24-97-12s1.jpg', 1.41), - SearchData(15, 250119, 'Terracotta beaker', 'cup|terracotta|vases', 'gr/mobile-large/SF17194895b.jpg', 0.80), - SearchData(40, 247173, 'Marble statue of Eirene (the personification of peace)', 'statue of eirene|marble, pentelic ?|stone sculpture', 'gr/mobile-large/DT11659.jpg', 0.73), - SearchData(297, 245923, 'Gold crossbow fibula (brooch)', 'fibula, crossbow type|gold|gold and silver', 'gr/mobile-large/DP107033.jpg', 1.00), - SearchData(149, 251474, 'Marble sarcophagus with the myth of Endymion', 'sarcophagus, endymion|marble|stone sculpture', 'gr/mobile-large/DP-14287-043.jpg', 2.00), - SearchData(100, 246910, 'Ring for the attachment of bath implements', 'ring with lions|bronze|bronzes', 'gr/mobile-large/DP20389.jpg', 1.06), - SearchData(-6, 246657, 'Terracotta antefix', 'antefix with venus and mars|terracotta|terracottas', 'gr/mobile-large/DP-14287-052.jpg', 0.83), - SearchData(0, 257837, 'Mosaic glass fragment', 'mosaic glass fragment|glass|glass', 'gr/mobile-large/DP145734.jpg', 0.75), - SearchData(149, 256403, 'Marble Statue Group of the Three Graces', 'statue group of the three graces|marble|stone sculpture', 'gr/mobile-large/DP222664.jpg', 1.21), - SearchData(-5, 250930, 'Wall painting on black ground: Aedicula with small landscape, from the imperial villa at Boscotrecase', 'wall painting on black ground: aedicula with small landscape|fresco|miscellaneous-paintings', 'gr/mobile-large/DP144209.jpg', 1.00), - SearchData(350, 245345, 'Glass beaker', 'beaker|glass|glass', 'gr/mobile-large/DP107004.jpg', 1.00), - SearchData(149, 245730, 'Glass beaker with facet-cut decoration', 'beaker|glass|glass', 'gr/mobile-large/DP117542.jpg', 1.00), - SearchData(0, 256184, 'Pair of silver scyphi (cups) with relief decoration', 'skyphoi with erotes, pair|silver with gilding|gold and silver', 'gr/mobile-large/gr1994.43.1-.2.R.jpg', 1.61), - SearchData(74, 245835, 'Stucco relief panel', 'stucco relief|stucco|miscellaneous-stucco', 'gr/mobile-large/DP-14287-078.jpg', 0.87), - SearchData(199, 468713, 'Disk Brooch', 'brooch|millefiore enamel, bronze|enamels-champlevé', 'md/mobile-large/sf66-16s1.jpg', 1.02), - SearchData(50, 245737, 'Glass ribbed bottle', 'flask|glass|glass', 'gr/mobile-large/DP121000.jpg', 1.00), - SearchData(170, 250352, 'Fragment of terra sigillata', 'vase fragment|terracotta|vases', 'gr/mobile-large/DP107021.jpg', 1.00), - SearchData(-6, 248891, 'Bronze statue of an aristocratic boy', 'statue of a boy, gaius caesar ?|bronze|bronzes', 'gr/mobile-large/DP345062.jpg', 0.75), - SearchData(-50, 250920, 'Silver cochlear (spoon)', 'spoon, cochlear|silver|gold and silver', 'gr/mobile-large/DT277656.jpg', 0.80), - SearchData(50, 253353, 'Circular plaster relief', 'mold of ancient casts for metal reliefs|plaster|miscellaneous-plaster', 'gr/mobile-large/sf311115.jpg', 1.33), - SearchData(41, 248132, 'Marble statue of an old woman', 'statue of an old market woman|marble, pentelic|stone sculpture', 'gr/mobile-large/DP277237.jpg', 0.73), - SearchData(200, 468180, 'Brooch in the Form of a Panther', 'figurine|copper alloy inlaid with silver and niello|metalwork-copper alloy', 'md/mobile-large/DP102245.JPG', 1.06), - SearchData(150, 250145, 'Glass fragments of bowl decorated with mosaic fish', 'dish or plaque fragments|glass|glass', 'gr/mobile-large/DP140700.jpg', 0.75), - SearchData(199, 462907, 'Key Handle in the Form of a Horse’s Head', 'key or knife handle|copper alloy|metalwork-copper alloy', 'md/mobile-large/sf06-176-24s1.jpg', 2.15), - SearchData(100, 250625, 'Bronze specillum (probe)', 'spoon or ligula|bronze|bronzes', 'gr/mobile-large/DP20542.jpg', 1.13), - SearchData(100, 246537, 'Bronze jug', 'jug|bronze|bronzes', 'gr/mobile-large/DP20308.jpg', 0.96), - SearchData(17, 250410, 'Terracotta vase fragment', 'vase fragment|terracotta|vases', 'gr/mobile-large/DP107058.jpg', 1.00), - SearchData(100, 256648, 'Bronze statuette of Mercury', 'statuette of hermes|bronze|bronzes', 'gr/mobile-large/DP133624.jpg', 0.75), - SearchData(-5, 248899, 'Ten marble fragments of the Great Eleusinian Relief', 'relief fragments from the great eleusinian relief|marble|stone sculpture', 'gr/mobile-large/DT203390.jpg', 0.69), - SearchData(150, 248992, 'Glass spoon', 'spoon|glass|glass', 'gr/mobile-large/DP107040.jpg', 1.00), - SearchData(20, 257640, 'Marble statue of a member of the imperial family', 'statue of a young man, half-draped|marble|stone sculpture', 'gr/mobile-large/DP108190.jpg', 1.00), - SearchData(50, 257625, 'Gold pin with obsidian finial', 'pin with obsidian finial|gold and obsidian|gold and silver', 'gr/mobile-large/DP-14287-026.jpg', 2.33), - SearchData(65, 245397, 'Glass gladiator cup', 'gladiator cup|glass|glass', 'gr/mobile-large/DP104755.jpg', 1.00), - SearchData(100, 250470, 'Terracotta bowl fragment', 'vase fragment|terracotta|vases', 'gr/mobile-large/DP229107.jpg', 1.33), - SearchData(100, 256832, 'Bronze jug handle', 'handle|bronze, silver|bronzes', 'gr/mobile-large/DP2075.jpg', 1.00), - SearchData(249, 245333, 'Glass bottle', 'bottle|glass|glass', 'gr/mobile-large/DP107634.jpg', 1.00), - SearchData(50, 242041, 'Limestone funerary monument of a woman', 'statuette of a woman and maid holding casket|limestone|stone sculpture', 'gr/mobile-large/DP274535.jpg', 0.75), - SearchData(217, 249160, 'Marble sarcophagus fragment: female figure, perhaps a nereid', 'sarcophagus fragment, nereid|marble|stone sculpture', 'gr/mobile-large/77985.jpg', 0.64), - SearchData(50, 245672, 'Glass ribbed bowl', 'bowl, rippenschale|glass|glass', 'gr/mobile-large/DP120997.jpg', 1.00), - SearchData(149, 245829, 'Marble bust of Herodotos', 'portrait bust of herodotos|marble, island ?|stone sculpture', 'gr/mobile-large/DP328506.jpg', 0.75), - SearchData(400, 256714, 'Glass bottle with handles', 'bottle, handled|glass|glass', 'gr/mobile-large/DP107029.jpg', 1.00), - SearchData(50, 241674, 'Terracotta oil lamp', 'lamp|terracotta|terracottas', 'gr/mobile-large/DP-22527-265.jpg', 1.05), - SearchData(150, 257882, 'Marble head of Demosthenes', 'head of demosthenes|marble|stone sculpture', 'gr/mobile-large/DP326692.jpg', 0.75), - SearchData(149, 250953, 'Marble portrait of Marciana, sister of the emperor Trajan', 'portrait head of marciana, sister of the emperor trajan|marble|stone sculpture', 'gr/mobile-large/DP328522.jpg', 0.75), - SearchData(349, 256722, 'Glass bottle with three feet', 'bottle with three feet|glass|glass', 'gr/mobile-large/DP108379.jpg', 1.00), - SearchData(350, 245402, 'Glass jug', 'jug|glass|glass', 'gr/mobile-large/DP117589.jpg', 1.00), - SearchData(50, 250493, 'Obsidian revetment slab fragment', 'revetment slab fragment|obsidian|glass', 'gr/mobile-large/DP105520.jpg', 1.00), - SearchData(0, 256777, 'Limestone ossuary with lid', 'ossuary with lid|limestone, paint|stone sculpture', 'gr/mobile-large/DP-15733-005.jpg', 1.38), - SearchData(349, 245392, 'Glass bowl with cut decoration', 'bowl|glass|glass', 'gr/mobile-large/DP107006.jpg', 1.00), - SearchData(50, 246806, 'Gold ear pick', 'ear pick or ligula|gold|gold and silver', 'gr/mobile-large/DP-14287-024.jpg', 2.53), - SearchData(249, 257863, 'Silver spoon and fork', 'spoon and fork|silver|gold and silver', 'gr/mobile-large/DP223161.jpg', 0.47), - SearchData(25, 250901, 'Marble fragment of a pilaster', 'pilaster fragment|marble|stone sculpture', 'gr/mobile-large/DP271386.jpg', 0.82), - SearchData(100, 245305, 'Glass finger ring', 'ring|glass|glass', 'gr/mobile-large/DP121091.jpg', 0.75), - SearchData(199, 468220, 'Funnel-Shaped Mount', 'finial mount|champlevé enamel, bronze|enamels-champlevé', 'md/mobile-large/DP102096.JPG', 1.03), - SearchData(0, 248267, 'Glass cameo plaque fragment', 'cameo plaque fragment, head|glass paste|glass', 'gr/mobile-large/DP140695.jpg', 0.75), - SearchData(-50, 250916, 'Silver spouted pitcher', 'pitcher with spout|silver|gold and silver', 'gr/mobile-large/GR873.jpg', 1.08), - SearchData(174, 253565, 'Mosaic floor panel', 'mosaic floor with the head of spring|stone, tile, and glass|miscellaneous-mosaic', 'gr/mobile-large/DP140137.jpg', 0.91), - SearchData(25, 250088, 'Terracotta bowl', 'cup with base|terracotta|vases', 'gr/mobile-large/DP107071.jpg', 1.00), - SearchData(199, 250097, 'Terracotta jar with barbotine decoration', 'urn|terracotta|vases', 'gr/mobile-large/DP121125.jpg', 1.00), - SearchData(60, 245686, 'Glass cinerary urn with lid', 'urn with two handles and lid|glass|glass', 'gr/mobile-large/DP-15454-005.jpg', 0.75), - SearchData(249, 245322, 'Glass jug with chain handle', 'jug with chain handle|glass|glass', 'gr/mobile-large/DP107032.jpg', 1.00), - SearchData(299, 249633, 'Glass mosaic fragment', 'mosaic glass fragment|glass|glass', 'gr/mobile-large/DP140698.jpg', 0.75), - SearchData(249, 250110, 'Lead-glazed stemmed cup', 'cup|terracotta|vases', 'gr/mobile-large/DP107683.jpg', 1.00), - SearchData(162, 239665, 'Glass pourer flask', 'pourer flask|glass|glass', 'gr/mobile-large/DP233498.jpg', 1.33), - SearchData(149, 248579, 'Marble head of an athlete', 'head of an athlete|marble|stone sculpture', 'gr/mobile-large/DP-14287-137retry.jpg', 0.81), - SearchData(50, 250593, 'Bronze spoon', 'spoon|bronze|bronzes', 'gr/mobile-large/DP20485.jpg', 1.43), - SearchData(-45, 247009, 'Wall painting from Room H of the Villa of P. Fannius Synistor at Boscoreale', 'wall painting|fresco|miscellaneous-stone', 'gr/mobile-large/DP105943.jpg', 0.99), - SearchData(100, 250568, 'Bronze tweezers', 'tweezers|bronze|bronzes', 'gr/mobile-large/DP20480.jpg', 1.20), - SearchData(199, 245394, 'Glass bowl with cut decoration', 'bowl|glass|glass', 'gr/mobile-large/DP117538.jpg', 1.00), - SearchData(13, 241622, 'Terracotta oil lamp', 'lamp|terracotta|terracottas', 'gr/mobile-large/DP-22527-251.jpg', 0.83), - SearchData(325, 245375, 'Glass double head-shaped flask', 'flask, double head-shaped with handle|glass|glass', 'gr/mobile-large/DP107005.jpg', 1.00), - SearchData(-5, 250942, 'Wall painting on red ground: candelabrum with frieze, from the imperial villa at Boscotrecase', 'wall painting on red ground: candelabrum with frieze|fresco|miscellaneous-paintings', 'gr/mobile-large/DP138759.jpg', 0.70), - SearchData(50, 250355, 'Terracotta lamp handle', 'lamp handle|terracotta|terracottas', 'gr/mobile-large/DP229104.jpg', 1.33), - SearchData(249, 245718, 'Glass bowl', 'bowl|glass|glass', 'gr/mobile-large/DP107008.jpg', 1.00), - SearchData(25, 257879, 'Glass two-handled bottle (amphora)', 'amphora, pointed|glass, purple|glass', 'gr/mobile-large/DP281253.jpg', 0.75), - SearchData(50, 255092, 'Bronze phallic amulet', 'amulet, grotesque ornament|bronze|bronzes', 'gr/mobile-large/DP-12765-001.jpg', 1.33), - SearchData(174, 257818, 'Marble strigilated vase with snake handles', 'strigilated vase with snake handles and lid|marble|stone sculpture', 'gr/mobile-large/DP146528.jpg', 1.15), - SearchData(22, 250775, 'Terracotta modiolus (drinking cup)', 'cup, "modiolus"|terracotta|vases', 'gr/mobile-large/DP1411.jpg', 1.00), - SearchData(50, 245382, 'Glass lentoid amphoriskos', 'amphoriskos, lentoid with rosette|glass|glass', 'gr/mobile-large/DP231281.jpg', 0.75), - SearchData(50, 255091, 'Bronze phallic ornament', 'amulet, grotesque ornament|bronze|bronzes', 'gr/mobile-large/DP20804.jpg', 1.00), - SearchData(100, 246903, 'Bronze aryballos', 'bottle|bronze|bronzes', 'gr/mobile-large/DP20370.jpg', 0.99), - SearchData(-1, 250325, 'Terracotta bowl fragment', 'vase fragment|terracotta|vases', 'gr/mobile-large/DP121115.jpg', 1.00), - SearchData(124, 245624, 'Glass cinerary urn', 'urn with two handles|glass|glass', 'gr/mobile-large/DP121449.jpg', 1.00), - SearchData(41, 245848, 'Wall painting fragment with winged figure', 'wall painting fragment|fresco|miscellaneous-paintings', 'gr/mobile-large/DP112921.jpg', 1.00), - SearchData(25, 245376, 'Glass hexagonal amphoriskos', 'amphoriskos, ennion|glass|glass', 'gr/mobile-large/DP124005.jpg', 0.75), - SearchData(199, 245377, 'Glass flask decorated with intersecting circles', 'flask|glass|glass', 'gr/mobile-large/DP107638.jpg', 1.00), - SearchData(25, 245470, 'Glass mosaic perfume bottle', 'perfume bottle, mosaic|glass|glass', 'gr/mobile-large/DP141522.jpg', 1.00), - SearchData(349, 249642, 'Glass bead', 'bead|glass|glass', 'gr/mobile-large/DP121021.jpg', 0.75), - SearchData(200, 475394, 'Zoomorphic Brooch', 'brooch|copper alloy, champlevé enamel|enamels-champlevé', 'md/mobile-large/tr777-2002s1.jpg', 1.33), - SearchData(299, 465324, 'Spoon with a Panther', 'spoon|copper alloy, silvered, niello|metalwork-copper alloy', 'md/mobile-large/sf17-192-254s1.jpg', 1.33), - SearchData(312, 468268, 'Sarcophagus with a Greek Physician', 'sarcophagus|marble|sculpture-stone', 'md/mobile-large/DT11898.jpg', 3.38), - SearchData(40, 253324, 'Wall painting fragment', 'wall painting fragment|fresco|miscellaneous-paintings', 'gr/mobile-large/DP112914.jpg', 1.00), - SearchData(34, 249627, 'Glass and gold inlay', 'mosaic block inlay|glass and gold|glass', 'gr/mobile-large/sf17194391color.jpg', 1.09), - SearchData(50, 245656, 'Glass ribbed bowl', 'bowl, rippenschale|glass|glass', 'gr/mobile-large/DP141524.jpg', 1.00), - SearchData(25, 257610, 'Marble cinerary urn', 'cinerary urn|marble|stone sculpture', 'gr/mobile-large/DT5415.jpg', 1.25), - SearchData(125, 250463, 'Terracotta lead-glazed lamp', 'lamp|terracotta|terracottas', 'gr/mobile-large/DP106598.jpg', 1.00), - SearchData(40, 253333, 'Wall painting fragment', 'wall painting fragment|fresco|miscellaneous-paintings', 'gr/mobile-large/DP114267.jpg', 1.00), - SearchData(0, 251457, 'Terracotta dish', 'plate|terracotta|vases', 'gr/mobile-large/DP107324.jpg', 1.00), - SearchData(40, 253331, 'Wall painting fragment', 'wall painting fragment|fresco|miscellaneous-paintings', 'gr/mobile-large/DP112913.jpg', 1.00), - SearchData(12, 257828, 'Glass mosaic bowl fragment', 'mosaic glass fragment|glass|glass', 'gr/mobile-large/DP145726.jpg', 1.33), - SearchData(134, 257825, 'Marble portrait head of Antinoos', 'portrait head of antinoos|marble|stone sculpture', 'gr/mobile-large/DP333683.jpg', 0.75), - SearchData(12, 257826, 'Mosaic glass bowl fragment', 'mosaic glass fragment|glass|glass', 'gr/mobile-large/DP145724.jpg', 1.33), - SearchData(149, 246912, 'Bronze handle attachment', 'handle attachments for a situla|bronze|bronzes', 'gr/mobile-large/DP20379.jpg', 0.95), - SearchData(25, 251473, 'Marble relief fragment with scenes from the Trojan War', 'relief fragment with scenes from the siege of troy, tabula iliaca|marble, palombino|stone sculpture', 'gr/mobile-large/DP202060.jpg', 1.33), - SearchData(50, 250913, 'Marble statue of Aphrodite loosening her sandal', 'statuette of aphrodite|marble, parian ?|stone sculpture', 'gr/mobile-large/DP271463.jpg', 0.73), - SearchData(41, 245838, 'Wall painting fragment with Gorgon mask', 'wall painting fragment|fresco|miscellaneous-paintings', 'gr/mobile-large/DP112917.jpg', 1.00), - SearchData(100, 253373, 'Marble statue of a wounded Amazon', 'statue of a wounded amazon|marble|stone sculpture', 'gr/mobile-large/DP277772.jpg', 0.65), - SearchData(50, 250591, 'Bronze knife with ram\'s-head handle', 'knife with ram\'s head|bronze|bronzes', 'gr/mobile-large/DP20479.jpg', 0.96), - SearchData(0, 253387, 'Bronze furniture attachment', 'furniture attachment, rinceau of acanthus|bronze|bronzes', 'gr/mobile-large/DP106985.jpg', 1.00), - SearchData(299, 246102, 'Gold ornament with cloisons', 'bead ornament|gold|gold and silver', 'gr/mobile-large/DP136023.jpg', 1.33), - SearchData(159, 251929, 'Marble statue of a wounded warrior', 'statue of a wounded warrior, protesilaos ?|marble|stone sculpture', 'gr/mobile-large/DT278.jpg', 0.65), - SearchData(299, 249668, 'Glass pendant shaped like a jar', 'pendant|glass|glass', 'gr/mobile-large/DP121027.jpg', 0.75), - SearchData(50, 257613, 'Marble mask of Pan', 'mask of pan|marble|stone sculpture', 'gr/mobile-large/GR891.jpg', 0.83), - SearchData(110, 241625, 'Terracotta oil lamp', 'lamp|terracotta|terracottas', 'gr/mobile-large/DP-22527-115.jpg', 0.84), - SearchData(349, 245342, 'Glass jug', 'jug|glass|glass', 'gr/mobile-large/DP107003.jpg', 1.00), - SearchData(299, 245396, 'Glass bowl', 'bowl|glass|glass', 'gr/mobile-large/DP107007.jpg', 1.00), - SearchData(50, 245810, 'Glass mosaic ornament in the form of a shell', 'ornament in the form of a shell|glass|glass', 'gr/mobile-large/DP121095.jpg', 0.75), - SearchData(100, 250645, 'Marble relief fragment', 'relief fragment with feline among acanthus leaves|marble, palombino|stone sculpture', 'gr/mobile-large/SF17230118b.jpg', 1.21), - SearchData(399, 256709, 'Glass jug with indented body', 'jug|glass|glass', 'gr/mobile-large/DP108373.jpg', 1.00), - SearchData(25, 245727, 'Glass mosaic bottle', 'perfume bottle, mosaic|glass|glass', 'gr/mobile-large/DP120999.jpg', 1.00), - SearchData(125, 250477, 'Terracotta jug fragment', 'vase fragment|terracotta|vases', 'gr/mobile-large/DP121122.jpg', 1.00), - SearchData(0, 250153, 'Faience statuette fragment of Venus', 'statuette fragment of venus|faience|miscellaneous-faience', 'gr/mobile-large/DP231268.jpg', 0.75), - SearchData(649, 241680, 'Terracotta oil lamp', 'lamp|terracotta|terracottas', 'gr/mobile-large/DP105624.jpg', 1.00), - SearchData(375, 465927, 'Bowl Base', 'bowl fragment|glass, gold leaf|glass-gold glass', 'md/mobile-large/sf18-145-6s1b.jpg', 1.00), - SearchData(-8, 250252, 'Terracotta cup', 'cup|terracotta|vases', 'gr/mobile-large/DP107077.jpg', 1.00), - SearchData(0, 245596, 'Glass mosaic inlay fragment', 'fragment, mosaic inlay|glass|glass', 'gr/mobile-large/DP21836edited.jpg', 1.00), - SearchData(34, 248892, 'Bronze portrait of a man', 'portrait bust of a man (agrippa / marcus antonius?)|bronze|bronzes', 'gr/mobile-large/DP337268.jpg', 0.75), - SearchData(250, 465919, 'Fragment of a Sarcophagus with a Seated Figure', 'relief fragment|marble|sculpture-stone', 'md/mobile-large/DP-14287-046.jpg', 0.85), - SearchData(50, 241652, 'Terracotta oil lamp', 'lamp|terracotta|terracottas', 'gr/mobile-large/DP-19673-099.jpg', 0.90), - SearchData(349, 246975, 'Bronze lamp', 'lamp|bronze|bronzes', 'gr/mobile-large/DP20380.jpg', 0.96), - SearchData(153, 258543, 'Stone head of a Julio-Claudian youth, possibly of Gaius Caesar', 'head, gaius caesar|gypsum alabaster|stone sculpture', 'gr/mobile-large/DP333705.jpg', 0.75), - SearchData(299, 246764, 'Bronze ring key', 'key|bronze|bronzes', 'gr/mobile-large/DP20344.jpg', 0.93), - SearchData(-6, 257862, 'Bronze ornament in the form of a seated male sphinx', 'ornament in the form of a seated male sphinx|bronze|bronzes', 'gr/mobile-large/DP223155.jpg', 0.75), - SearchData(25, 250176, 'Fragmentary terracotta scyphus (drinking cup)', 'skyphos fragment|terracotta|vases', 'gr/mobile-large/DP107685.jpg', 1.00), - SearchData(187, 250087, 'Terracotta dish with barbotine decoration', 'bowl|terracotta|vases', 'gr/mobile-large/DP231272.jpg', 1.33), - SearchData(61, 245831, 'Stucco relief panel', 'stucco relief|stucco|miscellaneous-stucco', 'gr/mobile-large/DP-14287-076.jpg', 1.00), - SearchData(74, 245384, 'Glass amphoriskos with horizontal ribs', 'miniature transport amphora|glass|glass', 'gr/mobile-large/DP146601.jpg', 0.75), - SearchData(0, 250111, 'Terracotta askos (flask with a spout and handle over the top)', 'askos|terracotta|vases', 'gr/mobile-large/DP1445_17.194.885.jpg', 1.00), - SearchData(17, 249158, 'Glass cameo cup fragment', 'cameo, cup fragment|glass|glass', 'gr/mobile-large/DP155139.jpg', 1.00), - SearchData(162, 250926, 'Marble sarcophagus fragment', 'sarcophagus fragment|marble, luni and pentelic|stone sculpture', 'gr/mobile-large/DP310512.jpg', 1.23), - SearchData(50, 245391, 'Glass ribbed bowl', 'bowl, rippenschale|glass|glass', 'gr/mobile-large/DP141521.jpg', 1.00), - SearchData(150, 251418, 'Fragment from a marble head of a man, preserving the nose and mouth', 'head, fragment, man\'s nose and mouth|marble|stone sculpture', 'gr/mobile-large/DP202799.jpg', 1.00), - SearchData(249, 250085, 'Terracotta jug in the shape of a head of a Black African', 'jug in the shape of a head of an african|terracotta|vases', 'gr/mobile-large/DP121790.jpg', 1.00), - SearchData(75, 245380, 'Glass jug in the form of a pine cone', 'flask in the form of a pine cone|glass|glass', 'gr/mobile-large/DP117536.jpg', 1.00), - SearchData(-50, 250914, 'Silver skyphos (drinking cup)', 'skyphos|silver|gold and silver', 'gr/mobile-large/GR875.jpg', 1.08), - SearchData(74, 245832, 'Stucco relief panel', 'stucco relief of maenad|stucco|miscellaneous-stucco', 'gr/mobile-large/DP-14287-075.jpg', 0.85), - SearchData(249, 246842, 'Bead ornaments, triangular, 8', 'bead ornaments, triangular, 8|gold|gold and silver', 'gr/mobile-large/DP30699.jpg', 0.93), - SearchData(149, 465206, 'Brooch in the Form of a Dog Attacking a Boar', 'brooch|champlevé enamel, bronze, gold|enamels-champlevé', 'md/mobile-large/sf17-192-148s1.jpg', 1.49), - SearchData(149, 245585, 'Marble sarcophagus with garlands and the myth of Theseus and Ariadne', 'sarcophagus, garland|marble, luni and pentelic|stone sculpture', 'gr/mobile-large/DP138720.jpg', 1.95), - SearchData(25, 257619, 'Marble fragment of a cinerary urn', 'cinerary urn, fragment|indurated limestone or fine-grained marble|stone sculpture', 'gr/mobile-large/DT1064.jpg', 1.25), - SearchData(149, 250236, 'Terracotta hanging lamp in the form of a comic actor', 'lamp in the form of an actor|terracotta|terracottas', 'gr/mobile-large/DP105841.jpg', 1.00), - SearchData(249, 250797, 'Silver spoon', 'spoon|silver|gold and silver', 'gr/mobile-large/DP107024.jpg', 1.00), - SearchData(25, 245665, 'Glass mosaic perfume bottle', 'perfume bottle, mosaic|glass|glass', 'gr/mobile-large/DP107099.jpg', 1.00), - SearchData(25, 245475, 'Glass mosaic bottle', 'bottle, mosaic|glass|glass', 'gr/mobile-large/DP120994.jpg', 1.00), - SearchData(25, 245723, 'Glass mosaic pyxis with lid', 'pyxis with lid|glass|glass', 'gr/mobile-large/DP104759-9111335.jpg', 0.87), - SearchData(149, 246913, 'Bronze handle attachment', 'handle attachment for a situla|bronze|bronzes', 'gr/mobile-large/DP20378.jpg', 1.01), - SearchData(40, 253329, 'Wall painting fragment', 'wall painting fragment|fresco|miscellaneous-paintings', 'gr/mobile-large/DP112916.jpg', 1.00), - SearchData(34, 249625, 'Glass mosaic inlay', 'mosaic block inlay|glass|glass', 'gr/mobile-large/sf17194389color_ed.jpg', 1.12), - SearchData(40, 253330, 'Wall painting fragment', 'wall painting fragment|fresco|miscellaneous-paintings', 'gr/mobile-large/DP112912.jpg', 1.00), - SearchData(175, 468226, 'Cup or Bowl', 'cup or bowl|champlevé enamel, bronze, silver liner and bottom|enamels-champlevé', 'md/mobile-large/sf47-100-8s1.jpg', 1.41), - SearchData(50, 250494, 'Obsidian revetment slab fragment', 'revetment slab fragment|obsidian|glass', 'gr/mobile-large/DP105519.jpg', 1.00), - SearchData(100, 251416, 'Marble leg of a table with a tiger\'s head', 'table leg|marble|stone sculpture', 'gr/mobile-large/DP232662.jpg', 0.51), - SearchData(0, 249414, 'Glass oinochoe (jug)', 'oinochoe|glass|glass', 'gr/mobile-large/DT203394.jpg', 0.80), - SearchData(249, 256724, 'Glass bottle in the shape of an animal', 'bottle in the form of an animal|glass|glass', 'gr/mobile-large/DP108401.jpg', 1.00), - SearchData(50, 253379, 'Marble portrait bust of a boy', 'portrait bust of a boy|marble|stone sculpture', 'gr/mobile-large/DP328528.jpg', 0.75), -]; \ No newline at end of file + SearchData(325, 249380, 'Glass ornament in the shape of a fish', 'ornament in the form of a fish|glass|glass'), + SearchData( + -45, + 247008, + 'Wall painting from the west wall of Room L of the Villa of P. Fannius Synistor at Boscoreale', + 'wall painting|fresco|miscellaneous-paintings'), + SearchData(40, 253338, 'Wall painting fragment', 'wall painting fragment|fresco|miscellaneous-paintings'), + SearchData(50, 250355, 'Terracotta lamp handle', 'lamp handle|terracotta|terracottas'), + SearchData(50, 247446, 'Terracotta oinochoe (wine jug)', 'oinochoe|terracotta|vases'), + SearchData(25, 247469, 'Glass hexagonal bottle', 'bottle, hexagonal, with vessels|glass|glass'), + SearchData(199, 254634, 'Terracotta amphora (jug)', 'amphora|terracotta|vases'), + SearchData(50, 246452, 'Bone disk or button', 'disk or button|ivory or bone|miscellaneous-bone, ivory'), + SearchData(-13, 248466, 'Bronze statuette of a philosopher on a lamp stand', + 'statuette of philosopher on lamp stand, hermarchos ?|bronze|bronzes'), + SearchData(100, 246537, 'Bronze jug', 'jug|bronze|bronzes'), + SearchData(212, 239941, 'Terracotta transport amphora', 'amphora, pointed|terracotta|vases'), + SearchData(50, 249429, 'Glass ribbed bowl', 'bowl, ribbed|glass|glass'), + SearchData(349, 245682, 'Glass beaker', 'beaker|glass|glass'), + SearchData(22, 250775, 'Terracotta modiolus (drinking cup)', 'cup, "modiolus"|terracotta|vases'), + SearchData(174, 253565, 'Mosaic floor panel', + 'mosaic floor with the head of spring|stone, tile, and glass|miscellaneous-mosaic'), + SearchData(75, 250082, 'Terracotta amphora (jar)', 'amphora|terracotta|vases'), + SearchData(-5, 250945, 'Wall painting: Perseus and Andromeda in landscape, from the imperial villa at Boscotrecase', + 'wall painting: perseus and andromeda in landscape|fresco|miscellaneous-paintings'), + SearchData(-6, 248891, 'Bronze statue of an aristocratic boy', 'statue of a boy, gaius caesar ?|bronze|bronzes'), + SearchData(299, 249550, 'Glass beaker', 'beaker|glass|glass'), + SearchData(149, 250100, 'Terracotta beaker with barbotine decoration', 'bowl|terracotta|vases'), + SearchData(150, 250107, 'Terracotta scyphus (drinking cup)', 'skyphos|terracotta|vases'), + SearchData(100, 249533, 'Glass aryballos (oil bottle)', 'aryballos|glass|glass'), + SearchData(50, 253613, 'Set of bronze strigils and carrying ring', 'strigils, 4|bronze|bronzes'), + SearchData(25, 256994, 'Glass monochrome inlay fragment', 'fragment, monochrome inlay|glass|glass'), + SearchData(25, 245665, 'Glass mosaic perfume bottle', 'perfume bottle, mosaic|glass|glass'), + SearchData(137, 249462, 'Glass one-handled hexagonal bottle', 'bottle, hexagonal|glass|glass'), + SearchData(150, 250123, 'Glass bowl fragment with later inscription', 'bowl fragment|glass|glass'), + SearchData(25, 253550, 'Glass jug', 'jug|glass|glass'), + SearchData(100, 249364, 'Glass inkwell', 'inkwell|glass|glass'), + SearchData(5, 247445, 'Terracotta bowl', 'bowl|terracotta|vases'), + SearchData(12, 249444, 'Glass ribbed bowl', 'bowl, ribbed|glass|glass'), + SearchData(149, 250256, 'Terracotta flask', 'vase|terracotta|vases'), + SearchData(215, 245931, 'Gold and beryl ring', 'ring|gold, beryl|gold and silver'), + SearchData(-125, 247449, 'Terracotta Megarian bowl', 'bowl|terracotta|vases'), + SearchData(349, 249336, 'Glass jug', 'jug|glass|glass'), + SearchData(50, 248112, 'Marble head of a bearded man', 'head of an old man|marble|stone sculpture'), + SearchData(25, 254500, 'Terracotta jug', 'jug|terracotta|vases'), + SearchData(25, 250694, 'Terracotta cup', 'skyphos|terracotta|vases'), + SearchData(249, 250110, 'Lead-glazed stemmed cup', 'cup|terracotta|vases'), + SearchData(65, 245397, 'Glass gladiator cup', 'gladiator cup|glass|glass'), + SearchData(205, 249416, 'Glass beaker (carchesium)', 'beaker|glass|glass'), + SearchData(100, 256771, 'Marble plaque with funerary inscription', + 'plaque with funerary inscription|marble|stone sculpture'), + SearchData(0, 257143, 'Glass mosaic inlay fragment', 'fragment, mosaic inlay|glass|glass'), + SearchData(149, 256403, 'Marble Statue Group of the Three Graces', + 'statue group of the three graces|marble|stone sculpture'), + SearchData(-8, 250252, 'Terracotta cup', 'cup|terracotta|vases'), + SearchData(349, 245717, 'Glass flask', 'bottle with engraved lines|glass|glass'), + SearchData( + 55, 254473, 'Sardonyx cameo portrait of the Emperor Augustus', 'cameo, portrait of augustus|sardonyx|gems'), + SearchData(252, 247117, 'Bronze statue of the emperor Trebonianus Gallus', + 'statue of emperor trebonianus gallus|bronze|bronzes'), + SearchData( + 41, 248132, 'Marble statue of an old woman', 'statue of an old market woman|marble, pentelic|stone sculpture'), + SearchData(0, 257228, 'Glass mosaic inlay fragment', 'fragment, mosaic inlay|glass|glass'), + SearchData(100, 252959, 'Marble right foot wearing a sandal', 'foot|marble|stone sculpture'), + SearchData(0, 257014, 'Glass mosaic inlay fragment', 'fragment, mosaic inlay|glass|glass'), + SearchData(50, 254544, 'Glass amphoriskos', 'amphoriskos|glass|glass'), + SearchData(100, 251912, 'Bronze instrument', 'object ?|bronze|bronzes'), + SearchData(100, 256832, 'Bronze jug handle', 'handle|bronze, silver|bronzes'), + SearchData(0, 257112, 'Glass mosaic bowl fragment', 'fragment, mosaic bowl|glass|glass'), + SearchData(349, 245716, 'Glass beaker or lamp', 'beaker or lamp|glass|glass'), + SearchData(100, 255881, 'Marble statuette of triple-bodied Hekate and the three Graces', + 'statuette of hekate|marble|stone sculpture'), + SearchData(-25, 248037, 'Silver denarius of Octavian (Augustus)', 'denarius of octavian|silver|coins'), + SearchData( + 300, 253369, 'Fragmentary marble votive altar', 'votive relief fragment, inscription|marble|stone sculpture'), + SearchData( + 50, 252533, 'Marble architrave with inscription', 'architrave with inscription, fragment|marble|stone sculpture'), + SearchData(200, 255075, 'Gold ring with onyx intaglio', 'intaglio in ring|onyx, gold|gems'), + SearchData(0, 257231, 'Glass mosaic bowl fragment', 'fragment, mosaic bowl|glass|glass'), + SearchData(80, 248039, 'Bronze sestertius of Titus', 'sestertius|bronze|coins'), + SearchData(25, 249500, 'Glass mosaic perfume bottle', 'perfume bottle, mosaic|glass|glass'), + SearchData(50, 248703, 'Marble head of a boy', 'head of a youth|marble, island|stone sculpture'), + SearchData(100, 251415, 'Marble statuette of a slave boy with a lantern', + 'statuette of a slave with lamp|marble|stone sculpture'), + SearchData(150, 250093, 'Terracotta plate', 'plate|terracotta|vases'), + SearchData(100, 251038, 'Fragment of a marble relief with dancing maenads', + 'relief fragment with dancing maenads|marble, pentelic|stone sculpture'), + SearchData(299, 256744, 'Glass bottle', 'bottle, kuttrolf|glass|glass'), + SearchData(100, 255799, 'Terracotta beaker', 'beaker|terracotta|vases'), + SearchData(50, 249377, 'Glass bottle in the shape of a bird', 'bottle in the form of a bird|glass|glass'), + SearchData(74, 250086, 'Terracotta bowl', 'plate|terracotta|vases'), + SearchData(349, 249168, 'Glass bowl', 'bowl|glass|glass'), + SearchData(25, 253544, 'Terracotta scyphus (drinking cup)', 'skyphos|terracotta|vases'), + SearchData(12, 257830, 'Glass striped mosaic fragment', 'fragment, striped mosaic, quadripartite|glass|glass'), + SearchData(50, 250586, 'Miniature amber amphora (jar)', 'amphora, miniature|amber|miscellaneous-amber'), + SearchData(74, 249478, 'Glass amphoriskos with horizontal ribs', 'miniature transport amphora|glass|glass'), + SearchData(0, 254483, 'Terracotta scyphus (drinking cup)', 'skyphos|terracotta|vases'), + SearchData(150, 248992, 'Glass spoon', 'spoon|glass|glass'), + SearchData(349, 249379, 'Glass bottle in the shape of a fish', 'bottle in the form of a fish|glass|glass'), + SearchData(162, 247524, 'Silver handle of a large dish', 'handle of a large dish|silver, gold|gold and silver'), + SearchData(299, 251904, 'Bronze ligula (ear pick)', 'spoon, miniature|bronze|bronzes'), + SearchData(299, 249381, 'Glass sprinkler bottle in the shape of a fish', + 'sprinkler bottle in the form of a fish|glass|glass'), + SearchData(134, 248059, 'Bronze sestertius of Hadrian', 'sestertius|bronze|coins'), + SearchData(185, 247417, 'Terracotta jar', 'oinophoros|terracotta|vases'), + SearchData(0, 257226, 'Glass network mosaic bowl fragment', 'fragment, network|glass|glass'), + SearchData( + -5, + 250931, + 'Wall painting on black ground: Egyptianizing scene and pair of swans, from the imperial villa at Boscotrecase', + 'wall painting on black ground: egyptianizing scene and pair of swans|fresco|miscellaneous-paintings'), + SearchData(143, 248044, 'Bronze as of Antoninus Pius', 'dupondius|bronze|coins'), + SearchData(47, 634951, 'Porphyry vessel with bearded masks', 'urn, cinerary|porphyry|miscellaneous-stone vases'), + SearchData( + -5, + 250933, + 'Wall painting on black ground: supports with entrablature, from the imperial villa at Boscotrecase', + 'wall painting on black ground: supports with entablature|fresco|miscellaneous-paintings'), + SearchData(199, 249433, 'Glass aryballos (oil bottle)', 'aryballos|glass|glass'), + SearchData(-100, 251836, 'Marble statuette of Aphrodite Anadyomene (rising)', + 'statuette of aphrodite anadyomene|marble|stone sculpture'), + SearchData(-5, 248899, 'Ten marble fragments of the Great Eleusinian Relief', + 'relief fragments from the great eleusinian relief|marble|stone sculpture'), + SearchData(112, 239940, 'Terracotta transport amphora', 'amphora, pointed|terracotta|vases'), + SearchData(-54, 248034, 'Silver denarius of Brutus', 'denarius|silver|coins'), + SearchData(100, 250470, 'Terracotta bowl fragment', 'vase fragment|terracotta|vases'), + SearchData(40, 245847, 'Wall painting fragment', 'wall painting fragment|fresco|miscellaneous-paintings'), + SearchData( + 100, 251476, 'Marble head and torso of Athena', 'statue of athena, upper part|marble, pentelic|stone sculpture'), + SearchData(166, 246885, 'Gold aureus of Lucius Verus', 'aureus of lucius verus|gold|coins'), + SearchData(-100, 254781, 'Terracotta wine amphora', 'amphora, pointed|terracotta|vases'), + SearchData(125, 250559, 'Bronze bust of a young satyr', + 'bust of a satyr, chariot attachment|bronze, silver, copper|bronzes'), + SearchData(199, 251507, 'Bone implement', 'stylus or rattle ?|bone|miscellaneous-bone, ivory'), + SearchData(50, 252894, 'Terracotta volute lamp with sea monster', 'lamp|terracotta|terracottas'), + SearchData(50, 249542, 'Glass perfume bottle with opaque white trail', 'perfume bottle|glass|glass'), + SearchData(-5, 250773, 'Terracotta bowl', 'bowl|terracotta|vases'), + SearchData(50, 255089, 'Bronze phallic amulet', 'amulet, grotesque ornament|bronze|bronzes'), + SearchData(99, 246996, 'Lower part of a marble seated statue of Hygieia', + 'statue of a woman, lower part|marble|stone sculpture'), + SearchData(25, 245376, 'Glass hexagonal amphoriskos', 'amphoriskos, ennion|glass|glass'), + SearchData(50, 255092, 'Bronze phallic amulet', 'amulet, grotesque ornament|bronze|bronzes'), + SearchData(110, 254485, 'Terracotta lamp', 'lamp|terracotta|vases'), + SearchData(349, 249413, 'Glass bottle', 'bottle|glass|glass'), + SearchData(0, 247416, 'Terracotta cup', 'cup|terracotta|vases'), + SearchData(199, 256588, 'Glass ‘Mercury’ bottle fragment', 'bottle, mercury flask|glass|glass'), + SearchData(0, 257122, 'Glass striped mosaic fragment', 'fragment, striped mosaic|glass|glass'), + SearchData(-45, 247017, 'Cubiculum (bedroom) from the Villa of P. Fannius Synistor at Boscoreale', + 'cubiculum (bedroom) from the villa of p. fannius synistor|fresco|miscellaneous-paintings'), + SearchData(49, 248702, 'Marble statuette of a satyr', 'statuette of a satyr|marble, pentelic ?|stone sculpture'), + SearchData(50, 250139, 'Ivory hairpin', 'pin|ivory|miscellaneous-bone, ivory'), + SearchData(0, 257248, 'Glass mosaic bowl fragment', 'fragment, mosaic base|glass|glass'), + SearchData(50, 249488, 'Glass cup', 'cup|glass|glass'), + SearchData(199, 250092, 'Terracotta flask', 'vase in the form of a pomegranate|terracotta|vases'), + SearchData(38, 249519, 'Glass ribbed bowl', 'bowl, rippenschale|glass|glass'), + SearchData(-15, 245787, 'Glass garland bowl', 'bowl|glass|glass'), + SearchData(0, 257303, 'Glass block with gold leaf', 'block with gold leaf|glass|glass'), + SearchData(34, 249625, 'Glass mosaic inlay', 'mosaic block inlay|glass|glass'), + SearchData(199, 250904, 'Fragmentary porphyry head of a bearded man', 'head of a man|porphyry|stone sculpture'), + SearchData(40, 253326, 'Wall painting fragment', 'wall painting fragment|fresco|miscellaneous-paintings'), + SearchData(40, 253329, 'Wall painting fragment', 'wall painting fragment|fresco|miscellaneous-paintings'), + SearchData(97, 248041, 'Bronze dupondius of Nerva', 'dupondius|bronze|coins'), + SearchData(50, 252535, 'Marble round altar with a frieze of animals and masks', 'altar|marble|stone sculpture'), + SearchData(205, 249410, 'Glass beaker', 'beaker|glass|glass'), + SearchData(-45, 247009, 'Wall painting from Room H of the Villa of P. Fannius Synistor at Boscoreale', + 'wall painting|fresco|miscellaneous-stone'), + SearchData( + -5, + 250946, + 'Wall painting: Polyphemus and Galatea in a landscape, from the imperial villa at Boscotrecase', + 'wall painting: polyphemus and galatea in a landscape|fresco|miscellaneous-paintings'), + SearchData(25, 250176, 'Fragmentary terracotta scyphus (drinking cup)', 'skyphos fragment|terracotta|vases'), + SearchData(0, 257833, 'Glass mosaic base ring fragment', 'fragment, mosaic|glass|glass'), + SearchData(75, 250248, 'Terracotta bowl', 'dish|terracotta|vases'), + SearchData(149, 255892, 'Bronze simpulum (ladle)', 'kyathos|bronze|bronzes'), + SearchData(50, 245722, 'Glass inkwell', 'inkwell|glass|glass'), + SearchData(50, 249408, 'Glass carinated perfume bottle', 'bottle, carinated|glass|glass'), + SearchData(163, 248045, 'Bronze sestertius of Lucius Verus', 'sestertius|bronze|coins'), + SearchData(50, 249401, 'Glass two-handled bottle', 'bottle, two-handled|glass|glass'), + SearchData(127, 252839, 'Marble molding fragment from the Temple of Artemis at Sardis', + 'architectural fragment|marble|stone sculpture'), + SearchData(199, 249463, 'Glass rectangular bottle', 'bottle, rectangular|glass|glass'), + SearchData(50, 248328, 'Silver handle', 'handle of a vase or lamp|silver|gold and silver'), + SearchData(0, 257027, 'Glass network mosaic bowl fragment', 'fragment, network|glass|glass'), + SearchData(150, 253503, 'Bronze statuette of Eros kneeling', 'statuette|bronze|bronzes'), + SearchData(50, 249546, 'Glass perfume bottle with opaque white trail', 'perfume bottle|glass|glass'), + SearchData(38, 249517, 'Glass ribbed bowl', 'bowl, rippenschale|glass|glass'), + SearchData(25, 247603, 'Terracotta bowl fragment depicting a boar hunt', 'bowl fragment|terracotta|vases'), + SearchData(87, 248211, 'Bronze lamp', 'lamp|bronze|bronzes'), + SearchData(100, 247448, 'Terracotta pyxis (box) with lid', 'pyxis with lid|terracotta|vases'), + SearchData(100, 251530, 'Marble fragment of a fountain with lion\'s head', + 'fountain fragment with lion\'s head|marble|stone sculpture'), + SearchData(124, 245624, 'Glass cinerary urn', 'urn with two handles|glass|glass'), + SearchData(66, 246875, 'Gold aureus of Nero', 'aureus of nero|gold|coins'), + SearchData(149, 256126, 'Porphyry support for a water basin', 'stand for a basin|porphyry|stone sculpture'), + SearchData(50, 254440, 'Wall painting fragment', 'wall painting fragment|fresco|miscellaneous-paintings'), + SearchData(110, 251009, 'Terracotta cup', 'cup|terracotta|vases'), + SearchData(325, 250141, 'Glass portrait head', 'head of a man|glass|glass'), + SearchData(50, 249468, 'Glass amphoriskos (flask)', 'amphoriskos, with band of scrolls|glass|glass'), + SearchData(50, 245709, 'Glass jug', 'jug|glass|glass'), + SearchData(149, 250258, 'Terracotta flask', 'vase|terracotta, glass|vases'), + SearchData(399, 248859, 'Glass plate', 'plate|glass|glass'), + SearchData( + -5, + 250942, + 'Wall painting on red ground: candelabrum with frieze, from the imperial villa at Boscotrecase', + 'wall painting on red ground: candelabrum with frieze|fresco|miscellaneous-paintings'), + SearchData(100, 250645, 'Marble relief fragment', + 'relief fragment with feline among acanthus leaves|marble, palombino|stone sculpture'), + SearchData( + 249, 256732, 'Glass bottle shaped like a bunch of grapes', 'bottle with stylized grape cluster|glass|glass'), + SearchData(200, 250326, 'Terracotta medallion fragment', 'medallion, fragment|terracotta|vases'), + SearchData(0, 257170, 'Glass mosaic ribbed bowl fragment', 'mosaic glass fragment|glass|glass'), + SearchData(100, 246733, 'Terracotta bowl with barbotine decoration', 'bowl|terracotta|vases'), + SearchData(249, 256724, 'Glass bottle in the shape of an animal', 'bottle in the form of an animal|glass|glass'), + SearchData(100, 246986, 'Marble head of a herm', 'head of a herm|marble|stone sculpture'), + SearchData(87, 251002, 'Glass cinerary urn with lid', 'urn with lid|glass|glass'), + SearchData(0, 248857, 'Glass hemispherical ribbed bowl', 'ribbed bowl|glass|glass'), + SearchData(100, 251900, 'Bronze specillum (probe)', 'spatula|bronze|bronzes'), + SearchData(390, 250383, 'Terracotta bowl fragment', 'bowl fragment|terracotta|vases'), + SearchData(228, 248064, 'Orichalcum sestertius of Alexander Severus', 'sestertius|bronze|coins'), + SearchData( + 175, 256570, 'Bronze plaque of Mithras slaying the bull', 'plaque of mithras killing the bull|bronze|bronzes'), + SearchData(-31, 248031, 'Silver denarius of Marcus Antonius', 'denarius of mark antony|silver|coins'), + SearchData(149, 250236, 'Terracotta hanging lamp in the form of a comic actor', + 'lamp in the form of an actor|terracotta|terracottas'), + SearchData(199, 250097, 'Terracotta jar with barbotine decoration', 'urn|terracotta|vases'), + SearchData(0, 257832, 'Glass striped mosaic fragment', 'fragment, striped mosaic|glass|glass'), + SearchData(50, 255094, 'Bronze phallic ornament', 'amulet, grotesque ornament|bronze|bronzes'), + SearchData(25, 247993, 'Marble portrait of the emperor Augustus', + 'portrait head of the emperor augustus|marble|stone sculpture'), + SearchData(0, 257030, 'Glass striped mosaic carinated bowl fragment', 'fragment, striped carinated bowl|glass|glass'), + SearchData(50, 255093, 'Bronze phallic amulet', 'amulet, grotesque ornament|bronze|bronzes'), + SearchData(107, 248042, 'Bronze sestertius of Trajan', 'sestertius|bronze|coins'), + SearchData(125, 250463, 'Terracotta lead-glazed lamp', 'lamp|terracotta|terracottas'), + SearchData( + -50, 255964, 'Bronze basket vase with swinging handles', 'basket vase with swinging handles|bronze|bronzes'), + SearchData(399, 253626, 'Glass jug', 'jug|glass|glass'), + SearchData(0, 257831, 'Glass mosaic ribbed bowl fragment', 'fragment, mosaic ribbed bowl rim|glass|glass'), + SearchData(50, 255088, 'Bronze phallic amulet', 'amulet, grotesque ornament|bronze|bronzes'), + SearchData(226, 248063, 'Bronze sestertius of Alexander Severus', 'sestertius|bronze|coins'), + SearchData(50, 249014, 'Glass pin', 'pin|glass|glass'), + SearchData(349, 249316, 'Glass jug', 'jug|glass|glass'), + SearchData(244, 248066, 'Bronze sesterius of Philip I', 'sestertius|bronze|coins'), + SearchData(312, 468759, 'Table Base with Jonah Swallowed and Cast Up by the Big Fish', + 'sculpture|marble, white|sculpture-stone'), + SearchData(50, 250493, 'Obsidian revetment slab fragment', 'revetment slab fragment|obsidian|glass'), + SearchData(149, 250098, 'Terracotta jar with barbotine decoration', 'bowl|terracotta|vases'), + SearchData(17, 250410, 'Terracotta vase fragment', 'vase fragment|terracotta|vases'), + SearchData(299, 465324, 'Spoon with a Panther', 'spoon|copper alloy, silvered, niello|metalwork-copper alloy'), + SearchData(149, 249540, 'Glass barrel-shaped jar', 'jar|glass|glass'), + SearchData(200, 473287, 'Disk Brooch', 'brooch|copper alloy, millefiori enamel|enamels-champlevé'), + SearchData(70, 246876, 'Gold aureus of Vespasian', 'aureus of vespasian|gold|coins'), + SearchData(100, 250492, 'Terracotta vase fragment with figure of Hercules', 'vase fragment|terracotta|vases'), + SearchData( + -5, + 250930, + 'Wall painting on black ground: Aedicula with small landscape, from the imperial villa at Boscotrecase', + 'wall painting on black ground: aedicula with small landscape|fresco|miscellaneous-paintings'), + SearchData(136, 246880, 'Gold aureus of Hadrian', 'aureus of hadrian|gold|coins'), + SearchData(150, 250089, 'Terracotta bowl', 'bowl|terracotta|vases'), + SearchData(375, 246463, 'Bone pin', 'stylus|ivory or bone|miscellaneous-bone, ivory'), + SearchData(15, 250119, 'Terracotta beaker', 'cup|terracotta|vases'), + SearchData(149, 248579, 'Marble head of an athlete', 'head of an athlete|marble|stone sculpture'), + SearchData(299, 249555, 'Glass globular bottle', 'bottle, globular|glass|glass'), + SearchData(40, 253337, 'Wall painting fragment', 'wall painting fragment|fresco|miscellaneous-paintings'), + SearchData(350, 249564, 'Glass two-handled bottle (amphora)', 'amphora|glass|glass'), + SearchData(199, 245137, 'Jasper intaglio: Harpocrates riding a lion', 'intaglio, magical|jasper, red and green|gems'), + SearchData(-112, 246594, 'Terracotta Megarian bowl', 'bowl|terracotta|vases'), + SearchData(199, 250104, 'Terracotta jar with barbotine decoration', 'urn|terracotta|vases'), + SearchData(199, 250734, 'Glass jug decorated with intersecting circles', 'jug|glass|glass'), + SearchData(249, 257875, 'Glass snake-thread flask shaped like a mouse', + 'flask, snake-thread mouse-shaped|glass, blue|glass'), + SearchData(50, 249407, 'Glass perfume bottle', 'perfume bottle|glass|glass'), + SearchData(100, 255112, 'Marble statue of Tyche-Fortuna restored with the portrait head of a woman', + 'statue, tyche|marble|stone sculpture'), + SearchData(349, 246039, 'Glass pendant in the form of a miniature jug', + 'pendant in the form of a miniature jug|glass|glass'), + SearchData(50, 255869, 'Bronze lamp', 'lamp|bronze|bronzes'), + SearchData(100, 246708, 'Pair of gold boat-shaped earrings', 'earring, pair|gold|gold and silver'), + SearchData(75, 256735, 'Glass cup with splayed foot', 'cup|glass|glass'), + SearchData(249, 245815, 'Glass finger ring', 'ring|glass|glass'), + SearchData(125, 252916, 'Marble head of a deity', 'head of ceres or demeter|marble|stone sculpture'), + SearchData( + 100, 251366, 'Bronze right foot and lower leg from a colossal statue', 'foot fragment, colossal|bronze|bronzes'), + SearchData(50, 248667, 'Glass hexagonal bottle', 'bottle, hexagonal|glass|glass'), + SearchData(170, 250352, 'Fragment of terra sigillata', 'vase fragment|terracotta|vases'), + SearchData(149, 255893, 'Bronze kyathos (ladle) terminating in a duck\'s head', 'kyathos|bronze|bronzes'), + SearchData(-50, 250459, 'Terracotta handle', 'patera handle|terracotta|vases'), + SearchData(0, 257839, 'Mosaic glass fragment', 'fragment, mosaic|glass|glass'), + SearchData( + 0, 253814, 'Carnelian intaglio: Sol in a quadriga (four-horse chariot)', 'intaglio, magical|carnelian|gems'), + SearchData(299, 249633, 'Glass mosaic fragment', 'mosaic glass fragment|glass|glass'), + SearchData(85, 249490, 'Glass amphoriskos with vertical ribs', 'amphoriskos, vertical ribs|glass|glass'), + SearchData(125, 250477, 'Terracotta jug fragment', 'vase fragment|terracotta|vases'), + SearchData(20, 255973, 'Statue of Dionysos leaning on a female figure ("Hope Dionysos")', + 'statue of dionysos leaning on a female figure ("hope dionysos")|marble|stone sculpture'), + SearchData(107, 248043, 'Bronze sestertius of Trajan', 'sestertius|bronze|coins'), + SearchData(40, 253324, 'Wall painting fragment', 'wall painting fragment|fresco|miscellaneous-paintings'), + SearchData(349, 249475, 'Glass bottle shaped like a bunch of grapes', 'bottle in the form of grapes|glass|glass'), + SearchData(100, 257867, 'Bronze balsamarium decorated with lion-skins and herms', + 'balsamarium with lion-skins and herms|bronze|bronzes'), + SearchData(50, 255086, 'Bronze phallic ornament', 'amulet, grotesque ornament|bronze|bronzes'), + SearchData(325, 465921, 'Bowl Fragments with Menorah, Shofar, and Torah Ark', + 'bowl fragments|glass, gold leaf|glass-gold glass'), + SearchData(50, 255090, 'Bronze phallic amulet', 'amulet, grotesque ornament|bronze|bronzes'), + SearchData(199, 248070, 'Pair of gold earrings with disk and pendant clustered spheres', + 'earring with discs and pyramids|gold|gold and silver'), + SearchData( + 212, 239584, 'Marble sarcophagus with garlands', 'sarcophagus, garland|marble, proconnesian|stone sculpture'), + SearchData( + 100, 255108, 'Marble statuette of the goddess Hekate', 'statuette of hekate (hekataion)|marble|stone sculpture'), + SearchData( + 41, 245848, 'Wall painting fragment with winged figure', 'wall painting fragment|fresco|miscellaneous-paintings'), + SearchData(100, 256772, 'Marble plaque with funerary inscription', + 'plaque with funerary inscription|marble|stone sculpture'), + SearchData(149, 245730, 'Glass beaker with facet-cut decoration', 'beaker|glass|glass'), + SearchData(199, 468362, 'Brooch in the Form of a Peacock', + 'brooch|champlevé enamel, bronze, garnet cabochon|enamels-champlevé'), + SearchData(299, 246456, 'Bone needle', 'needle|ivory or bone|miscellaneous-bone, ivory'), + SearchData(10, 248973, 'Glass ribbed bowl', 'bowl, ribbed|glass|glass'), + SearchData(149, 255175, 'Two bronze handle attachments', 'handles of a situla|bronze|bronzes'), + SearchData( + 34, 248892, 'Bronze portrait of a man', 'portrait bust of a man (agrippa / marcus antonius?)|bronze|bronzes'), + SearchData(299, 251903, 'Bronze ligula (ear pick)', 'spoon, miniature|bronze|bronzes'), + SearchData(0, 256984, 'Glass mosaic ribbed bowl fragment', 'fragment, mosaic ribbed bowl|glass|glass'), + SearchData(150, 246446, 'Ivory die', 'die|ivory|miscellaneous-bone, ivory'), + SearchData(248, 251397, 'Bronze military diploma fragment', 'military diploma fragment|bronze|bronzes'), + SearchData(199, 249447, 'Glass bottle with indented side', 'bottle, indented|glass|glass'), + SearchData(100, 249232, 'Couch and footstool with bone carvings and glass inlays', + 'couch and footstool with bone carvings and glass inlay|wood, bone, glass|miscellaneous-bone, ivory'), + SearchData(50, 250072, 'Terracotta scyphus (drinking cup) with barbotine decoration', 'skyphos|terracotta|vases'), + SearchData(349, 249565, 'Glass cylindrical bottle', 'bottle, cylindrical|glass|glass'), + SearchData(25, 249470, 'Glass jug', 'ennion jug|glass|glass'), + SearchData(0, 257837, 'Mosaic glass fragment', 'mosaic glass fragment|glass|glass'), + SearchData(0, 257058, 'Glass striped mosaic bowl fragment', 'fragment, striped mosaic|glass|glass'), + SearchData(0, 256997, 'Glass mosaic inlay fragment', 'fragment, mosaic inlay|glass|glass'), + SearchData( + -50, 255402, 'Bronze handle attachment with duck heads', 'handle attachment with duck heads|bronze|bronzes'), + SearchData(40, 253331, 'Wall painting fragment', 'wall painting fragment|fresco|miscellaneous-paintings'), + SearchData(399, 248856, 'Glass bottle', 'bottle|glass|glass'), + SearchData(199, 256823, 'Bronze steelyard weight', 'weight, bust of isis|bronze|bronzes'), + SearchData(159, 251929, 'Marble statue of a wounded warrior', + 'statue of a wounded warrior, protesilaos ?|marble|stone sculpture'), + SearchData(0, 253132, 'Bronze jug', 'jug|bronze|bronzes'), + SearchData(40, 245846, 'Wall painting fragment', 'wall painting fragment|fresco|miscellaneous-paintings'), + SearchData(150, 250145, 'Glass fragments of bowl decorated with mosaic fish', 'dish or plaque fragments|glass|glass'), + SearchData( + 120, 255912, 'Fragmentary terracotta bowl with tondo', 'plate with relief head, fragmentary|terracotta|vases'), + SearchData(200, 250067, 'Terracotta beaker with barbotine decoration', 'vase|terracotta|vases'), + SearchData(82, 255253, 'Gold aurei of the Twelve Caesars', 'aurei, 6 in bracelet|gold, amethyst|coins'), + SearchData(149, 250416, 'Terracotta bowl fragment', 'vase fragment|terracotta|vases'), + SearchData(236, 248052, 'Silver denarius of Maximinus Thrax', 'denarius|silver|coins'), + SearchData(0, 249414, 'Glass oinochoe (jug)', 'oinochoe|glass|glass'), + SearchData(50, 255091, 'Bronze phallic ornament', 'amulet, grotesque ornament|bronze|bronzes'), + SearchData(149, 248175, 'Stucco relief fragment', + 'relief of emperor antoninus pius and a barbarian suppliant|stucco|miscellaneous-stucco'), + SearchData(50, 246734, 'Terracotta cup with barbotine decoration', 'cup|terracotta|vases'), + SearchData(25, 255965, 'Bronze patera (shallow bowl with handle)', 'patera with wolf-head handle|bronze|bronzes'), + SearchData(77, 246877, 'Gold aureus of Vespasian', 'aureus of vespasian|gold|coins'), + SearchData(15, 250776, 'Terracotta cup', 'cup, fragment|terracotta|vases'), + SearchData(150, 251418, 'Fragment from a marble head of a man, preserving the nose and mouth', + 'head, fragment, man\'s nose and mouth|marble|stone sculpture'), + SearchData(314, 254990, 'Terracotta coin molds', + 'mold of forgeries of roman coins of 3rd century a.d., 8|terracotta|terracottas'), + SearchData(25, 245727, 'Glass mosaic bottle', 'perfume bottle, mosaic|glass|glass'), + SearchData(12, 249443, 'Glass ribbed bowl', 'bowl, ribbed|glass|glass'), + SearchData(25, 249466, 'Glass amphoriskos (flask)', 'amphoriskos, basket and wreath|glass|glass'), + SearchData(299, 255800, 'Glass jar', 'jar|glass|glass'), + SearchData(199, 255121, 'Bronze statuette of a dog', 'statuette of a dog|bronze|bronzes'), + SearchData(100, 256886, 'Bronze object in the shape of a horn', + 'object in shape of a horn|bronze, inlaid with silver, niello and copper|bronzes'), + SearchData(0, 257022, 'Glass mosaic bowl fragment', 'fragment, mosaic bowl|glass|glass'), + SearchData(0, 256184, 'Pair of silver scyphi (cups) with relief decoration', + 'skyphoi with erotes, pair|silver with gilding|gold and silver'), + SearchData(149, 250242, 'Fragmentary terracotta cup', 'cup, fragmentary|terracotta|vases'), + SearchData(170, 255009, 'Terracotta cup with barbotine decoration', 'cup|terracotta|vases'), + SearchData(0, 249796, 'Glass mosaic ribbed bowl', 'bowl, mosaic, ribbed|glass|glass'), + SearchData(100, 254496, 'Marble head of a goddess wearing a diadem', + 'head of a woman wearing a diadem|marble|stone sculpture'), + SearchData(265, 254819, 'Marble sarcophagus with the Triumph of Dionysos and the Seasons', + 'sarcophagus, triumph of dionysos and the seasons|marble|stone sculpture'), + SearchData(-38, 246867, 'Gold aureus of Mark Antony', 'aureus of mark antony|gold|coins'), + SearchData(0, 257044, 'Glass mosaic inlay fragment', 'fragment, mosaic inlay|glass|glass'), + SearchData(399, 253059, 'Glass beaker or lamp', 'beaker or lamp|glass|glass'), + SearchData(349, 258494, 'Glass dish', 'dish|glass|glass'), + SearchData(199, 250687, 'Bronze fitting, possible from a cart or chariot', + 'fitting, possible from a cart or chariot|bronze|bronzes'), + SearchData(0, 255487, 'Glass mosaic bowl', 'bowl, mosaic, patella|glass|glass'), + SearchData(100, 251531, 'Marble statuette of a seated man', 'statuette of a man|marble|stone sculpture'), + SearchData(50, 250188, 'Terracotta vase fragment with relief of Minerva', 'vase fragment|terracotta|vases'), + SearchData(349, 249363, 'Glass bottle with two handles', 'bottle, two-handled|glass|glass'), + SearchData(50, 253639, 'Part of a bronze handle with ram’s head finial', + 'handle of a patera with ram\'s head|bronze|bronzes'), + SearchData(299, 246102, 'Gold ornament with cloisons', 'bead ornament|gold|gold and silver'), + SearchData(61, 250078, 'Terracotta marbled slip ware bowl', 'bowl|terracotta|vases'), + SearchData(199, 243711, 'Hematite intaglio: Lion-headed god', 'intaglio, magical|hematite|gems'), + SearchData(-82, 248035, 'Silver denarius serratus of Mamilius Limetanus', 'denarius|silver|coins'), + SearchData(199, 248225, 'Hematite intaglio: Mummy of Osiris', 'intaglio, magical|hematite|gems'), + SearchData(100, 252502, 'Bronze stylus', 'stylus|bronze|bronzes'), + SearchData(50, 254586, 'Marble cinerary chest', 'cinerary urn|marble|stone sculpture'), + SearchData(25, 247451, 'Terracotta lamp', 'lamp|terracotta|terracottas'), + SearchData(40, 252979, 'Wall painting fragment', 'wall painting|fresco|miscellaneous-paintings'), + SearchData(124, 249389, 'Glass cinerary urn (olla)', 'jar|glass|glass'), + SearchData(349, 245720, 'Glass beaker', 'beaker|glass|glass'), + SearchData(25, 249501, 'Glass mosaic perfume bottle', 'perfume bottle, mosaic|glass|glass'), + SearchData(199, 251506, 'Bone hairpin with bust of a woman', 'pin|bone|miscellaneous-bone, ivory'), + SearchData(349, 256876, 'Glass bottle', 'bottle|glass|glass'), + SearchData(249, 249496, 'Glass jug in the shape of a bunch of grapes', 'jug with stylized grape cluster|glass|glass'), + SearchData(0, 257835, 'Network mosaic glass fragment', 'mosaic glass fragment|glass|glass'), + SearchData(199, 249436, 'Glass aryballos (oil bottle)', 'aryballos|glass|glass'), + SearchData(150, 469961, 'Wing Brooch', 'brooch|silver, gold, four carnelians|metalwork-silver'), + SearchData(0, 256996, 'Glass mosaic inlay fragment', 'fragment, glass inlay|glass|glass'), + SearchData(187, 250087, 'Terracotta dish with barbotine decoration', 'bowl|terracotta|vases'), + SearchData(149, 250456, 'Terracotta lamp handle', 'lamp handle|terracotta|vases'), + SearchData(399, 256712, 'Glass jug with trefoil rim', 'jug with trefoil rim|glass|glass'), + SearchData(214, 253592, 'Marble portrait of the emperor Caracalla', + 'portrait head of the emperor marcus aurelius antoninus (called caracalla)|marble|stone sculpture'), + SearchData(174, 246454, 'Bone pin with head in the form of a hand', 'stylus|ivory or bone|miscellaneous-bone, ivory'), + SearchData(293, 248069, 'Gold aureus of Diocletian', 'aureus|gold|coins'), + SearchData(12, 257828, 'Glass mosaic bowl fragment', 'mosaic glass fragment|glass|glass'), + SearchData(82, 251838, 'Fragments of a marble statue of the Diadoumenos (youth tying a fillet around his head)', + 'statue of the diadoumenos, fragmentary|marble|stone sculpture'), + SearchData(100, 248671, 'Marble pillar with snake and wreath', + 'pillar with snake and wreath|marble, pentelic ?|stone sculpture'), + SearchData(180, 250519, 'Terracotta relief from a lamp with Leda and the swan', + 'lamp relief fragment|terracotta|terracottas'), + SearchData(100, 248921, 'Glass weight', 'weight|glass|glass'), + SearchData(100, 252966, 'Marble right hand and wrist with a supporting strut', 'hand|marble|stone sculpture'), + SearchData(25, 769193, 'Terracotta oil lamp fragment', 'lamp|terracotta|terracottas'), + SearchData(50, 250112, 'Terracotta jug', 'vase|terracotta|vases'), + SearchData(11, 255252, 'Gold aurei of the Twelve Caesars', 'aurei, 6 in bracelet|gold, amethyst|coins'), + SearchData(325, 258076, 'Glass bowl in the form of a shell', 'bowl|glass|glass'), + SearchData(100, 253373, 'Marble statue of a wounded Amazon', 'statue of a wounded amazon|marble|stone sculpture'), + SearchData(-40, 254853, 'Gold aureus of Julius Caesar', 'aureus of julius caesar|gold|coins'), + SearchData(125, 250474, 'Terracotta jug fragment', 'vase fragment|terracotta|vases'), + SearchData(50, 254608, 'Marble statue of Herakles', 'statue of herakles|marble|stone sculpture'), + SearchData(40, 253330, 'Wall painting fragment', 'wall painting fragment|fresco|miscellaneous-paintings'), + SearchData(50, 255010, 'Bronze bust of an Amazon', 'bust of amazon|bronze|bronzes'), + SearchData(39, 248851, 'Marble portrait bust of the emperor Gaius, known as Caligula', + 'portrait bust of the emperor caligula|marble|stone sculpture'), + SearchData(72, 248038, 'Bronze dupondius of Vespasian', 'dupondius|bronze|coins'), + SearchData(399, 256746, 'Glass bottle', 'bottle|glass|glass'), + SearchData(13, 246126, 'Terracotta plate', 'plate|terracotta|vases'), + SearchData(349, 249692, 'Glass pendant in the form of a dolphin', 'pendant in the form of a dolphin|glass|glass'), + SearchData(50, 250504, 'Fragmentary terracotta bowl', 'cup, fragment|terracotta|vases'), + SearchData( + 0, 250153, 'Faience statuette fragment of Venus', 'statuette fragment of venus|faience|miscellaneous-faience'), + SearchData(199, 462907, 'Key Handle in the Form of a Horse’s Head', + 'key or knife handle|copper alloy|metalwork-copper alloy'), + SearchData(50, 245810, 'Glass mosaic ornament in the form of a shell', 'ornament in the form of a shell|glass|glass'), + SearchData(299, 249552, 'Glass handkerchief bowl', 'bowl|glass|glass'), + SearchData(399, 249549, 'Glass miniature jar', 'jar|glass|glass'), + SearchData(307, 248067, 'Bronze nummus of Maximianus', 'follis ae2|bronze|coins'), + SearchData(34, 249615, 'Glass mosaic inlay', 'mosaic block inlay|glass|glass'), + SearchData(199, 249493, 'Glass flask decorated with intersecting circles', 'flask|glass|glass'), + SearchData(62, 252494, 'Marble disk with a herm of Dionysus in relief', + 'oscillum with herm of dionysos|marble|stone sculpture'), + SearchData(100, 249332, 'Glass jug', 'jug|glass|glass'), + SearchData(199, 252417, 'Bronze serving fork', 'fork|bronze|bronzes'), + SearchData(40, 253333, 'Wall painting fragment', 'wall painting fragment|fresco|miscellaneous-paintings'), + SearchData(40, 253335, 'Wall painting fragment', 'wall painting fragment|fresco|miscellaneous-paintings'), + SearchData(100, 244746, 'Terracotta lamp mold', 'lamp mold|terracotta|terracottas'), + SearchData(-1, 250325, 'Terracotta bowl fragment', 'vase fragment|terracotta|vases'), + SearchData(50, 249388, 'Glass jar (olla) used as a cinerary urn', 'jar|glass|glass'), + SearchData(20, 249499, 'Glass mosaic perfume bottle', 'perfume bottle, mosaic|glass|glass'), + SearchData( + 185, 250099, 'Terracotta indented beaker', 'beaker|terracotta indented beaker, probably made at trier|vases'), + SearchData(399, 249393, 'Glass conical beaker or lamp', 'beaker or lamp|glass|glass'), + SearchData(25, 250088, 'Terracotta bowl', 'cup with base|terracotta|vases'), + SearchData(270, 248055, 'Silver antoninianus of Aurelian', 'antoninianus|silver|coins'), + SearchData(137, 245170, 'Glass jug', 'jug|glass|glass'), + SearchData(12, 257827, 'Mosaic glass fragment', 'mosaic glass fragment|glass|glass'), + SearchData(50, 250494, 'Obsidian revetment slab fragment', 'revetment slab fragment|obsidian|glass'), + SearchData(347, 252884, 'Marble portrait head of the Emperor Constantine I', 'portrait head|marble|stone sculpture'), + SearchData(50, 255412, 'Bronze jar with two handles', 'amphora ?|bronze|bronzes'), + SearchData(50, 255087, 'Bronze phallic amulet', 'amulet, grotesque ornament|bronze|bronzes'), + SearchData(206, 248049, 'Silver denarius of Septimius Severus', 'denarius|silver|coins'), + SearchData(150, 250241, 'Terracotta jar with barbotine decoration', 'vase|terracotta|vases'), + SearchData(349, 249685, 'Glass pendant in the form of a lamp', 'pendant in the form of a lamp|glass|glass'), + SearchData(141, 246882, 'Gold aureus of Antoninus Pius', 'aureus of antoninus pius|gold|coins'), + SearchData(50, 246732, 'Terracotta jug with barbotine decoration', 'jug|terracotta|vases'), + SearchData(-15, 250064, 'Terracotta cup', 'cup|terracotta|vases'), + SearchData(50, 253327, 'Fresco fragment with siren', 'wall painting fragment|fresco|miscellaneous-paintings'), + SearchData(100, 246699, 'Bronze molding fragment', 'architectural fragment from the pantheon?|bronze|bronzes'), + SearchData(100, 254968, 'Gold funerary wreath', 'wreath, funerary|gold|gold and silver'), + SearchData(100, 251194, 'Bronze shovel with a handle terminating in a ram\'s head', + 'shovel ending in ram\'s head|bronze|bronzes'), + SearchData(100, 246992, 'Marble head of a Hellenistic ruler', 'head of a youth|marble|stone sculpture'), + SearchData(25, 249471, 'Glass hexagonal bottle', 'bottle, hexagonal|glass|glass'), + SearchData(100, 252501, 'Terracotta inkwell and bronze stylus', 'inkwell|terracotta|vases'), + SearchData(12, 257826, 'Mosaic glass bowl fragment', 'mosaic glass fragment|glass|glass'), + SearchData(349, 249373, 'Glass globular bottle', 'bottle, globular|glass|glass'), + SearchData(12, 257842, 'Glass network mosaic bowl fragment', 'fragment, mosaic network bowl|glass|glass'), + SearchData(40, 253334, 'Wall painting fragment', 'wall painting fragment|fresco|miscellaneous-paintings'), + SearchData(150, 255880, 'Gilded bronze mirror with the Three Graces', + 'mirror with three graces|bronze, silver, gold, speculum|bronzes'), + SearchData(41, 246874, 'Gold aureus of Claudius', 'aureus of claudius|gold|coins'), + SearchData(0, 257000, 'Glass monochrome inlay fragment', 'fragment, monochrome inlay|glass|glass'), + SearchData(150, 250095, 'Terracotta pyxis (box) with lid', 'pyxis with lid|terracotta|vases'), + SearchData(79, 246878, 'Gold aureus of Titus', 'aureus of titus|gold|coins'), + SearchData(399, 256709, 'Glass jug with indented body', 'jug|glass|glass'), + SearchData(20, 257640, 'Marble statue of a member of the imperial family', + 'statue of a young man, half-draped|marble|stone sculpture'), + SearchData(49, 257866, 'Marble cinerary urn in the form of a tree stump with leaves and grapes', + 'urn|marble|stone sculpture'), + SearchData(194, 246886, 'Gold aureus of Septimius Severus', 'aureus of septimius severus|gold|coins'), + SearchData(37, 246889, 'Bronze sestertius of Gaius (Caligula)', 'sestertius of caligula|bronze|coins'), + SearchData(105, 250094, 'Terracotta plate', 'plate|terracotta|vases'), + SearchData(199, 248224, 'Serpentine intaglio: Radiate lion-headed god', 'intaglio, magical|serpentine|gems'), + SearchData(249, 250085, 'Terracotta jug in the shape of a head of a Black African', + 'jug in the shape of a head of an african|terracotta|vases'), + SearchData( + 99, 250929, 'Limestone torso of a hunter', 'torso of a hunter, fragmentary|black limestone|stone sculpture'), + SearchData(50, 246270, 'Terracotta oil lamp', 'lamp, glazed|terracotta|terracottas'), + SearchData(-45, 247010, 'Wall painting from Room H of the Villa of P. Fannius Synistor at Boscoreale', + 'wall painting|fresco|miscellaneous-paintings'), + SearchData(349, 249581, 'Glass openwork finger ring', 'ring|glass|glass'), + SearchData(150, 246447, 'Ivory die', 'die|ivory|miscellaneous-bone, ivory'), + SearchData(65, 246888, 'Bronze as of Nero', 'as of nero|bronze|coins'), + SearchData(100, 251431, 'Amber disk with a nereid riding a triton', 'disk|amber|miscellaneous-amber'), + SearchData(399, 256731, 'Glass bottle', 'amphoriskos|glass|glass'), + SearchData(249, 255003, 'Glass vessel in the shape of a basket', 'bowl in the form of a basket|glass|glass'), + SearchData(40, 245845, 'Wall painting fragment', 'wall painting fragment|fresco|miscellaneous-paintings'), + SearchData(222, 253593, 'Marble fragments of a statue of the emperor Caracalla', + 'statue of caracalla, fragments|marble|stone sculpture'), + SearchData(-5, 250939, 'Wall painting on black ground: landscape, from the imperial villa at Boscotrecase', + 'wall painting on black ground: landscape|fresco|miscellaneous-paintings'), + SearchData(0, 257834, 'Glass striped mosaic fragment', 'fragment, striped mosaic|glass|glass'), + SearchData(190, 250462, 'Terracotta mortarium fragment', 'mortarium fragment|terracotta|vases'), + SearchData(199, 256774, 'Marble funerary inscription', 'plaque with funerary inscription|marble|stone sculpture'), + SearchData(195, 250350, 'Fragment of terra sigillata', 'vase fragment|terracotta|vases'), + SearchData(13, 250699, 'Glass cameo fragmentary panel', 'cameo, fragment|glass, cameo|glass'), + SearchData(20, 253615, 'Miniature agate alabastron (perfume vase)', 'alabastron|agate|miscellaneous-stone vases'), + SearchData(-25, 250695, 'Terracotta beaker', 'cup|terracotta|vases'), + SearchData(34, 249502, 'Glass gold-band mosaic bottle', 'bottle, gold-band mosaic|glass|glass'), + SearchData(199, 253781, 'Jasper intaglio: Harpocrates seated on a lotus', 'intaglio, magical|jasper|gems'), + SearchData(449, 245695, 'Glass bottle', 'bottle|glass|glass'), + SearchData(100, 250698, 'Silver plate', 'plate with masks and animals|silver|gold and silver'), + SearchData(212, 256773, 'Marble funerary inscription', 'plaque with funerary inscription|marble|stone sculpture'), + SearchData(50, 249746, 'Glass pendant in the form of a leaf', 'pendant|glass|glass'), + SearchData(349, 249434, 'Glass Frontinus barrel jug', 'frontinus bottle|glass|glass'), + SearchData(50, 249378, 'Glass bottle in the shape of a bird', 'bottle in the form of a bird|glass, onyx|glass'), + SearchData(37, 247467, 'Glass hexagonal bottle', 'bottle, hexagonal, with birds|glass|glass'), + SearchData(50, 254498, 'Marble female herm', 'herm of a woman|marble|stone sculpture'), + SearchData(100, 249387, 'Glass cinerary urn', 'urn|glass|glass'), + SearchData(274, 250419, 'Terracotta fragment from the rim of a vase', 'vase fragment|terracotta|vases'), + SearchData(0, 256985, 'Glass mosaic inlay fragment', 'fragment, mosaic inlay|glass|glass'), + SearchData(17, 249610, 'Glass cameo fragment', 'cameo, fragment|glass|glass'), + SearchData(149, 259142, 'Terracotta mold fragment', 'vase fragment|terracotta|vases'), + SearchData(-6, 257862, 'Bronze ornament in the form of a seated male sphinx', + 'ornament in the form of a seated male sphinx|bronze|bronzes'), + SearchData(150, 255251, 'Bronze statuette of a mouse', 'statuette of a mouse from a lamp|bronze|bronzes'), + SearchData(99, 255210, 'Marble statue of Hermes', 'statuette of hermes|marble|stone sculpture'), + SearchData(240, 248065, 'Bronze sestertius of Gordian III', 'sestertius|bronze|coins'), + SearchData(100, 251416, 'Marble leg of a table with a tiger\'s head', 'table leg|marble|stone sculpture'), + SearchData(100, 250689, 'Bronze left foot with traces of sandal straps', 'foot fragment|bronze|bronzes'), + SearchData(100, 250142, 'Glass head of Zeus Sarapis', 'head of zeus sarapis|glass|glass'), + SearchData(0, 257836, 'Mosaic glass fragment', 'fragment, mosaic base ring|glass|glass'), + SearchData(199, 250245, 'Terracotta barrel-shaped jar', 'jar, barrel-shaped|terracotta|vases'), + SearchData(50, 249399, 'Glass cup', 'cup|glass|glass'), + SearchData(50, 255462, 'Terracotta scyphus (drinking cup)', 'skyphos|terracotta|vases'), + SearchData(174, 246453, 'Bone pin', 'stylus|ivory or bone|miscellaneous-bone, ivory'), + SearchData(41, 245849, 'Wall painting fragment with a swan', 'wall painting fragment|fresco|miscellaneous-paintings'), + SearchData(50, 249015, 'Glass pin', 'pin|glass|glass'), + SearchData( + 25, 246266, 'Marble cinerary chest with lid', 'cippus of lucius gavius (funerary chest)|marble|stone sculpture'), + SearchData(249, 249238, 'Glass goblet with snake-thread decoration', 'goblet|glass|glass'), + SearchData(199, 249035, 'Onyx intaglio: Incantation in Greek letters', 'intaglio, magical|onyx|gems'), + SearchData(50, 249604, 'Glass plaque with foliage', 'plaque with acanthus leaves|glass|glass'), + SearchData(100, 251493, 'Marble head of a Greek general', + 'head of a general (strategos)|marble, pentelic ?|stone sculpture'), + SearchData(13, 250700, 'Glass cameo panel fragment', 'cameo, fragment|glass|glass'), + SearchData(50, 242041, 'Limestone funerary monument of a woman', + 'statuette of a woman and maid holding casket|limestone|stone sculpture'), + SearchData(25, 249525, 'Glass mosaic perfume bottle', 'perfume bottle, mosaic|glass|glass'), + SearchData(84, 250234, 'Terracotta strainer jug', 'vase|terracotta|vases'), + SearchData(55, 250075, 'Terracotta bowl', 'bowl|terracotta|vases'), + SearchData(100, 254492, 'Marble statuette of a male figure with shaggy hair', + 'statuette of a youth|marble, pentelic ?|stone sculpture'), + SearchData(97, 249491, 'Glass globular bottle', 'bottle, globular|glass|glass'), + SearchData(25, 254618, 'Bronze bust of Artemis', 'bust of artemis|bronze|bronzes'), + SearchData(67, 250497, 'Terracotta mortarium fragment', 'mortarium fragment|terracotta|vases'), + SearchData(40, 247173, 'Marble statue of Eirene (the personification of peace)', + 'statue of eirene|marble, pentelic ?|stone sculpture'), + SearchData(115, 250106, 'Terracotta jug', 'jug|terracotta|vases'), + SearchData(149, 250257, 'Terracotta rattle in the form of a pig', + 'rattle in the form of a pig|terracotta, glass|terracottas'), + SearchData(202, 248050, 'Silver denarius of Caracalla', 'denarius|silver|coins'), + SearchData(187, 239944, 'Terracotta transport amphora', 'amphora, pointed|terracotta|vases'), + SearchData(199, 256419, 'Porphyry basin', 'tub|porphyry|stone sculpture'), + SearchData(12, 249446, 'Glass ribbed bowl', 'bowl, ribbed|glass|glass'), + SearchData(12, 245719, 'Glass bowl', 'bowl|glass|glass'), + SearchData(150, 246448, 'Ivory die', 'die|ivory|miscellaneous-bone, ivory'), + SearchData(50, 249430, 'Glass ribbed bowl', 'bowl, rippenschale|glass|glass'), + SearchData(349, 256722, 'Glass bottle with three feet', 'bottle with three feet|glass|glass'), + SearchData(1, 258555, 'Marble statuette of young Dionysos', 'torso of dionysos|marble|stone sculpture'), + SearchData(-50, 255798, 'Terracotta cantharus (drinking cup)', 'kantharos|terracotta|vases'), + SearchData(100, 251419, 'Marble relief fragment with the head of Medea', + 'relief fragment with head of medea|marble|stone sculpture'), + SearchData(300, 248068, 'Bronze nummus of Constantius I Chlorus', 'nummus|bronze|coins'), + SearchData(195, 250351, 'Fragment of terra sigillata', 'vase fragment|terracotta|vases'), +]; diff --git a/lib/logic/data/wonders_data/search/great_wall_search_data.dart b/lib/logic/data/wonders_data/search/great_wall_search_data.dart index ae3b3f3a..7b5c1241 100644 --- a/lib/logic/data/wonders_data/search/great_wall_search_data.dart +++ b/lib/logic/data/wonders_data/search/great_wall_search_data.dart @@ -1,497 +1,785 @@ part of '../great_wall_data.dart'; -// Search suggestions (92) -List _searchSuggestions = const ['longquan', 'bodhisattva', 'horn', 'figure', 'jingdezhen', 'figures', 'model', 'birds', 'copper', 'tomb', 'architectural', 'celadon', 'scroll', 'silver', 'ware', 'colored', 'sculpture', 'earthenware', 'sancai', 'incised', 'archaic', 'ink', 'color', 'ceramics', 'vase', 'cloisonn', 'rhinoceros', 'dragons', 'green', 'yellow', 'ivory', 'overglaze', 'vessel', 'glass', 'dragon', 'white', 'cobalt', 'cup', 'shape', 'limestone', 'brush', 'peach', 'cizhou', 'decoration', 'female', 'nephrite', 'lead', 'plate', 'red', 'gilt', 'lotus', 'bronze', 'ivories', 'jade', 'water', 'dish', 'porcelain', 'flowers', 'black', 'wood', 'bottle', 'pottery', 'paintings', 'bloom', 'painted', 'hardstone', 'gold', 'jar', 'landscape', 'bottles', 'washer', 'snuff', 'box', 'buddha', 'underglaze', 'traces', 'turquoise', 'pigment', 'inlaid', 'enamel', 'metalwork', 'brown', 'carved', 'covered', 'gilding', 'bowl', 'pair', 'enamels', 'blue', 'transparent', 'stoneware', 'glaze', ]; +// Search suggestions (103) +List _searchSuggestions = const [ + 'longquan', + 'bodhisattva', + 'horn', + 'figure', + 'mirror', + 'mythical', + 'jingdezhen', + 'figures', + 'model', + 'birds', + 'mirrors', + 'sample', + 'stand', + 'copper', + 'tomb', + 'architectural', + 'celadon', + 'alloy', + 'silver', + 'ware', + 'colored', + 'incense', + 'sculpture', + 'earthenware', + 'sancai', + 'incised', + 'ink', + 'color', + 'ceramics', + 'vase', + 'cloisonn', + 'rhinoceros', + 'dragons', + 'green', + 'floral', + 'tool', + 'carving', + 'ivory', + 'overglaze', + 'set', + 'vessel', + 'glass', + 'dragon', + 'white', + 'cobalt', + 'cup', + 'shape', + 'limestone', + 'fragment', + 'brush', + 'peach', + 'meiping', + 'decoration', + 'nephrite', + 'lead', + 'chinese', + 'red', + 'gilt', + 'lotus', + 'bronze', + 'ivories', + 'jade', + 'water', + 'dish', + 'porcelain', + 'flowers', + 'black', + 'bottle', + 'wood', + 'design', + 'pottery', + 'paintings', + 'bloom', + 'painted', + 'gold', + 'jar', + 'polychrome', + 'bottles', + 'snuff', + 'seated', + 'box', + 'buddha', + 'underglaze', + 'traces', + 'pigment', + 'enamel', + 'metalwork', + 'stopper', + 'brown', + 'burner', + 'covered', + 'furniture', + 'garden', + 'gilding', + 'bowl', + 'pair', + 'enamels', + 'blue', + 'transparent', + 'gourd', + 'scene', + 'stoneware', + 'glaze', +]; // The Great Wall (489) List _searchData = const [ - SearchData(1449, 50716, 'Plate with Lotus', 'plate|porcelain with incised decoration under celadon glaze (zhejiang province, longquan ware)|ceramics', 'as/mobile-large/DP-14609-035.jpg', 1.33), - SearchData(1233, 42442, 'Dish', 'dish|stoneware with crackled blue glaze (guan ware)|ceramics', 'as/mobile-large/DP256953.jpg', 1.33), - SearchData(1350, 49855, 'Flask with Lotus Pond', 'flask|porcelain painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP342530.jpg', 0.75), - SearchData(658, 56154, 'Man with a hoe', 'figure|earthenware with pigment|tomb pottery', 'as/mobile-large/DP-17390-001.jpg', 0.75), - SearchData(1850, 41208, 'Snuff bottle with demon queller Zhong Kui', 'snuff bottle|overlay glass with coral stopper|snuff bottles', 'as/mobile-large/DP319167.jpg', 0.75), - SearchData(599, 49547, 'Female attendant', 'figure|glazed earthenware with pigment|tomb pottery', 'as/mobile-large/53880.jpg', 0.66), - SearchData(1683, 48572, 'Vase with scenes from Romance of the West Chamber', 'vase|porcelain painted in cobalt blue under transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/79_2_412_O1_sf.jpg', 1.24), - SearchData(1800, 39632, 'Seated luohan with a servant', 'jade mountain|malachite|hardstone', 'as/mobile-large/DP275508.jpg', 0.75), - SearchData(1833, 41649, 'Snuff bottle in the shape of a hot pepper', 'snuff bottle|porcelain painted with red enamel (jingdezhen ware) and glass stopper|snuff bottles', 'as/mobile-large/DP321916.jpg', 0.75), - SearchData(1716, 49854, 'Wine Pot in Shape of a Peach', 'wine pot|porcelain with raised decoration and colored glazes (jingdezhen ware)|ceramics', 'as/mobile-large/DP-13079-030.jpg', 0.84), - SearchData(1149, 50236, 'Vase in the shape of a flower', 'vase|porcelain with bluish white glaze (jingdezhen qingbai ware)|ceramics', 'as/mobile-large/17_175_5_TQ.jpg', 0.73), - SearchData(-100, 49435, 'Ferrule', 'ferrule|bronze inlaid with gold|metalwork', 'as/mobile-large/1985_214_33_238215.jpg', 0.32), - SearchData(-1100, 53952, 'Knife with Ram\'s Head', 'knife|bronze inlaid with turquoise|metalwork', 'as/mobile-large/DT11899.jpg', 0.38), - SearchData(1099, 42432, 'Jar with Peony Scroll', 'jar|stoneware with carved decoration under celadon glaze (yaozhou ware)|ceramics', 'as/mobile-large/DP-14609-072.jpg', 1.33), - SearchData(1335, 52074, 'Brush washer with lotus', 'brush washer|stoneware with incised decoration under a celadon glaze (longquan ware)|ceramics', 'as/mobile-large/DP326731.jpg', 1.33), - SearchData(1199, 42447, 'Vase with Dragonfish Handles', 'vase|porcelain with relief decoration under celadon glaze (longquan ware)|ceramics', 'as/mobile-large/DP350151.jpg', 0.75), - SearchData(1800, 76444, 'Brush holder with scholars in a garden', 'brush holder|bamboo|bamboo', 'as/mobile-large/DP248225.jpg', 0.75), - SearchData(1799, 41180, 'Snuff bottle', 'snuff bottle|glass|snuff bottles', 'as/mobile-large/DP319240.jpg', 0.75), - SearchData(1949, 42721, 'Rock in the form of a fantastic mountain', 'scholar\'s rock|taihu limestone; wood stand|sculpture', 'as/mobile-large/2011_575_1ab.jpg', 0.68), - SearchData(-2150, 51280, 'Notched Disk', 'disk|jade (nephrite)|jade', 'as/mobile-large/DT4433.jpg', 0.80), - SearchData(749, 49563, 'Ladle', 'ladle|silver|metalwork', 'as/mobile-large/22_79_5_183332.jpg', 1.17), - SearchData(0, 52104, 'Mat Weight in the Shape of a Doe', 'weight|bronze|metalwork', 'as/mobile-large/DT11856.jpg', 1.27), - SearchData(1700, 42202, 'Bottle with Dragon Chasing Pearl', 'bottle|porcelain painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-080.jpg', 0.75), - SearchData(1838, 41145, 'Snuff bottle with gourd on a trellis', 'snuff bottle with stopper|chalcedony with jadeite stopper|snuff bottles', 'as/mobile-large/DP319165.jpg', 0.75), - SearchData(1199, 42482, 'Pillow in Shape of Reclining Woman', 'pillow|porcelain with incised and carved decoration under celadon glaze (jingdezhen qingbai ware)|ceramics', 'as/mobile-large/DT258463.jpg', 1.26), - SearchData(749, 49582, 'Decorative belt plaque', 'belt plaque|gilt bronze|metalwork', 'as/mobile-large/24_100_12_57008.jpg', 1.00), - SearchData(1649, 41880, 'Cup in the shape of an archaic vessel with feline dragons', 'cup|rhinoceros horn|horn', 'as/mobile-large/DP318344.jpg', 1.33), - SearchData(724, 44349, 'Jar', 'jar|earthenware with dappled yellow and green glaze|ceramics', 'as/mobile-large/1994_605_48_L36017.jpg', 0.80), - SearchData(716, 39805, 'Assemblage of pendants', 'plaques|jade (nephrite) with bronze and turquoise|jade', 'as/mobile-large/DT3804.jpg', 0.52), - SearchData(1892, 7985, 'Sugar Bowl', 'sugar bowl|porcelain|', 'ad/mobile-large/ADA5410.jpg', 0.92), - SearchData(1383, 42496, 'Bowl with Chrysanthemums', 'bowl|porcelain painted with copper red under transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DT258470.jpg', 0.79), - SearchData(1849, 42228, 'Vase in Meiping Shape', 'vase|porcelain with crackled apple-green glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-061.jpg', 0.75), - SearchData(1683, 53962, 'Jar with Cover (one of a pair)', 'jar with cover|porcelain|ceramics', 'as/mobile-large/50_235_2ab_149358.jpg', 0.69), - SearchData(555, 42718, 'Bodhisattva, probably Avalokiteshvara (Guanyin)', 'figure|sandstone with pigment|sculpture', 'as/mobile-large/DP213356.jpg', 0.75), - SearchData(574, 44796, 'Warrior with Shield', 'figure|earthenware with pigment|tomb pottery', 'as/mobile-large/62773.jpg', 0.66), - SearchData(1199, 52647, 'Water dropper', 'water dropper|stoneware with splashed blue glaze (jun ware)|ceramics', 'as/mobile-large/DP-14609-134.jpg', 1.33), - SearchData(1450, 42513, 'Altar Bowl with Winged Animals among Waves', 'bowl|porcelain painted with cobalt blue under and red enamel over transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14609-041.jpg', 1.33), - SearchData(-351, 44398, 'Spearhead', 'spearhead|bronze|metalwork', 'as/mobile-large/1994_605_98_L35960.jpg', 0.72), - SearchData(1622, 76751, 'Plate with vase of flowers', 'plate|porcelain painted with colored enamels over transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14608-064.jpg', 1.33), - SearchData(1300, 51249, 'Service with Decoration of Flowers and Birds', 'service|silver with gilding|metalwork', 'as/mobile-large/DT211.jpg', 1.43), - SearchData(1700, 42208, 'Vase', 'vase|porcelain with black glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-099.jpg', 0.75), - SearchData(1694, 52828, 'Dish with Phoenixes', 'dish|porcelain painted with cobalt blue under and colored enamels over transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14606-031.jpg', 1.33), - SearchData(1902, 40018, 'Ink Tablet with Thousand-Year Fungus Motif', 'ink tablet|pine soot and binding medium|ink', 'as/mobile-large/30_76_196_sf.jpg', 1.29), - SearchData(1808, 781822, 'Brush holder with flowers and poems', 'brush holder|molded gourd, black lacquer|gourd', 'as/mobile-large/DP-16215-075.jpg', 0.75), - SearchData(1299, 42445, 'Tea Bowl with Crescent Moon, Clouds, and Blossoming Plum', 'bowl|stoneware with black and brown glaze and pigment (jizhou ware)|ceramics', 'as/mobile-large/DP342543.jpg', 1.33), - SearchData(-100, 44718, 'Weight in the Form of a Feline', 'weight|bronze inlaid with gold and silver|metalwork', 'as/mobile-large/25532.jpg', 1.23), - SearchData(1099, 42429, 'Bowl with Two Boys among Foliage', 'bowl|stoneware with mold-impressed decoration under celadon glaze (yaozhou ware)|ceramics', 'as/mobile-large/DP342503.jpg', 1.33), - SearchData(999, 61780, 'Pair of decorative medallions', 'architectural detail|sandstone|sculpture', 'as/mobile-large/1992_165_26a.JPG', 1.01), - SearchData(1888, 15980, 'Vase', 'vase|glazed and painted earthenware|', 'ad/mobile-large/DP235551.jpg', 0.82), - SearchData(-250, 54001, 'Scabbard Slide', 'scabbard slide|agate|hardstone', 'as/mobile-large/1985_214_104.JPG', 0.56), - SearchData(-100, 44790, 'Mat Weight in the form of a Bear and Tiger in Combat', 'weight|gilt bronze|metalwork', 'as/mobile-large/38391.jpg', 1.65), - SearchData(1724, 61430, 'Plate with Dragon and Waves', 'plate|porcelain painted with colored enamels over transparent glaze and gilding (jingdezhen ware)|ceramics', 'as/mobile-large/DP343065.jpg', 1.33), - SearchData(1692, 52034, 'Covered Jar', 'covered jar|porcelain painted in famille verte enamels|ceramics', 'as/mobile-large/14_40_237.jpg', 0.58), - SearchData(1805, 43303, 'Covered box with lotus spray', 'covered box|jade (nephrite)|jade', 'as/mobile-large/183841.jpg', 1.27), - SearchData(1649, 42745, 'Couch', 'couch|wood (huanghuali, or dalbergia odorifera)|furniture', 'as/mobile-large/260149.jpg', 1.60), - SearchData(1849, 653049, 'Boys with leaves and boxes', 'figure|horn|horn', 'as/mobile-large/DP321122.jpg', 1.33), - SearchData(1749, 41888, 'Cup in the shape of a magnolia blossom', 'cup|rhinoceros horn|horn', 'as/mobile-large/DP318349.jpg', 0.75), - SearchData(1700, 42248, 'Vase in Meiping Shape', 'vase|porcelain with ox-blood glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-152.jpg', 0.75), - SearchData(749, 49591, 'Mirror Back with Birds and Animals in Repoussé', 'mirror back|silver|mirrors', 'as/mobile-large/1985_214_22_sf.JPG', 0.99), - SearchData(550, 42709, 'Buddha', 'stele fragment|limestone with traces of pigment|sculpture', 'as/mobile-large/DP170196.jpg', 0.75), - SearchData(1099, 42461, 'Basin with Lotus Decoration', 'basin|porcelain with carved and incised decoration under ivory glaze (ding ware)|ceramics', 'as/mobile-large/DP342661.jpg', 1.33), - SearchData(1099, 52595, 'Bowl with “Hare’s Fur” Decoration', 'bowl|stoneware with iron-oxide glaze (jian ware); japanese lacquer repair|ceramics', 'as/mobile-large/DP275578.jpg', 1.33), - SearchData(1600, 42544, 'Plate with Geese in a Lotus Pond', 'plate|porcelain painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP342691.jpg', 1.33), - SearchData(1199, 52663, 'Bowl (one of a pair)', 'bowl|stoneware with splashed glaze (jun ware)|ceramics', 'as/mobile-large/DP-14609-154.jpg', 1.33), - SearchData(1749, 39527, 'Gourd-Shaped Bottle (one of a pair)', 'bottle|porcelain with celadon glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14609-119.jpg', 0.75), - SearchData(1849, 49840, 'Ewer in the shape of a peach', 'ewer|porcelain with colored glazes (jingdezhen ware)|ceramics', 'as/mobile-large/DP307601.jpg', 1.33), - SearchData(1892, 2737, 'Creamer', 'cream pot|porcelain|', 'ad/mobile-large/ADA5412.jpg', 0.97), - SearchData(-1000, 49405, 'Dagger-Axe', 'dagger-axe|bronze|metalwork', 'as/mobile-large/1985_214_25_238265.jpg', 2.63), - SearchData(1805, 43960, 'Paperweight in the shape of a bitter melon', 'paperweight|jade (jadeite)|jade', 'as/mobile-large/02_18_655_O2.jpg', 1.17), - SearchData(-2500, 44724, 'Jar (Guan)', 'jar|earthenware with pigment|ceramics', 'as/mobile-large/268185.jpg', 0.84), - SearchData(1700, 42258, 'Plate with Basket of Auspicious Flowers', 'plate|porcelain painted with colored enamels over transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-020.jpg', 1.33), - SearchData(1799, 53120, 'Rock in the Form of a Fantastic Mountain', 'scholar\'s rock|black lingbi limestone; wood stand|sculpture', 'as/mobile-large/L37147_2011_575_3ab.jpg', 1.10), - SearchData(122, 44321, 'Wellhead with Bucket', 'architectural model|earthenware with green lead glaze|ceramics', 'as/mobile-large/1994_605_20_L35679.jpg', 0.80), - SearchData(1749, 739055, 'Brush washer in the shape of a peach', 'brush washer|overlay glass|glass', 'as/mobile-large/DP-15664-001.jpg', 1.33), - SearchData(1716, 816473, 'Plate with landscape of the West Lake', 'plate|porcelain with powder blue glaze and gold decoration (jingdezhen ware)|ceramics', 'as/mobile-large/DP-17392-001.jpg', 1.33), - SearchData(707, 61549, 'Buddha', 'figure|marble|sculpture', 'as/mobile-large/DP163984.jpg', 0.75), - SearchData(290, 42335, 'Candle Stand in the Shape of a Fantastic Animal', 'candle stand|stoneware with green glaze|ceramics', 'as/mobile-large/1990_291_1.jpg', 1.32), - SearchData(1729, 52022, 'Vase', 'vase|porcelain|ceramics', 'as/mobile-large/20878.jpg', 0.75), - SearchData(1583, 72729, 'Dish with Three Friends of Winter', 'dish|porcelain painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14609-063.jpg', 1.33), - SearchData(1733, 73383, 'Buddhist Deity, Ushnishavijaya (Zun Sheng fo mu)', 'figure|gilt brass; lost-wax cast|sculpture', 'as/mobile-large/DP146806.jpg', 0.75), - SearchData(117, 44326, 'Square Duck Pond', 'architectural model|earthenware with green lead glaze|tomb pottery', 'as/mobile-large/1994_605_25_side.JPG', 1.80), - SearchData(1672, 43209, 'Cup with dragon handles', 'cup|jade (nephrite)|jade', 'as/mobile-large/49179.jpg', 1.42), - SearchData(-1150, 49372, 'Ceremonial Ax', 'ceremonial ax|jade (nephrite)|jade', 'as/mobile-large/36904.jpg', 0.74), - SearchData(699, 49564, 'Stem cup', 'stem cup|silver|metalwork', 'as/mobile-large/23_226_1_54396.jpg', 1.17), - SearchData(1319, 42716, 'Buddha of Medicine Bhaishajyaguru (Yaoshi fo)', 'wall painting|water-based pigment over foundation of clay mixed with straw|paintings', 'as/mobile-large/DT227320.jpg', 1.26), - SearchData(1783, 42243, 'Vase with Cranes, Clouds, and Waves', 'vase|porcelain with incised decoration under amber glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP342655.jpg', 0.75), - SearchData(1692, 52049, 'Vase', 'vase|porcelain with peach bloom glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP307773.jpg', 0.75), - SearchData(1765, 51041, 'Bottle vase', 'bottle vase|porcelain with incised decoration (anhua) under a clair de lune glaze (jingdezhen ware)|ceramics', 'as/mobile-large/33_40_77_O1_sf.jpg', 0.65), - SearchData(1849, 60660, 'Box in the shape of a “Buddha’s hand” citron', 'box|amber|amber', 'as/mobile-large/DP324382.jpg', 0.75), - SearchData(117, 44320, 'Mill', 'architectural model|earthenware with green lead glaze|ceramics', 'as/mobile-large/1994_605_19_L35678.jpg', 1.25), - SearchData(1622, 739053, 'Octagonal cup with dragon handles', 'cup|gilt bronze|metalwork', 'as/mobile-large/DP-14002-001.jpg', 1.33), - SearchData(1135, 42720, 'Monk Sengqie', 'figure|limestone with pigment|sculpture', 'as/mobile-large/DP213354.jpg', 0.75), - SearchData(1805, 43273, 'Dish with grapes and squirrels', 'dish|jade (jadeite)|jade', 'as/mobile-large/DP321101.jpg', 1.33), - SearchData(1716, 42255, 'Vase with romantic scenes', 'vase|porcelain covered with powdered blue glaze, painted with colored enamels over transparent glaze, and painted with gold (jingdezhen ware)|ceramics', 'as/mobile-large/DP200408.jpg', 0.75), - SearchData(1649, 39645, 'Incense burner with animal-mask handles', 'incense burner|bronze with gold splashes|metalwork', 'as/mobile-large/29_100_550_tms.JPG', 1.07), - SearchData(-1100, 49404, 'Axe', 'axe|bronze|metalwork', 'as/mobile-large/DP219129.jpg', 0.75), - SearchData(1199, 52601, 'Tea Bowl with “Hare’s-Fur” Decoration', 'bowl|stoneware with iron-oxide glaze (jian ware)|ceramics', 'as/mobile-large/DP-14610-028.jpg', 1.33), - SearchData(1692, 42416, 'Water jar with clouds', 'water jar|porcelain with raised decoration under celadon glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP323433.jpg', 0.75), - SearchData(1200, 42433, 'Pillow with a falcon attacking a swan', 'pillow|stoneware painted with brown and black pigment on white slip under transparent glaze (cizhou ware)|ceramics', 'as/mobile-large/DP274727.jpg', 1.33), - SearchData(1316, 42483, 'Incense Burner in Shape of Lion (one of a pair)', 'incense burner|porcelain with brown and raised decoration under celadon glaze (jingdezhen qingbai ware)|ceramics', 'as/mobile-large/34_113_2_DT5091.jpg', 0.54), - SearchData(567, 49542, 'Standing Official', 'figure|earthenware with traces of pigment|tomb pottery', 'as/mobile-large/1985_220_1_O.JPG', 0.75), - SearchData(1319, 647271, 'Wine bottle with lotuses and admonition', 'wine bottle|stoneware with cut-glaze decoration (cizhou ware)|ceramics', 'as/mobile-large/DP703074.jpg', 0.75), - SearchData(566, 49545, 'Seated Falconer', 'one of a pair of figures|earthenware with red and white pigments|tomb pottery', 'as/mobile-large/DP702295.jpg', 0.88), - SearchData(-600, 61327, 'Spouted Water Vessel (Yi)', 'vessel|bronze|metalwork', 'as/mobile-large/DP151410.jpg', 1.33), - SearchData(1099, 58453, 'Guardian Protector of the East (Dongfang chiguo tianwang)', 'figure|partially gilt arsenical bronze; lost-wax cast|sculpture', 'as/mobile-large/DP170244.jpg', 0.75), - SearchData(1771, 1980, 'Openwork fruit basket', 'basket|soft-paste porcelain with underglaze blue decoration|', 'ad/mobile-large/DP207185.jpg', 0.79), - SearchData(1499, 42510, 'Vase in Shape of Ancient Bronze Vessel', 'vase|porcelain with celadon glaze (longquan ware)|ceramics', 'as/mobile-large/DP-14609-153.jpg', 0.75), - SearchData(-2500, 44465, 'Pitcher (Hu)', 'pitcher|earthenware|ceramics', 'as/mobile-large/1987_409_4.JPG', 0.89), - SearchData(1849, 40705, 'One of a Pair of Vases with Dragon Handles', 'vase|cloisonné enamel with gilt bronze and champlevé|cloisonné', 'as/mobile-large/29_110_48_O1.jpg', 1.40), - SearchData(1765, 52975, 'Miniature vase with floral medallions', 'vase|porcelain painted with overglaze enamels (jingdezhen ware)|ceramics', 'as/mobile-large/24_80_296_56924.jpg', 0.53), - SearchData(1716, 42212, 'Gourd-Shaped Bottle', 'bottle|porcelain with blue glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-063.jpg', 0.75), - SearchData(1692, 50925, 'Seal-Paste Box', 'covered box|porcelain with peach-bloom glaze|ceramics', 'as/mobile-large/76134.jpg', 1.25), - SearchData(1717, 42247, 'Water Jar with Swirling Clouds', 'jar|porcelain with incised decoration under celadon glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-170.jpg', 1.33), - SearchData(1805, 44072, 'Vessel in the shape of a bird with archaic designs', 'vessel|rock crystal|hardstone', 'as/mobile-large/DP326720.jpg', 0.75), - SearchData(1249, 39635, 'Buddha Shakyamuni with attendant bodhisattvas', 'figures|mammoth ivory|sculpture', 'as/mobile-large/DP170123.jpg', 0.75), - SearchData(1683, 42231, 'Box for Seal Paste', 'box|porcelain with peach-bloom glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-102.jpg', 1.33), - SearchData(1833, 42240, 'Vase in Form of Archaic Bronze', 'vase|porcelain painted with colored enamels over transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-132.jpg', 0.75), - SearchData(1600, 39626, 'Incense holder with scholars in a landscape', 'incense holder|bamboo|bamboo', 'as/mobile-large/DP323467.jpg', 0.75), - SearchData(-300, 36444, 'Wine Container (Bianhu)', 'wine vessel|bronze inlaid with copper|metalwork', 'as/mobile-large/1992_130.JPG', 0.91), - SearchData(1688, 36131, 'Landscapes with poems', 'album|fifteen leaves from an album (1980.516.2a–c and 1981.4.1a–o) of eighteen leaves|paintings', 'as/mobile-large/1981_4_1a.jpg', 1.45), - SearchData(-2450, 44723, 'Jar (Hu)', 'jar|earthenware with painted decoration|ceramics', 'as/mobile-large/DP257874.jpg', 0.75), - SearchData(-1150, 44777, 'Ceremonial dagger-ax (Ge)', 'dagger-ax|jade (nephrite)|jade', 'as/mobile-large/58227.jpg', 1.52), - SearchData(1683, 42232, 'Vase', 'vase|porcelain with peach-bloom glaze (jingdezhen ware); tiffany stand|ceramics', 'as/mobile-large/DP-14605-118.jpg', 0.75), - SearchData(1849, 43909, 'Belt buckle with dragons', 'belt buckle|jade (jadeite)|jade', 'as/mobile-large/DP321096.jpg', 1.33), - SearchData(1550, 50263, 'Dish with Children in Garden', 'dish|porcelain painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14609-076.jpg', 1.33), - SearchData(1600, 56355, 'Wardrobe', 'wardrobe|wood with inlay of mother-of-pearl, amber, glass, ivory, and other materials|furniture', 'as/mobile-large/DP205481.jpg', 0.75), - SearchData(1799, 41756, 'Snuff bottle', 'snuff bottle|glass|snuff bottles', 'as/mobile-large/DP321914.jpg', 0.75), - SearchData(1316, 42484, 'Incense Burner in Shape of Lion (one of a pair)', 'incense burner|porcelain with brown and raised decoration under celadon glaze (jingdezhen qingbai ware)|ceramics', 'as/mobile-large/34_113_3_DT5091.jpg', 0.58), - SearchData(1516, 42525, 'Bowl with Dragons', 'bowl|porcelain painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/62566.jpg', 1.02), - SearchData(1749, 39859, 'Brush holder with narrative scene', 'brush holder|ivory|ivories', 'as/mobile-large/DP318656.jpg', 0.75), - SearchData(1149, 39528, 'Jar with Handles', 'jar|stoneware with applied white slip ribs and black glaze (cizhou ware)|ceramics', 'as/mobile-large/DP-14610-043.jpg', 1.33), - SearchData(1771, 13370, 'Pickle Stand', 'pickle stand|soft-paste porcelain|', 'ad/mobile-large/DT5514.jpg', 1.25), - SearchData(1366, 39623, 'Disk with dragons', 'disk|ivory|ivories', 'as/mobile-large/DP310102.jpg', 0.75), - SearchData(1583, 42526, 'Dish with Gardenia', 'dish|porcelain painted with cobalt blue under and colored enamel over transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14609-087.jpg', 1.33), - SearchData(1683, 42405, 'Plate with Phoenix and Mythical Qilin', 'plate|porcelain painted with colored enamels over transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14608-051.jpg', 1.33), - SearchData(1849, 41571, 'Snuff bottle with landscape', 'snuff bottle|mother-of-pearl with stained ivory and coral stopper|snuff bottles', 'as/mobile-large/DP321887.jpg', 0.75), - SearchData(1805, 43306, 'Covered box with floral design', 'covered box|jade (nephrite)|jade', 'as/mobile-large/183831.jpg', 1.35), - SearchData(1199, 78392, 'Tea Bowl with Splashed Decoration', 'tea bowl|stoneware with brown glaze and slip decoration|ceramics', 'as/mobile-large/DP344325.jpg', 1.33), - SearchData(689, 42695, 'Epitaph with Cover for Master Xu', 'epitaph|limestone|sculpture', 'as/mobile-large/DP256627.jpg', 1.33), - SearchData(1805, 43322, 'Vase on Stand', 'incense utensil|jade (nephrite)|jade', 'as/mobile-large/49360.jpg', 0.56), - SearchData(100, 44412, 'Pig in Recumbent Position', 'figure|dolomite|sculpture', 'as/mobile-large/DP-17989-051.jpg', 1.33), - SearchData(117, 49517, 'House with Courtyard', 'model|earthenware with green lead glaze|ceramics', 'as/mobile-large/20477.jpg', 1.30), - SearchData(1549, 42742, 'Wardrobe', 'wardrobe|wood (huanghuali, or dalbergia odoriferal); metal fittings|furniture', 'as/mobile-large/1976_193_7_O1.jpg', 0.57), - SearchData(524, 42162, 'Buddha Maitreya (Mile) Altarpiece', 'altarpiece|gilt bronze|sculpture', 'as/mobile-large/DP217575.jpg', 0.75), - SearchData(716, 50973, 'Miniature covered jar and “inkstone”', 'jar|earthenware with green glaze|ceramics', 'as/mobile-large/DP297292.jpg', 0.75), - SearchData(1716, 42213, 'Vase', 'vase|porcelain with light blue glaze|ceramics', 'as/mobile-large/DP-14605-084.jpg', 0.75), - SearchData(1750, 42249, 'Vase', 'vase|porcelain with ox-blood glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-004.jpg', 0.75), - SearchData(1099, 50230, 'Vase', 'vase|stoneware with white glaze (cizhou ware)|ceramics', 'as/mobile-large/DP-14610-051.jpg', 0.75), - SearchData(199, 44419, 'Jar in Shape of Archaic Bronze Vessel (Hu)', 'jar|earthenware with incised decoration under amber glaze|ceramics', 'as/mobile-large/DP-14610-038.jpg', 0.75), - SearchData(1561, 42532, 'Dish with Flowers and Birds', 'dish|porcelain painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14606-009.jpg', 1.33), - SearchData(1849, 52825, 'Ewer in the shape of a peach', 'ewer|porcelain painted with underglaze copper red and cobalt blue glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP323436.jpg', 1.33), - SearchData(1649, 42547, 'Bodhidharma in meditation', 'figure|porcelain with ivory glaze (dehua ware)|ceramics', 'as/mobile-large/DP170200.jpg', 0.75), - SearchData(1692, 52872, 'Set of wine cups with flowers of the twelve months', 'cups|porcelain painted with underglaze cobalt blue and overglaze enamels (jingdezhen ware)|ceramics', 'as/mobile-large/DP325003.jpg', 1.33), - SearchData(1600, 42542, 'Box with Figures in Landscape', 'box|porcelain painted with cobalt blue under and colored enamels over transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14609-108.jpg', 1.33), - SearchData(1683, 42230, 'Brush Washer', 'brush washer|porcelain with peach-bloom glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-124.jpg', 1.33), - SearchData(600, 76733, 'Bottle', 'bottle|stoneware with incised decoration under celadon glaze|ceramics', 'as/mobile-large/DP-14609-068.jpg', 0.75), - SearchData(-98, 49530, 'Sword Blade', 'sword blade|bronze inlaid with gold and silver|metalwork', 'as/mobile-large/65_74_1_201805.jpg', 0.21), - SearchData(1805, 56173, 'Brush washer with plum blossoms and feline dragons', 'cup|chalcedony|hardstone', 'as/mobile-large/DP324366.jpg', 1.33), - SearchData(1350, 49215, 'Bottle with Peonies', 'bottle|porcelain painted with copper red under transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14609-013.jpg', 0.75), - SearchData(1692, 50995, 'Water coupe', 'water coupe|porcelain with peach-bloom glaze (jingdezhen ware)|ceramics', 'as/mobile-large/76014.jpg', 1.18), - SearchData(566, 44797, 'Tomb Guardian (Zhenmushou)', 'figure|earthenware with pigment|tomb pottery', 'as/mobile-large/DP342410.jpg', 1.33), - SearchData(100, 44330, 'Food Container (Kui)', 'container|earthenware with green lead glaze|tomb pottery', 'as/mobile-large/1994_605_29_L35691.jpg', 1.24), - SearchData(1549, 42734, 'Side Table', 'side table|wood (huanghuali, or dalbergia odorifera)|furniture', 'as/mobile-large/1976_193_5.JPG', 1.30), - SearchData(835, 39650, 'Bowl with deer', 'bowl|silver with parcel gilding|metalwork', 'as/mobile-large/1974_267_204627.jpg', 2.39), - SearchData(1892, 8411, 'Teapot', 'teapot|porcelain|', 'ad/mobile-large/DT7709.jpg', 1.25), - SearchData(749, 49513, 'Horse', 'figure|earthenware with brown glazes|tomb pottery', 'as/mobile-large/150611.jpg', 0.77), - SearchData(1683, 42227, 'Water Jar', 'jar|porcelain with incised decoration under peachbloom glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-105.jpg', 1.33), - SearchData(1416, 42503, 'Bowl with Peonies, Narcissus, and Pomegranates', 'bowl|porcelain painted in cobalt blue under transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14609-037.jpg', 1.33), - SearchData(1805, 44108, 'Standing Buddha', 'figurine|amethystine quartz|hardstone', 'as/mobile-large/DP324368.jpg', 0.75), - SearchData(1716, 42211, 'Vase', 'vase|porcelain with black glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-096.jpg', 0.75), - SearchData(-2400, 72376, 'Ritual object (cong)', 'ritual object|jade (nephrite)|jade', 'as/mobile-large/DP161556.jpg', 0.75), - SearchData(1300, 42477, 'Bottle with Lotus Scroll', 'bottle|porcelain with incised decoration under celadon glaze (jingdezhen qingbai ware)|ceramics', 'as/mobile-large/DP342585.jpg', 0.75), - SearchData(1167, 49912, 'Pillow with Peonies', 'pillow|stoneware with sgraffito decoration (cizhou ware)|ceramics', 'as/mobile-large/DP-14610-020.jpg', 1.33), - SearchData(849, 44347, 'Circular box', 'box|earthenware with painted decoration under transparent glaze (changsha ware)|ceramics', 'as/mobile-large/1994_605_46_L35610.jpg', 1.20), - SearchData(1765, 52025, 'Water pot with dragons among clouds', 'water pot|porcelain painted in underglaze copper red (jingdezhen ware)|ceramics', 'as/mobile-large/14_40_90_O1.jpg', 1.40), - SearchData(1765, 46904, 'Saucer with Butterflies', 'saucer|porcelain painted with colored enamels and gilded (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14606-048.jpg', 1.33), - SearchData(1099, 36085, 'Bodhisattva', 'statue|wood (foxglove) with traces of pigment and gilding; single woodblock construction|sculpture', 'as/mobile-large/DP164027.jpg', 0.75), - SearchData(708, 42378, 'Covered jar', 'covered jar|earthenware with three-color (sancai) glaze|ceramics', 'as/mobile-large/1991_253_6.jpg', 0.83), - SearchData(1816, 51172, 'Bowl with floral medallions', 'bowl|porcelain with underglaze cobalt blue and overglaze enamels (jingdezhen ware)|ceramics', 'as/mobile-large/79_2_1033_S2_sf.jpg', 1.33), - SearchData(1749, 42205, 'Vase with Basket of Auspicious Flowers', 'vase|porcelain painted with colored enamels over transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-030.jpg', 0.75), - SearchData(710, 39640, 'Head of a Bodhisattva', 'head|sandstone with pigment|sculpture', 'as/mobile-large/DP170147.jpg', 0.75), - SearchData(-400, 49408, 'Halberd', 'halberd|bronze inlaid with copper, turquoise, and tenorite|metalwork', 'as/mobile-large/1985_214_29_238258.jpg', 1.65), - SearchData(716, 53958, 'Pillow', 'pillow|earthenware with three-color (sancai) glaze|ceramics', 'as/mobile-large/50_221_14.JPG', 1.14), - SearchData(1450, 75831, 'Jar with Winged Animals over Waves', 'jar|porcelain with cobalt blue under a transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP342694.jpg', 0.75), - SearchData(1765, 50750, 'Bowl with bitter melons and butterflies', 'bowl|porcelain painted with overglaze enamels (jingdezhen ware)|ceramics', 'as/mobile-large/182560.jpg', 1.33), - SearchData(700, 64898, 'Pillow', 'pillow|earthenware with marbled veneer and brown glaze|ceramics', 'as/mobile-large/DP158762.jpg', 1.33), - SearchData(1199, 73172, 'Tea Bowl with Marbleized Veneer', 'tea bowl|earthenware with glaze (cizhou ware)|ceramics', 'as/mobile-large/DP158779.jpg', 1.33), - SearchData(1700, 75262, 'Demon queller Zhong Kui with demons', 'scuplture|bamboo|bamboo', 'as/mobile-large/DP227777.jpg', 1.33), - SearchData(1717, 42229, 'Vase', 'vase|porcelain with peach-bloom glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP246426.jpg', 0.75), - SearchData(658, 56152, 'Woman with a hoe', 'figure|earthenware with pigment|tomb pottery', 'as/mobile-large/DP-17391-001.jpg', 0.75), - SearchData(1729, 653045, 'Pair of vases with decoration of dragons among clouds', 'vase|porcelain with incised decoration (anhua) under a transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP307599.jpg', 0.75), - SearchData(653, 54078, 'Female attendant', 'one of a pair of figures|earthenware with pigment|tomb pottery', 'as/mobile-large/DP702322.jpg', 0.72), - SearchData(1549, 39639, 'Wenchang, Stellar God of Literature', 'figure|ivory|ivories', 'as/mobile-large/DP318649.jpg', 0.75), - SearchData(1849, 44001, 'Belt hook with dragons', 'belt hook|jade (jadeite)|jade', 'as/mobile-large/DP321117.jpg', 0.75), - SearchData(1692, 76453, 'Brush holder with immortal realms', 'brush holder|bamboo|bamboo', 'as/mobile-large/DP323478.jpg', 0.75), - SearchData(1650, 52798, 'Jar with Mythical Qilin', 'jar|porcelain painted with colored enamels over transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14608-016.jpg', 0.75), - SearchData(749, 49514, 'Groom', 'figure|earthenware with three-color (sancai) glaze|ceramics', 'as/mobile-large/2000_662_8_L35766.JPG', 0.67), - SearchData(749, 49566, 'Box', 'box|silver with gilding|metalwork', 'as/mobile-large/1974_268_15ab.JPG', 2.14), - SearchData(1700, 42200, 'Vase with Butterflies', 'vase|porcelain painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-075.jpg', 0.75), - SearchData(1583, 42210, 'Pouring Vessel (Kendi) with Flowers and Fruits', 'kendi|porcelain painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14606-007.jpg', 0.75), - SearchData(949, 42449, 'Jar', 'jar|porcelain with incised decoration under transparent glaze (xing ware)|ceramics', 'as/mobile-large/DP-14610-030.jpg', 1.33), - SearchData(674, 49548, 'Resting dancer', 'figure|earthenware with pigment|tomb pottery', 'as/mobile-large/102458.jpg', 0.74), - SearchData(-950, 49499, 'Axe', 'axe|bronze|metalwork', 'as/mobile-large/1985_214_30_238213.jpg', 1.31), - SearchData(1749, 42209, 'Moon-Shaped Bottle', 'bottle|soft-paste porcelain with incised decoration under ivory glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-010.jpg', 0.75), - SearchData(750, 39901, 'Night-Shining White', 'handscroll|handscroll; ink on paper|paintings', 'as/mobile-large/DP153705.jpg', 1.33), - SearchData(1902, 41777, 'Ink Tablet with Black Stag Motif', 'ink tablet|black ink|ink', 'as/mobile-large/30_76_198_79233.jpg', 1.00), - SearchData(1616, 64897, 'Guardian, probably a Lokapala (Tian wang)', 'figure|gilt brass; lost-wax cast|sculpture', 'as/mobile-large/DP170251.jpg', 0.75), - SearchData(1765, 41336, 'Snuff bottle with European figures', 'snuff bottle|painted enamel on copper with gilt bronze stopper|snuff bottles', 'as/mobile-large/DP319215.jpg', 0.75), - SearchData(368, 42334, 'Handled Bowl', 'bowl|earthenware with green glaze|ceramics', 'as/mobile-large/239500.jpg', 1.34), - SearchData(1900, 69855, 'Woman\'s Robe with Peonies and Shou Medallions', 'woman\'s informal robe|tapestry-woven (kesi) silk and metallic thread|costumes-tapestries', 'as/mobile-large/137775.jpg', 0.99), - SearchData(1805, 39850, 'Boulder with three figures', 'boulder|soapstone|sculpture', 'as/mobile-large/DP324390.jpg', 0.75), - SearchData(1805, 42015, 'Scepter (ruyi) with gourds and vines', 'scepter|ivory with pigment|ivories', 'as/mobile-large/DP326740.jpg', 1.33), - SearchData(-350, 61328, 'Grain Serving Vessel (Dou)', 'grain vessel|bronze|metalwork', 'as/mobile-large/1985_214_12_238073.jpg', 1.09), - SearchData(350, 49534, 'Vessel in the Shape of a Tiger (Huzi)', 'vessel|porcelain with green glaze|ceramics', 'as/mobile-large/237219.jpg', 1.24), - SearchData(1516, 42529, 'Bowl with Lotuses', 'bowl|porcelain painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14609-166.jpg', 1.33), - SearchData(708, 52570, 'Box', 'box|earthenware with three-color (sancai) glaze|ceramics', 'as/mobile-large/26_292_49ab.JPG', 1.34), - SearchData(-950, 44779, 'Tiger', 'figurine|marble|sculpture', 'as/mobile-large/DP-22992-002.jpg', 1.33), - SearchData(1700, 42254, 'Jar with Landscape Scenes', 'jar with cover|porcelain covered with powdered blue glaze, painted with colored enamels over transparent glaze, and painted with gold (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-043.jpg', 0.75), - SearchData(1133, 42463, 'Bowl', 'bowl|porcelain with black glaze (ding ware)|ceramics', 'as/mobile-large/DP-14610-036.jpg', 1.33), - SearchData(-100, 55296, 'Ferrule', 'ferrule|bronze with silver inlay|metalwork', 'as/mobile-large/268306.jpg', 0.55), - SearchData(1700, 39617, 'Vase', 'vase|copper alloy|metalwork', 'as/mobile-large/DP324380.jpg', 0.75), - SearchData(1749, 42324, 'Vase in the shape of an archaic bronze vessel (gu)', 'vase|stoneware with relief decoration (yixing ware)|ceramics', 'as/mobile-large/DP323464.jpg', 0.75), - SearchData(1865, 5777, 'Pitcher', 'pitcher|porcelain, overglaze enamel decoration, and gilding|', 'ad/mobile-large/DP235025.jpg', 0.86), - SearchData(-900, 53953, 'Yoke Bell', 'yoke bell|bronze|metalwork', 'as/mobile-large/1986_232_1_240903.jpg', 0.45), - SearchData(1805, 42126, 'Miniature vase in the shape of an ancient ritual vessel (gu)', 'vase|jade (nephrite)|jade', 'as/mobile-large/DP307597.jpg', 0.75), - SearchData(1788, 42141, 'Brush holder with immortal realms', 'brush holder|jade (nephrite)|jade', 'as/mobile-large/49305.jpg', 0.81), - SearchData(1849, 43277, 'Twin Vases', 'vases|jade (nephrite)|jade', 'as/mobile-large/183484.jpg', 0.78), - SearchData(666, 42180, 'Set of decorative belt plaques', 'belt plaques|jade (nephrite)|jade', 'as/mobile-large/DP211541.jpg', 2.76), - SearchData(117, 49521, 'Watchtower with Four Archers', 'architectural model|earthenware with green lead glaze|tomb pottery', 'as/mobile-large/2000_662_4a-c.jpg', 0.54), - SearchData(1711, 50791, 'Brush Washer', 'brush washer|porcelain with clair de lune glazes|ceramics', 'as/mobile-large/DP-14605-167.jpg', 1.33), - SearchData(-1200, 49403, 'Axe', 'axe|bronze|metalwork', 'as/mobile-large/1976_49_207208.jpg', 0.66), - SearchData(1750, 42250, 'Vase with Flowers', 'vase|porcelain painted with colored enamels over transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-053.jpg', 0.75), - SearchData(1749, 43264, 'Vase in the shape of a magnolia', 'vase|jade (nephrite)|jade', 'as/mobile-large/183507.jpg', 0.72), - SearchData(930, 39649, 'Bowl with Dragons among Waves', 'bowl|stoneware with carved and incised decoration under celadon glaze (yue ware)|ceramics', 'as/mobile-large/DP356175.jpg', 1.33), - SearchData(1765, 40712, 'Vase with lions', 'vase|cloisonné enamel|cloisonné', 'as/mobile-large/DP242367.jpg', 0.75), - SearchData(1649, 39857, 'Cup with two dragons in waves', 'cup|rhinoceros horn|horn', 'as/mobile-large/DP318353.jpg', 1.33), - SearchData(1099, 49202, 'Mold for a Bowl', 'mold|stoneware with carved decoration (probably yaozhou ware)|ceramics', 'as/mobile-large/DP353255.jpg', 1.33), - SearchData(1716, 42199, 'Vase with Mythical Creature Chasing Pearl', 'vase|porcelain painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-066.jpg', 0.75), - SearchData(1649, 41874, 'Cup with grapes', 'cup|rhinoceros horn|horn', 'as/mobile-large/DP318307.jpg', 1.33), - SearchData(1775, 50519, 'Bowl', 'bowl|porcelain painted in underglaze blue|ceramics', 'as/mobile-large/1993_386_13_O1_sf.jpg', 1.33), - SearchData(1699, 42735, 'Long Side Table', 'table|wood (huanghuali or dalbergia odorifera)|furniture', 'as/mobile-large/1976_193_9_O2.jpg', 2.43), - SearchData(-98, 49529, 'Roof Tile End', 'roof tile end|earthenware|ceramics', 'as/mobile-large/39054.jpg', 1.04), - SearchData(1583, 42543, 'Dish with Dragon and Phoenix', 'dish|porcelain painted with cobalt blue under and colored enamels over transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14609-080.jpg', 1.33), - SearchData(1416, 42505, 'Flask with Medallion', 'flask|porcelain painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP342648.jpg', 0.75), - SearchData(1449, 42501, 'Plate with chrysanthemums and peonies', 'plate|porcelain painted with cobalt blue under a transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14609-028.jpg', 1.33), - SearchData(1749, 42216, 'Vase', 'vase|porcelain with blue glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-040.jpg', 0.75), - SearchData(-1150, 49511, 'Fitting', 'fitting|bronze inlaid with turquoise|metalwork', 'as/mobile-large/DT8149.jpg', 1.63), - SearchData(1424, 40765, 'Base for a mandala', 'base for a mandala|cloisonné enamel|cloisonné', 'as/mobile-large/DP229015.jpg', 1.33), - SearchData(1544, 42550, 'Vase', 'vase|porcelain painted in underglaze blue and overglaze yellow and red enamels|ceramics', 'as/mobile-large/DP-14609-180.jpg', 0.75), - SearchData(1749, 42226, 'Vase in Meiping Shape', 'vase|porcelain with celadon glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-155.jpg', 0.75), - SearchData(1749, 44292, 'Old Testament figures', 'figures|cloisonné|cloisonné', 'as/mobile-large/DT4165.jpg', 1.25), - SearchData(1749, 50562, 'Cup with design of waves', 'cup|porcelain painted with red enamel and incised decoration (jingdezhen ware)|ceramics', 'as/mobile-large/LC-1971_282-O1.jpg', 1.04), - SearchData(1650, 76452, 'Vase with Scene from The Story of the Blue Robe', 'vase|porcelain painted with cobalt blue under and colored enamels over transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP261017.jpg', 0.75), - SearchData(1416, 39666, 'Jar with Dragon', 'jar|porcelain painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DT5083.jpg', 0.80), - SearchData(1549, 42088, 'Shouxing, Stellar God of Immortality', 'figure|ivory|ivories', 'as/mobile-large/DP318638.jpg', 0.75), - SearchData(1805, 40770, 'Box in the shape of a flower', 'covered box|gilt, silver, cloisonné and painted enamels, semiprecious stones|metalwork', 'as/mobile-large/DP323432.jpg', 1.33), - SearchData(1729, 52026, 'Vase', 'vase|porcelain|ceramics', 'as/mobile-large/20871.jpg', 0.68), - SearchData(1883, 42223, 'Vase with Plum Blossoms and Birds', 'vase|porcelain painted with colored enamels on the biscuit (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-141.jpg', 0.75), - SearchData(683, 44802, 'Female musician', 'figure|earthenware with pigment|tomb pottery', 'as/mobile-large/185580.jpg', 0.83), - SearchData(117, 44324, 'Square Pen with Six Rams', 'architectural model|earthenware with green lead glaze|ceramics', 'as/mobile-large/272392.jpg', 1.27), - SearchData(1835, 49865, 'Bowl with imaginary composite flowers', 'bowl|porcelain painted with overglaze enamels (jingdezhen ware)|ceramics', 'as/mobile-large/DP109322.jpg', 1.29), - SearchData(1550, 42552, 'Bowl', 'bowl|porcelain with yellow glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14609-091.jpg', 1.33), - SearchData(1749, 44208, 'Washer with magic fungus (lingzhi)', 'washer|jade (nephrite)|jade', 'as/mobile-large/49260.jpg', 1.31), - SearchData(849, 42399, 'Bowl with bird', 'bowl|stoneware with painted decoration and yellow glaze (changsha ware)|ceramics', 'as/mobile-large/DP-14609-104.jpg', 1.33), - SearchData(1800, 42139, 'Brush washer in the shape of a plum blossom', 'brush washer|jade (nephrite)|jade', 'as/mobile-large/56676.jpg', 1.21), - SearchData(1765, 52937, 'Vase in the shape of an ancient ritual cup (zhi) (one of a pair)', 'vase|porcelain with clair de lune glaze (jingdezhen ware)|ceramics', 'as/mobile-large/24_80_273_O1.jpg', 1.32), - SearchData(749, 42723, 'Monk, probably Ananda (Anantuo)', 'figure|limestone with pigment|sculpture', 'as/mobile-large/DP170269.jpg', 0.75), - SearchData(1805, 60613, 'Bowl imitating realgar', 'bowl|opaque mottled red and yellow glass|glass', 'as/mobile-large/DP307780.jpg', 1.33), - SearchData(1765, 41531, 'Snuff bottle with boy flying a bird', 'snuff bottle|coral|snuff bottles', 'as/mobile-large/DP319219.jpg', 0.75), - SearchData(1583, 52978, 'Bottle with Coiling Dragon', 'bottle|porcelain with transparent glaze (dehua ware)|ceramics', 'as/mobile-large/DP-14606-004.jpg', 0.75), - SearchData(758, 52577, 'Dog', 'figure|earthenware with brown glaze|tomb pottery', 'as/mobile-large/11_7_4.JPG', 0.93), - SearchData(1833, 41637, 'Snuff bottle in the shape of an ear of corn', 'snuff bottle|porcelain with yellow glaze (jingdezhen ware) and amber stopper|snuff bottles', 'as/mobile-large/DP321915.jpg', 0.75), - SearchData(1805, 43244, 'Incense stick holder', 'incense stick holder|jade (nephrite)|jade', 'as/mobile-large/49261.jpg', 0.60), - SearchData(-100, 54006, 'Scabbard Chape', 'scabbard slide|jade (nephrite)|jade', 'as/mobile-large/1985_214_103.jpg', 0.97), - SearchData(1199, 52031, 'Bowl with Peonies', 'bowl|porcelain with mold-impressed decoration under ivory glaze (ding ware)|ceramics', 'as/mobile-large/DP342645.jpg', 1.33), - SearchData(749, 39559, 'Vase', 'vase|earthenware with black glaze|ceramics', 'as/mobile-large/DP158745.jpg', 0.73), - SearchData(1500, 49523, 'Head of Buddha', 'head|cast iron|sculpture', 'as/mobile-large/DP170192.jpg', 0.75), - SearchData(117, 49519, 'Central Watchtower', 'architectural model|earthenware with green lead glaze|tomb pottery', 'as/mobile-large/DP341913.jpg', 0.75), - SearchData(649, 49553, 'Amphora with dragon-shaped handles', 'amphora|stoneware with white glaze|ceramics', 'as/mobile-large/29_100_217.jpg', 0.64), - SearchData(-250, 49538, 'Scabbard Chape', 'scabbard chape|agate|hardstone', 'as/mobile-large/1985_214_105.JPG', 1.46), - SearchData(570, 42715, 'Head of a bodhisattva', 'head|limestone with pigment|sculpture', 'as/mobile-large/DP170268.jpg', 0.75), - SearchData(749, 42185, 'Cup with ring handle', 'cup|gilt bronze|metalwork', 'as/mobile-large/1974_274_1.JPG', 1.23), - SearchData(749, 75765, 'Seated court lady', 'figure|earthenware with tri-color (sancai) glaze|ceramics', 'as/mobile-large/DP227159.jpg', 0.75), - SearchData(-2500, 49371, 'Ritual Object (Bi)', 'ritual object|jade (nephrite)|jade', 'as/mobile-large/36902.jpg', 1.00), - SearchData(1698, 49156, 'The Kangxi Emperor\'s Southern Inspection Tour, Scroll Three: Ji\'nan to Mount Tai', 'handscroll|handscroll; ink and color on silk|paintings', 'as/mobile-large/DP105303_CRD.jpg', 2.19), - SearchData(1049, 44735, 'Dish with Scalloped Rim', 'dish|porcelain with ivory glaze (ding ware)|ceramics', 'as/mobile-large/DP342647.jpg', 1.33), - SearchData(1765, 42215, 'Vase in Shape of Archaic Bronze Vessel', 'vase|soft-paste porcelain (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-013.jpg', 0.75), - SearchData(1550, 42520, 'Bowl with Dragon', 'bowl|porcelain with incised decoration under and colored enamels over transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14609-171.jpg', 1.33), - SearchData(616, 42163, 'Buddha, probably Amitabha', 'figure|dry lacquer with polychrome pigment and gilding|sculpture', 'as/mobile-large/DP-15581-004.jpg', 0.90), - SearchData(1199, 50234, 'Bowl', 'bowl|porcelaneous ware with relief decoration under celadon glaze (longquan ware)|ceramics', 'as/mobile-large/34_113_8_O.jpg', 1.32), - SearchData(1505, 76550, 'Dish with mandarin ducks and lotuses', 'dish|cloisonné enamel|cloisonné', 'as/mobile-large/2011_111_O1.jpg', 1.33), - SearchData(1749, 42125, 'Miniature mountains representing the mythical realm Penglai', 'figurines|emerald|hardstone', 'as/mobile-large/DP257921.jpg', 1.33), - SearchData(-149, 42178, 'Female Dancer', 'figure|earthenware with slip and pigment|tomb pottery', 'as/mobile-large/DT206.jpg', 0.80), - SearchData(1066, 42474, 'Vase with Peony Scroll', 'vase|stoneware with white and black slip and cut decoration under transparent glaze (cizhou ware)|ceramics', 'as/mobile-large/DP-14610-001.jpg', 0.75), - SearchData(1113, 39936, 'Finches and bamboo', 'handscroll|handscroll; ink and color on silk|paintings', 'as/mobile-large/DP151504_CRD.jpg', 1.85), - SearchData(1805, 44176, 'Dish in the shape of a peach', 'dish|malachite|hardstone', 'as/mobile-large/DP240798.jpg', 1.33), - SearchData(-2150, 36441, 'Ritual Axe', 'ritual axe|jade (nephrite)|jade', 'as/mobile-large/1991_250.JPG', 1.46), - SearchData(1716, 42203, 'Vase with Flowers and Scholar’s Implements', 'vase|porcelain covered with powdered blue glaze and painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-146.jpg', 0.75), - SearchData(117, 49518, 'Stove', 'stove model|earthenware with green lead glaze|ceramics', 'as/mobile-large/186582.jpg', 0.80), - SearchData(1649, 76769, 'Buddhist monk Bodhidharma (Chinese: Damo)', 'figurine|rhinoceros horn|horn', 'as/mobile-large/DP253234.jpg', 0.75), - SearchData(1516, 50021, 'Dish with Dragons and Lotuses', 'dish|porcelain painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14609-164.jpg', 1.33), - SearchData(1349, 42487, 'Stem Cup with Chrysanthemum Scroll', 'stem cup|porcelain with molded decoration under transparent glaze (jingdezhen shufu ware)|ceramics', 'as/mobile-large/DP222087.jpg', 0.75), - SearchData(574, 42702, 'Standing bodhisattva', 'headless figure|limestone with traces of pigment|sculpture', 'as/mobile-large/DP170182.jpg', 0.75), - SearchData(1449, 72420, 'Jug with Floral Scroll', 'jug|porcelain painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP342532.jpg', 1.33), - SearchData(1849, 60682, 'Boy with leaves and box', 'figure|horn|horn', 'as/mobile-large/DP321123.jpg', 1.33), - SearchData(1833, 42238, 'Vase', 'vase|porcelain with yellow glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-087.jpg', 0.75), - SearchData(1800, 42234, 'Vase in Meiping Shape', 'vase|porcelain with coral-red glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-007.jpg', 0.75), - SearchData(1775, 50521, 'Bowl', 'bowl|porcelain painted in underglaze blue and overglaze polychrome enamels|ceramics', 'as/mobile-large/1993_386_11_O2_sf.jpg', 1.33), - SearchData(1716, 42252, 'Bowl', 'bowl|porcelain with rose-enameled glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-001.jpg', 1.33), - SearchData(1029, 42438, 'Funerary jar', 'urn|stoneware with incised and carved decoration under celadon glaze (longquan ware)|ceramics', 'as/mobile-large/DP335590.jpg', 0.81), - SearchData(1683, 42246, 'Vase', 'vase|porcelain with celadon glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-109.jpg', 0.75), - SearchData(-800, 49437, 'Spoon (Bi)', 'spoon|bronze|metalwork', 'as/mobile-large/DP151384.jpg', 0.75), - SearchData(1765, 60920, 'One of a pair of boxes with elephants', 'box with cover|carved red lacquer|lacquer', 'as/mobile-large/LC-13_100_144ab-001.jpg', 1.20), - SearchData(658, 56155, 'Man carrying a bag', 'figure|earthenware with pigment|tomb pottery', 'as/mobile-large/2000_349_4_O.jpg', 0.56), - SearchData(300, 44303, 'Set of Ten Belt Plaques', 'belt plaques|gilt bronze|metalwork', 'as/mobile-large/1994_605_2a-k_L35982.jpg', 1.56), - SearchData(1000, 42725, 'Bodhisattva Avalokiteshvara (Guanyin)', 'figure|wood (foxglove) with pigments, gilding, quartz and carnelian; single woodblock construction|sculpture', 'as/mobile-large/DP163998.jpg', 0.75), - SearchData(749, 49559, 'Covered jar', 'jar|earthenware with dappled black glaze|ceramics', 'as/mobile-large/267835.jpg', 0.75), - SearchData(1694, 52048, 'Vase', 'vase|porcelain with peach-bloom glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-115.jpg', 0.75), - SearchData(1683, 42245, 'Vase', 'vase|porcelain with moonlight glaze (jingdezhen ware); tiffany stand|ceramics', 'as/mobile-large/DP-14605-112.jpg', 0.75), - SearchData(1413, 57612, 'Bodhisattva Manjushri as Tikshna-Manjushri (Minjie Wenshu)', 'figure|gilt brass; lost-wax casting|sculpture', 'as/mobile-large/DP164061.jpg', 0.75), - SearchData(1733, 52056, 'Vase with Coiling Dragon', 'vase|porcelain with peach-bloom glaze (jingdezhen ware); western mount|ceramics', 'as/mobile-large/DP-14606-001.jpg', 0.75), - SearchData(1805, 43289, 'Tray with magic fungus (lingzhi)', 'tray|jade (nephrite)|jade', 'as/mobile-large/184066.jpg', 1.26), - SearchData(1749, 42207, 'Jar with Basket of Auspicious Flowers', 'jar|porcelain painted with colored enamels over transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-025.jpg', 0.75), - SearchData(117, 49522, 'Circular Ram Pen with Rider', 'architectural model|earthenware with green lead glaze|ceramics', 'as/mobile-large/2000_662_5_L35685.jpg', 1.06), - SearchData(1692, 48616, 'Bottle with Lion', 'bottle|porcelain painted with colored enamels over transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-163.jpg', 0.75), - SearchData(1765, 60919, 'One of a pair of boxes with elephants', 'box with cover|carved red lacquer|lacquer', 'as/mobile-large/LC-13_100_143ab-003.jpg', 1.38), - SearchData(1199, 42470, 'Pillow with Character Reading Zhen (Pillow)', 'pillow|stoneware with splashed glaze (jun ware)|ceramics', 'as/mobile-large/DP-14609-140.jpg', 1.33), - SearchData(1808, 51176, 'Bowl with decorative medallions', 'bowl|porcelain painted with overglaze enamels (jingdezhen ware)|ceramics', 'as/mobile-large/DP307774.jpg', 1.33), - SearchData(749, 42184, 'Scissors', 'scissors|silver with parcel gilding|metalwork', 'as/mobile-large/1974_268_13.JPG', 3.30), - SearchData(475, 42711, 'Bodhisattva (Maitreya) with crossed ankles', 'figure|sandstone with traces of pigment|sculpture', 'as/mobile-large/DP170134.jpg', 0.75), - SearchData(1750, 48649, 'Jar with Flowers', 'jar|porcelain painted with colored enamels over transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-057.jpg', 0.75), - SearchData(1849, 41514, 'Snuff bottle with design of coins', 'snuff bottle|glass|snuff bottles', 'as/mobile-large/DP319222.jpg', 0.75), - SearchData(1765, 43967, 'Vessel in the shape of a chrysanthemum', 'vessel|jade (nephrite)|jade', 'as/mobile-large/DP324367.jpg', 1.33), - SearchData(-1016, 42174, 'Ritual Wine Cup (Zhi)', 'wine cup|bronze|metalwork', 'as/mobile-large/DP219870.jpg', 0.75), - SearchData(-98, 44333, 'Tripod Cauldron (Ding)', 'cauldron|earthenware with pigment|ceramics', 'as/mobile-large/1994_605_32ab_268197.jpg', 1.02), - SearchData(-800, 49436, 'Spoon (Bi)', 'spoon|bronze|metalwork', 'as/mobile-large/DP151383.jpg', 0.75), - SearchData(1765, 42206, 'Vase with Basket of Auspicious Flowers', 'vase|porcelain painted with colored enamels over transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-035.jpg', 0.75), - SearchData(749, 49565, 'Box', 'box|silver with parcel gilding|metalwork', 'as/mobile-large/1974_268_14.JPG', 2.17), - SearchData(724, 49556, 'Tripod cup with ring handle (bei)', 'cup|earthenware with marblized body and brown glaze|ceramics', 'as/mobile-large/50_221_15.JPG', 1.47), - SearchData(1692, 52035, 'Vase', 'vase|porcelain painted in famille verte enamels|ceramics', 'as/mobile-large/23478.jpg', 1.09), - SearchData(1749, 50898, 'Gourd-Shaped Bottle (one of a pair)', 'bottle|porcelain with celadon glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14609-121.jpg', 0.75), - SearchData(699, 42380, 'Rhyton in the shape of a bird', 'rhyton|earthenware with three-color (sancai) glaze|ceramics', 'as/mobile-large/202348.jpg', 1.14), - SearchData(762, 73218, 'Seated Musician', 'figure|white marble|sculpture', 'as/mobile-large/DP140157.jpg', 0.70), - SearchData(700, 42183, 'Dish in the shape of a leaf', 'dish|silver with parcel gilding|metalwork', 'as/mobile-large/DP100673.jpg', 1.32), - SearchData(1416, 49220, 'Dish', 'dish|porcelain with copper oxide glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14609-132.jpg', 1.33), - SearchData(1805, 39851, 'Ornament in the form of a mountain with figures', 'relief|soapstone|sculpture', 'as/mobile-large/DP324395.jpg', 0.75), - SearchData(112, 44313, 'Mirror with animals of the four directions and other mythical creatures', 'mirror|bronze|mirrors', 'as/mobile-large/1994.605.12.jpg', 1.33), - SearchData(-1150, 49504, 'Finial', 'finial|bronze|metalwork', 'as/mobile-large/1985_214_38_238462.jpg', 0.52), - SearchData(1583, 65599, 'Elephant-Shaped Kendi Drinking Vessel', 'vessel|porcelain painted in underglaze blue|ceramics', 'as/mobile-large/DP274936.jpg', 0.75), - SearchData(399, 64920, 'Ornamental Plaque', 'plaque|gilt bronze, gold, lapis lazuli, turquoise, and white coral|metalwork', 'as/mobile-large/DP290762.jpg', 1.33), - SearchData(1692, 52033, 'Covered Jar', 'covered jar|porcelain painted in famille verte enamels|ceramics', 'as/mobile-large/20713.jpg', 0.74), - SearchData(1700, 49353, 'European Sitting on a Lion', 'figure|porcelain with colored glazes and vermilion pigment on the biscuit (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14606-033.jpg', 1.33), - SearchData(850, 42395, 'Ewer with dancing figures', 'ewer|stoneware with white slip, pigment, and applied decoration under straw glaze (changsha ware)|ceramics', 'as/mobile-large/DP-14609-047.jpg', 1.33), - SearchData(658, 56153, 'Man with a shovel', 'figure|earthenware with pigment|tomb pottery', 'as/mobile-large/DP-17413-001.jpg', 0.75), - SearchData(1282, 61658, 'Bodhisattva Avalokiteshvara (Guanyin)', 'figure|wood (wiillow) with traces of pigment; single woodblock construction|sculpture', 'as/mobile-large/DP223478.jpg', 0.75), - SearchData(1749, 41918, 'Boy with water buffalo', 'figurine|jade (nephrite)|jade', 'as/mobile-large/DT257389.jpg', 1.26), - SearchData(1124, 42465, 'Bowl', 'bowl|stoneware with blue glaze (jun ware)|ceramics', 'as/mobile-large/DP342538.jpg', 1.33), - SearchData(1692, 48665, 'Vase', 'vase|porcelain with ox-blood glaze|ceramics', 'as/mobile-large/20946.jpg', 0.52), - SearchData(-900, 44308, 'Dagger-Axe', 'dagger-axe|bronze|metalwork', 'as/mobile-large/1994_605_7_L35710.jpg', 1.57), - SearchData(574, 44795, 'Camel', 'figure|earthenware with traces of pigment|tomb pottery', 'as/mobile-large/DT4914.jpg', 0.80), - SearchData(1600, 41482, 'Folding Fan with Fishing Net Decoration', 'folding fan|folding fan; ink on gold-flecked paper and gold-flecked lacquered bamboo fan bones and end pieces|paintings', 'as/mobile-large/1988_212.JPG', 1.22), - SearchData(949, 42434, 'Ewer with Parrots', 'ewer|stoneware with incised decoration under celadon glaze (yue ware)|ceramics', 'as/mobile-large/DP-14609-032.jpg', 0.75), - SearchData(1649, 78434, 'Buddhist disciple, or luohan, holding a peach', 'figure|soapstone|sculpture', 'as/mobile-large/DP326722.jpg', 0.75), - SearchData(1833, 41879, 'Cup with Eight Daoist Immortals', 'cup|rhinoceros horn|horn', 'as/mobile-large/DP318310.jpg', 1.33), - SearchData(-50, 49539, 'Covered Jar (Hu)', 'covered jar|earthenware with painted decoration|tomb pottery', 'as/mobile-large/DP341151.jpg', 0.75), - SearchData(1835, 41321, 'Snuff bottle with boys at play', 'snuff bottle|porcelain painted with underglaze cobalt blue and overglaze enamels (jingdezhen ware) with coral and metal stopper|snuff bottles', 'as/mobile-large/DP319203.jpg', 0.75), - SearchData(7, 58942, 'Pole Base in the Form of a Tiger', 'pole base|steatite|sculpture', 'as/mobile-large/DP158753.jpg', 1.33), - SearchData(249, 44390, 'Ladle with handle in the shape of a dragon\'s head', 'ladle|gilt bronze|metalwork', 'as/mobile-large/DP219351.jpg', 1.33), - SearchData(1765, 52968, 'Bowl with floral sprays', 'bowl|porcelain painted with overglaze enamels (jingdezhen ware)|ceramics', 'as/mobile-large/49_37_145289.jpg', 1.16), - SearchData(1649, 42242, 'Vase in Meiping Shape', 'vase|porcelain with incised decoration under yellow glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-089.jpg', 0.75), - SearchData(7, 61524, 'Tally in the shape of a tiger (Hu fu)', 'tally|gilt bronze|sculpture', 'as/mobile-large/18_43_7_O1.jpg', 1.83), - SearchData(758, 52576, 'Dog', 'figure|earthenware with brown glaze|tomb pottery', 'as/mobile-large/11_7_3.JPG', 0.89), - SearchData(122, 49532, 'Model of Wellhead with Bucket', 'wellhead model|earthenware with green lead glaze|tomb pottery', 'as/mobile-large/2000_662_12ab_L35951.JPG', 0.74), - SearchData(1600, 40747, 'Panel with Dragons', 'panel|cloisonné enamel|cloisonné', 'as/mobile-large/29_110_94_74185.jpg', 1.37), - SearchData(1849, 44277, 'Bowl with archaic design', 'bowl|jade (nephrite)|jade', 'as/mobile-large/49217.jpg', 1.18), - SearchData(1765, 46905, 'Cup with Butterflies', 'cup|porcelain painted with colored enamels and gilded (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14606-044.jpg', 1.33), - SearchData(117, 44322, 'Animal Pen with Figures', 'architectural model|earthenware with green lead glaze|ceramics', 'as/mobile-large/DT3800.jpg', 1.21), - SearchData(-49, 49900, 'Jar', 'jar|earthenware with green glaze|ceramics', 'as/mobile-large/240389.jpg', 1.04), - SearchData(1749, 39844, 'Boy with water buffalo', 'figure|jade (nephrite)|jade', 'as/mobile-large/DP318968.jpg', 1.33), - SearchData(1765, 41333, 'Snuff bottle in imitation of painted enamel metalwork', 'snuff bottle|porcelain painted with overglaze enamels (jingdezhen ware)|snuff bottles', 'as/mobile-large/DP319212.jpg', 0.75), - SearchData(649, 73219, 'Covered jar', 'covered jar|earthenware with blue glaze|ceramics', 'as/mobile-large/DP145863.jpg', 1.00), - SearchData(1350, 40211, 'Dish with long-tailed birds and hibiscuses', 'dish|carved red lacquer|lacquer', 'as/mobile-large/DT2677.jpg', 1.26), - SearchData(1650, 39868, 'Dish with pine trees', 'dish|bamboo|bamboo', 'as/mobile-large/DP323470.jpg', 1.33), - SearchData(649, 44346, 'Bowl', 'bowl|porcelain with white glaze|ceramics', 'as/mobile-large/DP342524.jpg', 1.33), - SearchData(1749, 42121, 'Cup with figures in a landscape', 'cup|rhinoceros horn|horn', 'as/mobile-large/DP318308.jpg', 1.33), - SearchData(1466, 42509, 'Dish with Blossoming Plum and Crescent Moon', 'dish|porcelain painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14609-102.jpg', 1.33), - SearchData(1765, 52938, 'Vase in the shape of an ancient ritual cup (zhi) (one of a pair)', 'vase|porcelain with clair de lune glaze (jingdezhen ware)|ceramics', 'as/mobile-large/24_80_274_O1.jpg', 1.32), - SearchData(1419, 42012, 'Seal with mantra in Vartu script', 'seal|ivory, turquoise, and iron damascened with gold|ivories', 'as/mobile-large/DP318643.jpg', 0.75), - SearchData(1683, 46094, 'Vase with landscape scenes', 'vase|porcelain painted under the glaze with cobalt blue (jiangxi province; jingdezhen ware)|ceramics', 'as/mobile-large/23525.jpg', 0.75), - SearchData(1416, 52713, 'Altar Bowl with Fish', 'bowl|porcelain painted in copper red under transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14609-082.jpg', 0.75), - SearchData(1805, 44118, 'Figure of a cicada', 'figure|smoky quartz|hardstone', 'as/mobile-large/DP323427.jpg', 1.33), - SearchData(749, 49368, 'Camel', 'figure|earthenware with three-color (sancai) glaze|tomb pottery', 'as/mobile-large/67_43_1.JPG', 0.70), - SearchData(749, 42182, 'Octagonal cup with ring handle', 'cup|silver with parcel gilding|metalwork', 'as/mobile-large/1985_214_17_238110.jpg', 1.24), - SearchData(1350, 39638, 'Plate with Carp', 'plate|porcelain painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14609-052.jpg', 1.33), - SearchData(1550, 42549, 'Jar with carp in lotus pond', 'jar|porcelain painted in underglaze cobalt blue and overglaze polychrome enamels (jingdezhen ware)|ceramics', 'as/mobile-large/DP342697.jpg', 0.75), - SearchData(1849, 41201, 'Snuff bottle', 'snuff bottle|jade (jadeite)|snuff bottles', 'as/mobile-large/DP319176.jpg', 0.75), - SearchData(1334, 40256, 'Dish with Flowering Plum and Birds', 'dish|black lacquer with mother-of-pearl inlay|lacquer', 'as/mobile-large/DP222095.jpg', 0.75), - SearchData(7, 44334, 'Covered Bowl (He)', 'bowl|earthenware with pigment|ceramics', 'as/mobile-large/268198.jpg', 0.93), - SearchData(1199, 48121, 'Tea bowl with decoration of six-petaled flowers', 'bowl|stoneware with black and brown glazes and paper-cut designs (jizhou ware)|ceramics', 'as/mobile-large/DP342686.jpg', 1.33), - SearchData(290, 44733, 'Funerary Urn (Hunping)', 'funerary urn|stoneware with olive green glaze (yue ware)|ceramics', 'as/mobile-large/DT5080.jpg', 0.78), - SearchData(1749, 62039, 'Lion and cubs', 'figurine|jade (nephrite)|jade', 'as/mobile-large/183844.jpg', 1.17), - SearchData(1600, 56356, 'Wardrobe', 'wardrobe|wood with inlay of mother-of-pearl, amber, glass, ivory, and other materials|furniture', 'as/mobile-large/DP205480.jpg', 0.75), - SearchData(-1000, 49506, 'Fitting in the Shape of a Bird', 'fitting|bronze|metalwork', 'as/mobile-large/DP167769.jpg', 1.33), - SearchData(1513, 42522, 'Jar with Dragon', 'jar|porcelain with incised decoration under colored glazes|ceramics', 'as/mobile-large/DP-14609-095.jpg', 1.33), - SearchData(1499, 42511, 'Jar with Scrolling Vine and Gourds', 'jar|porcelain painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP225475.jpg', 1.33), - SearchData(-550, 61041, 'Grain Serving Vessel (Dui)', 'grain vessel|bronze|metalwork', 'as/mobile-large/DP155209.jpg', 1.33), - SearchData(1099, 51076, 'Tea Bowl with Hare’s-Fur Decoration', 'bowl|stoneware with copper-oxide glaze (jian ware)|ceramics', 'as/mobile-large/DP295375.jpg', 1.33), - SearchData(572, 64921, 'Jar with floral decorations and musicians', 'jar|stoneware with applied decoration under celadon glaze|ceramics', 'as/mobile-large/DP-14609-056.jpg', 0.75), - SearchData(1600, 40505, 'Medallion with return from a spring outing', 'medallion|ivory|ivories', 'as/mobile-large/DT7032.jpg', 1.25), - SearchData(1099, 42468, 'Jar', 'jar|stoneware with splashed glaze (jun ware)|ceramics', 'as/mobile-large/DP-14609-160.jpg', 1.33), - SearchData(1749, 41996, 'Arhat', 'figure|ivory|ivories', 'as/mobile-large/DP-15968-045.jpg', 0.75), - SearchData(1299, 51075, 'Tea Bowl with “Tortoiseshell” Design', 'bowl|stoneware with iron glaze splashed with wood-ash solution (jizhou ware)|ceramics', 'as/mobile-large/DP-14610-058.jpg', 1.33), - SearchData(1350, 49920, 'Vase with Peony Scrolls', 'vase|porcelain with molded decoration under celadon glaze (longquan ware)|ceramics', 'as/mobile-large/DP-14609-141.jpg', 0.75), - SearchData(1700, 42204, 'Vase with Flowering Plants and Birds', 'vase|porcelain painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-070.jpg', 0.75), - SearchData(566, 49544, 'Seated Falconer', 'one of a pair of figures|earthenware with red and white pigments|tomb pottery', 'as/mobile-large/DP702293.jpg', 0.90), - SearchData(749, 52565, 'Horse and boy', 'figure|earthenware with three-color (sancai) glaze|ceramics', 'as/mobile-large/50_221_2.JPG', 0.99), - SearchData(1849, 42237, 'Vase', 'vase|porcelain with coral red glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-017.jpg', 0.75), - SearchData(683, 39524, 'Amphora', 'ewer|earthenware with three-color (sancai) glaze|ceramics', 'as/mobile-large/DP222014.jpg', 0.75), - SearchData(1692, 40754, 'Herdboy with Water Buffalo', 'group|cloisonné, gilded bronze|cloisonné', 'as/mobile-large/LC-30_128_2ab_001.jpg', 1.50), - SearchData(1800, 646726, 'Bowl in the shape of a lotus leaf', 'bowl|yellow glass with carved and incised decoration|glass', 'as/mobile-large/DP702964.jpg', 1.33), - SearchData(1149, 50235, 'Vase', 'vase|stoneware with crackled glaze (longquan ware)|ceramics', 'as/mobile-large/DP335583.jpg', 0.92), - SearchData(1550, 64484, 'Bowl with children in a garden', 'bowl|porcelain painted in underglaze cobalt blue (jingdezhen ware)|ceramics', 'as/mobile-large/DP154006.jpg', 1.33), - SearchData(1749, 39847, 'Cup with two feline dragons', 'cup|jade (nephrite)|jade', 'as/mobile-large/DP318971.jpg', 1.33), - SearchData(1849, 41352, 'Snuff bottle with boys at play', 'snuff bottle|porcelain painted with underglaze cobalt blue (jingdezhen ware)|snuff bottles', 'as/mobile-large/DP293330.jpg', 0.75), - SearchData(1080, 39668, 'Old Trees, Level Distance', 'handscroll|handscroll; ink and color on silk|paintings', 'as/mobile-large/DP167812_CRD.jpg', 1.88), - SearchData(1699, 42736, 'Altar coffer', 'altar coffer|wood (huanghuli or dalbergia odorifera)|furniture', 'as/mobile-large/1976_344.JPG', 1.44), - SearchData(1099, 49204, 'Ewer with Phoenixes', 'ewer|stoneware with incised and carved decoration under celadon glaze (yaozhou ware)|ceramics', 'as/mobile-large/DT11750.jpg', 0.80), - SearchData(683, 44803, 'Female musician', 'figure|earthenware with pigment|tomb pottery', 'as/mobile-large/23_180_6.jpg', 0.64), - SearchData(1903, 19897, 'Vase', 'vase|earthenware|', 'ad/mobile-large/L.2009.22.168.jpg', 1.32), - SearchData(-100, 49901, 'Cocoon-Shaped Vessel', 'vessel|earthenware with incised decoration and burnishing|ceramics', 'as/mobile-large/DT8729.jpg', 1.25), - SearchData(749, 49584, 'Hair Ornament', 'hair ornament|gold inlaid with turquoise|jewelry', 'as/mobile-large/31_54_1.JPG', 0.41), - SearchData(1733, 42201, 'Vase with Scholars in Landscape', 'vase|porcelain painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-091.jpg', 0.75), - SearchData(-1150, 53954, 'Implement with Curved Blade', 'implement|bronze|metalwork', 'as/mobile-large/DP219140.jpg', 0.75), - SearchData(1000, 42722, 'Arhat (Luohan)', 'figure|stoneware with three-color glaze|sculpture', 'as/mobile-large/DP163962.jpg', 0.75), - SearchData(1805, 42137, 'Fantastic animal carrying books', 'figurine|jade (nephrite)|jade', 'as/mobile-large/24_80_139_O1_sf.jpg', 1.50), - SearchData(486, 42733, 'Buddha Maitreya (Mile)', 'figure|gilt bronze with traces of pigment; piece-mold cast|sculpture', 'as/mobile-large/DP170102.jpg', 0.75), - SearchData(1805, 43214, 'Cup and saucer', 'cup and saucer|jade (nephrite)|jade', 'as/mobile-large/183836.jpg', 1.24), - SearchData(725, 53957, 'Box', 'box|earthenware with three-color (sancai) glaze|ceramics', 'as/mobile-large/50_221_13ab.JPG', 1.31), - SearchData(1550, 54245, 'Bodhisattva Avalokiteshvara of the Lion\'s Roar, or Simhanada Avalokiteshvara (Shi Hou Guanyin)', 'figure|wood (poplar) with pigment; single-woodblock construction|sculpture', 'as/mobile-large/DP170241.jpg', 0.75), - SearchData(949, 44351, 'Comb top', 'comb top|jade (nephrite)|jade', 'as/mobile-large/L35682.jpg', 1.38), - SearchData(683, 44804, 'Female musician with harp', 'figure|earthenware with pigment|tomb pottery', 'as/mobile-large/185582.jpg', 0.80), - SearchData(1750, 42251, 'Vase with Flowers', 'vase|porcelain painted with colored enamels over transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-049.jpg', 0.75), - SearchData(649, 65100, 'Standing attendant', 'figure|earthenware with pigment|sculpture', 'as/mobile-large/2002_501.JPG', 0.64), - SearchData(1150, 40055, 'Emperor Xuanzong\'s Flight to Shu', 'hanging scroll|hanging scroll; ink, color, and gold on silk|paintings', 'as/mobile-large/DP247676.jpg', 1.33), - SearchData(566, 49543, 'Camel and Rider', 'figures|earthenware with pigment|tomb pottery', 'as/mobile-large/DP702303.jpg', 0.98), - SearchData(-2200, 49139, 'Vase (Hu)', 'vase|burnished earthenware|ceramics', 'as/mobile-large/202507.jpg', 0.83), - SearchData(653, 54077, 'Female attendant', 'one of a pair of figures|earthenware with pigment|tomb pottery', 'as/mobile-large/DP702324.jpg', 0.72), - SearchData(1849, 41897, 'Boy with leaves and box', 'figure|horn|horn', 'as/mobile-large/DP321099.jpg', 1.33), - SearchData(-98, 44399, 'Roof-Tile End with Auspicious Inscription', 'tile|earthenware|ceramics', 'as/mobile-large/1994_605_99.JPG', 1.02), - SearchData(1099, 49914, 'Vase', 'vase|porcelain with celadon glaze (jingdezhen qingbai ware)|ceramics', 'as/mobile-large/DP-15944-039.jpg', 0.75), - SearchData(1416, 39880, 'Finial for a Buddhist staff (khatvanga)', 'finial|ivory|ivories', 'as/mobile-large/DP318675.jpg', 0.75), - SearchData(-2549, 49379, 'Tripod Vessel (Gui)', 'vessel|earthenware|ceramics', 'as/mobile-large/DP-12552-001.jpg', 0.67), - SearchData(1591, 48948, 'The Sixteen Luohans', 'handscroll|handscroll; ink and color on paper|paintings', 'as/mobile-large/DP153754.jpg', 1.44), - SearchData(849, 42400, 'Flask', 'flask|stoneware with splashed glaze (jun ware)|ceramics', 'as/mobile-large/DP-14609-022.jpg', 0.75), - SearchData(1616, 41877, 'Cup in the shape of a magnolia blossom', 'cup|rhinoceros horn|horn', 'as/mobile-large/DP318319.jpg', 0.75), - SearchData(1295, 40081, 'Wang Xizhi watching geese', 'handscroll|handscroll; ink, color, and gold on paper|paintings', 'as/mobile-large/DP273822.jpg', 0.75), - SearchData(100, 44396, 'Pig in Recumbent Position', 'figure|jade (nephrite)|jade', 'as/mobile-large/DP-17989-049.jpg', 1.33), - SearchData(117, 52010, 'Granary Tower', 'model of farm building|earthenware with green lead glaze|ceramics', 'as/mobile-large/18736.jpg', 0.79), - SearchData(1600, 42190, 'Vase in Meiping Shape with Phoenix', 'vase|porcelain painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP271348.jpg', 0.75), - SearchData(1099, 49207, 'Vase with abstract scroll decoration', 'vase|stoneware with sgraffito decoration (cizhou ware)|ceramics', 'as/mobile-large/DP-14610-053.jpg', 0.75), - SearchData(7, 44335, 'Goblet (one of a pair)', 'goblet|earthenware with pigment|ceramics', 'as/mobile-large/268196.jpg', 1.38), - SearchData(1849, 51142, 'Vase in Meiping Shape', 'vase|porcelain with iron-red glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-175.jpg', 0.75), - SearchData(-500, 49407, 'Halberd', 'halberd|bronze inlaid with silver|metalwork', 'as/mobile-large/1985_214_28_238257.jpg', 1.55), - SearchData(1350, 49216, 'Bottle with Peony Scroll', 'bottle|porcelain painted with cobalt blue under a transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP274702.jpg', 0.75), - SearchData(1700, 42403, 'Vase in Shape of Archaic Bronze Vessel with Flowers and Birds', 'vase|porcelain painted with colored enamels over transparent glaze and gilded (jingdezhen ware)|ceramics', 'as/mobile-large/DT218.jpg', 0.80), - SearchData(683, 44801, 'Female musician with lute', 'figure|earthenware with pigment|tomb pottery', 'as/mobile-large/DP337805.jpg', 0.75), - SearchData(1550, 50022, 'Dish with Rock, Peonies, Chrysanthemums, and Fungus', 'dish|porcelain painted with colored enamels over transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14609-001.jpg', 1.33), - SearchData(749, 49587, 'Mirror with Grapes and Fantastic Sea Animals', 'mirror|bronze|mirrors', 'as/mobile-large/25_82_8_59801.JPG', 0.85), - SearchData(7, 52527, 'Well Head', 'wellhead|pottery|ceramics', 'as/mobile-large/67822.jpg', 0.78), - SearchData(122, 72544, 'Comb', 'comb|jade (nephrite) and gold|jade', 'as/mobile-large/DP116267.jpg', 1.21), - SearchData(1506, 61826, 'Seated Lion (one of a pair)', 'statue|marble|sculpture', 'as/mobile-large/1979_457_2_F.JPG', 0.80), - SearchData(749, 50664, 'Rhyton with handle in the shape of a monkey', 'rhyton|earthenware with brown glaze|ceramics', 'as/mobile-large/1985_208_5.JPG', 1.63), - SearchData(1516, 42528, 'Brush Rest with Persian Inscription', 'brush rest|porcelain painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14156-003.jpg', 1.33), - SearchData(1692, 49349, 'Brush Washer', 'brush washer|porcelain with peachbloom glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP326725.jpg', 1.33), - SearchData(1765, 42317, 'Vase with Nine Peaches', 'vase|porcelain painted with colored enamels over transparent glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP249036.jpg', 0.75), - SearchData(658, 49552, 'Foreign dancer', 'figure|earthenware with pigment|tomb pottery', 'as/mobile-large/226505.jpg', 0.71), - SearchData(1729, 52028, 'Vase with decoration of dragons among clouds (one of a pair)', 'vase|porcelain with incised decoration (anhua) under glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP307599.jpg', 0.75), - SearchData(1749, 41882, 'Cup depicting Three Laughers of Tiger Ravine', 'cup|rhinoceros horn|horn', 'as/mobile-large/DP318336.jpg', 0.75), - SearchData(1099, 52652, 'Plate', 'plate|pottery (jun ware, possibly guan ware)|ceramics', 'as/mobile-large/DP-14609-137.jpg', 1.33), - SearchData(1893, 20735, 'Vase', 'vase|porcelain|', 'ad/mobile-large/DP253316.jpg', 0.71), - SearchData(117, 44323, 'Goat Pen', 'architectural model|earthenware with green lead glaze|tomb pottery', 'as/mobile-large/272393.jpg', 1.26), - SearchData(749, 52970, 'Bowl', 'bowl|earthenware with molded decoration and three color (sancai) glaze*|ceramics', 'as/mobile-large/DP342650.jpg', 1.33), - SearchData(1716, 42241, 'Vase in Shape of Double Gourd', 'vase|porcelain with yellow glaze (jingdezhen ware)|ceramics', 'as/mobile-large/DP-14605-022.jpg', 0.75), - SearchData(1199, 42466, 'Bowl with “Oil-Spot” Design', 'bowl|stoneware with iron-oxide slip and glaze (cizhou-type ware)|ceramics', 'as/mobile-large/DP-14610-077.jpg', 1.33), - SearchData(1800, 43225, 'Ornament in the shape of a boat', 'ornament|jade (nephrite)|jade', 'as/mobile-large/31627.jpg', 1.53), - SearchData(1424, 42014, 'Seal with knob in the shape of a wheel', 'seal|ivory|ivories', 'as/mobile-large/DP318655.jpg', 0.75), - SearchData(-1049, 49406, 'Animal-Head Knife', 'knife|bronze inlaid with turquoise|metalwork', 'as/mobile-large/1985_214_26_238255.jpg', 0.27), - SearchData(800, 44616, 'Comb top', 'comb top|mother-of-pearl|jewelry', 'as/mobile-large/DP138489.jpg', 1.00), - SearchData(-49, 49533, 'Jar (Labakou Hu)', 'jar|earthenware with brown-green glaze and raised decoration|ceramics', 'as/mobile-large/232140.jpg', 0.81), -]; \ No newline at end of file + SearchData(1600, 43350, 'Vase with auspicious animals', 'vase|cloisonné enamel|cloisonné'), + SearchData(199, 44419, 'Jar in Shape of Archaic Bronze Vessel (Hu)', + 'jar|earthenware with incised decoration under amber glaze|ceramics'), + SearchData(749, 42723, 'Monk, probably Ananda (Anantuo)', 'figure|limestone with pigment|sculpture'), + SearchData(1750, 40701, 'One of a pair of parakeets', 'parakeet|cloisonné enamel|cloisonné'), + SearchData(1774, 60625, 'Vase', 'vase|glass|glass'), + SearchData(749, 49591, 'Mirror Back with Birds and Animals in Repoussé', 'mirror back|silver|mirrors'), + SearchData(1649, 40738, 'Basin with scene of Daoist immortals', 'basin|cloisonné enamel|cloisonné'), + SearchData(1949, 62069, 'Drill for carving jade', 'jade carving tool|steel|metalwork'), + SearchData(1949, 62078, 'Small polishing wheel for carving jade', 'jade carving tool|leather|leather'), + SearchData(1366, 39623, 'Disk with dragons', 'disk|ivory|ivories'), + SearchData(1319, 42716, 'Buddha of Medicine Bhaishajyaguru (Yaoshi fo)', + 'wall painting|water-based pigment over foundation of clay mixed with straw|paintings'), + SearchData(1549, 42742, 'Wardrobe', 'wardrobe|wood (huanghuali, or dalbergia odoriferal); metal fittings|furniture'), + SearchData(1400, 40695, 'Candlestick with lotus scrolls', 'candlestick|cloisonné enamel|cloisonné'), + SearchData(1849, 42237, 'Vase', 'vase|porcelain with coral red glaze (jingdezhen ware)|ceramics'), + SearchData( + 1800, 40745, 'Gourd-shaped vase with characters for “grand luck” (da ji)', 'vase|cloisonné enamel|cloisonné'), + SearchData(1750, 39621, 'Jar with floral scrolls and wrapped-cloth design (one of a pair)', + 'jar|painted enamel on copper alloy|enamels'), + SearchData(1751, 40798, 'Plate with birds and flowers', 'plate|painted enamel on copper alloy|enamels'), + SearchData(1549, 39639, 'Wenchang, Stellar God of Literature', 'figure|ivory|ivories'), + SearchData(1749, 42226, 'Vase in Meiping Shape', 'vase|porcelain with celadon glaze (jingdezhen ware)|ceramics'), + SearchData( + 475, 42711, 'Bodhisattva (Maitreya) with crossed ankles', 'figure|sandstone with traces of pigment|sculpture'), + SearchData(1099, 50230, 'Vase', 'vase|stoneware with white glaze (cizhou ware)|ceramics'), + SearchData(1716, 42211, 'Vase', 'vase|porcelain with black glaze (jingdezhen ware)|ceramics'), + SearchData(1750, 42250, 'Vase with Flowers', + 'vase|porcelain painted with colored enamels over transparent glaze (jingdezhen ware)|ceramics'), + SearchData(1749, 39859, 'Brush holder with narrative scene', 'brush holder|ivory|ivories'), + SearchData(1783, 40756, 'Foliated dish with bats amid clouds', 'dish|cloisonné enamel|cloisonné'), + SearchData(1692, 52035, 'Vase', 'vase|porcelain painted in famille verte enamels|ceramics'), + SearchData(1616, 64897, 'Guardian, probably a Lokapala (Tian wang)', 'figure|gilt brass; lost-wax cast|sculpture'), + SearchData(1200, 42433, 'Pillow with a falcon attacking a swan', + 'pillow|stoneware painted with brown and black pigment on white slip under transparent glaze (cizhou ware)|ceramics'), + SearchData( + 616, 42163, 'Buddha, probably Amitabha', 'figure|dry lacquer with polychrome pigment and gilding|sculpture'), + SearchData(1892, 7985, 'Sugar Bowl', 'sugar bowl|porcelain|'), + SearchData(1949, 62076, 'Polishing wheel for carving jade', 'jade carving tool|leather|leather'), + SearchData(1749, 41996, 'Arhat', 'figure|ivory|ivories'), + SearchData(117, 49519, 'Central Watchtower', 'architectural model|earthenware with green lead glaze|tomb pottery'), + SearchData(1949, 62070, 'Sand-file for carving jade', 'jade carving tool|steel|metalwork'), + SearchData(1805, 43303, 'Covered box with lotus spray', 'covered box|jade (nephrite)|jade'), + SearchData(749, 44348, 'Tray', 'tray|earthenware with three-color (sancai) glaze|ceramics'), + SearchData(1805, 43306, 'Covered box with floral design', 'covered box|jade (nephrite)|jade'), + SearchData(1692, 52033, 'Covered Jar', 'covered jar|porcelain painted in famille verte enamels|ceramics'), + SearchData(572, 64921, 'Jar with floral decorations and musicians', + 'jar|stoneware with applied decoration under celadon glaze|ceramics'), + SearchData(1683, 42230, 'Brush Washer', 'brush washer|porcelain with peach-bloom glaze (jingdezhen ware)|ceramics'), + SearchData(1649, 42747, 'Couch Table', 'couch table|wood (huanghuali or dalbergia odorifera)|furniture'), + SearchData( + 1883, 40603, 'Vase from sample set of Chinese cloisonné', 'vase|cloisonné enamel, copper alloy, glass|cloisonné'), + SearchData(555, 42718, 'Bodhisattva, probably Avalokiteshvara (Guanyin)', 'figure|sandstone with pigment|sculpture'), + SearchData(1865, 5777, 'Pitcher', 'pitcher|porcelain, overglaze enamel decoration, and gilding|'), + SearchData(1850, 41208, 'Snuff bottle with demon queller Zhong Kui', + 'snuff bottle|overlay glass with coral stopper|snuff bottles'), + SearchData(1799, 41213, 'Snuff Bottle', 'snuff bottle|glass with aventurine stopper|snuff bottles'), + SearchData(1694, 46163, 'Vase', 'vase|porcelain with ox-blood red glaze (jingdezhen ware), wooden stand|ceramics'), + SearchData(1750, 53835, 'Octagonal-fluted vase', 'vase|glass|glass'), + SearchData(1683, 53962, 'Jar with Cover (one of a pair)', 'jar with cover|porcelain|ceramics'), + SearchData(-2400, 72376, 'Ritual object (cong)', 'ritual object|jade (nephrite)|jade'), + SearchData(649, 42124, 'Horse and female rider', 'figure|unfired clay with pigment|tomb pottery'), + SearchData(545, 61635, 'Tea bowl and saucer with lotus decoration', + 'bowl and saucer|stoneware with carved decoration under celadon glaze|ceramics'), + SearchData(574, 42702, 'Standing bodhisattva', 'headless figure|limestone with traces of pigment|sculpture'), + SearchData(1749, 711785, 'Dish with auspicious flowers and fruits', 'dish|painted enamel on copper alloy|enamels'), + SearchData(1500, 40741, 'Bowl with the Eight Buddhist Treasures', 'bowl|cloisonné enamel|cloisonné'), + SearchData(1135, 42720, 'Monk Sengqie', 'figure|limestone with pigment|sculpture'), + SearchData(1692, 52872, 'Set of wine cups with flowers of the twelve months', + 'cups|porcelain painted with underglaze cobalt blue and overglaze enamels (jingdezhen ware)|ceramics'), + SearchData(1749, 44292, 'Old Testament figures', 'figures|cloisonné|cloisonné'), + SearchData(117, 49520, 'Multistoried Watchtower with Front Court', + 'architectural model|earthenware with green lead glaze|tomb pottery'), + SearchData(1849, 42082, 'Seated rabbit', 'figure|crystal|hardstone'), + SearchData(640, 65348, '"Inkstone" and cover in the shape of a turtle', 'covered inkstone|earthenware|ceramics'), + SearchData(749, 44806, 'Mirror with hunting scene', 'mirror|bronze|mirrors'), + SearchData(1750, 42249, 'Vase', 'vase|porcelain with ox-blood glaze (jingdezhen ware)|ceramics'), + SearchData(1149, 78883, 'Plate with chrysanthemums', + 'plate|porcelain with incised decoration under an ivory glaze (ding ware); copper rim|ceramics'), + SearchData(1750, 40702, 'One of a pair of parakeets', 'parakeet|cloisonné enamel|cloisonné'), + SearchData(1711, 50791, 'Brush Washer', 'brush washer|porcelain with clair de lune glazes|ceramics'), + SearchData(1783, 42243, 'Vase with Cranes, Clouds, and Waves', + 'vase|porcelain with incised decoration under amber glaze (jingdezhen ware)|ceramics'), + SearchData(749, 42181, 'Six-lobed box', 'box|silver|metalwork'), + SearchData(1749, 36044, 'Reclining Horse', 'figure|jade (nephrite)|jade'), + SearchData(1800, 76444, 'Brush holder with scholars in a garden', 'brush holder|bamboo|bamboo'), + SearchData(1700, 42258, 'Plate with Basket of Auspicious Flowers', + 'plate|porcelain painted with colored enamels over transparent glaze (jingdezhen ware)|ceramics'), + SearchData(1561, 42532, 'Dish with Flowers and Birds', + 'dish|porcelain painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics'), + SearchData(708, 52570, 'Box', 'box|earthenware with three-color (sancai) glaze|ceramics'), + SearchData(1949, 62074, 'Polishing wheel for carving jade', 'jade carving tool|wood|wood'), + SearchData(1717, 42247, 'Water Jar with Swirling Clouds', + 'jar|porcelain with incised decoration under celadon glaze (jingdezhen ware)|ceramics'), + SearchData(1729, 52028, 'Vase with decoration of dragons among clouds (one of a pair)', + 'vase|porcelain with incised decoration (anhua) under glaze (jingdezhen ware)|ceramics'), + SearchData(1749, 39847, 'Cup with two feline dragons', 'cup|jade (nephrite)|jade'), + SearchData(1716, 42212, 'Gourd-Shaped Bottle', 'bottle|porcelain with blue glaze (jingdezhen ware)|ceramics'), + SearchData(1930, 41717, 'Snuff bottle with flowers and rocks', + 'snuff bottle|painted enamel on glass with nephrite stopper|snuff bottles'), + SearchData(1133, 42463, 'Bowl', 'bowl|porcelain with black glaze (ding ware)|ceramics'), + SearchData(749, 49559, 'Covered jar', 'jar|earthenware with dappled black glaze|ceramics'), + SearchData(1805, 44218, 'Landscape with hermits and a crane', 'figurine|jade (nephrite)|jade'), + SearchData(1805, 60613, 'Bowl imitating realgar', 'bowl|opaque mottled red and yellow glass|glass'), + SearchData(658, 56154, 'Man with a hoe', 'figure|earthenware with pigment|tomb pottery'), + SearchData(599, 49546, 'Female attendant carrying a pillow', 'figure|glazed arthenware with pigment|tomb pottery'), + SearchData(1282, 61658, 'Bodhisattva Avalokiteshvara (Guanyin)', + 'figure|wood (wiillow) with traces of pigment; single woodblock construction|sculpture'), + SearchData( + 1883, 40606, 'Vase from sample set of Chinese cloisonné', 'vase|cloisonné enamel, copper alloy, glass|cloisonné'), + SearchData(933, 54083, 'Bodhisattva Avalokiteshvara (Guanyin)', 'figure|gilt bronze|sculpture'), + SearchData(1799, 53120, 'Rock in the Form of a Fantastic Mountain', + 'scholar\'s rock|black lingbi limestone; wood stand|sculpture'), + SearchData(1199, 52647, 'Water dropper', 'water dropper|stoneware with splashed blue glaze (jun ware)|ceramics'), + SearchData(117, 49518, 'Stove', 'stove model|earthenware with green lead glaze|ceramics'), + SearchData(1849, 44277, 'Bowl with archaic design', 'bowl|jade (nephrite)|jade'), + SearchData(749, 75765, 'Seated court lady', 'figure|earthenware with tri-color (sancai) glaze|ceramics'), + SearchData(1729, 52712, 'Wine Vessel with Daoist Immortals', + 'wine vessel|porcelain painted in underglaze cobalt blue and copper red|ceramics'), + SearchData(1649, 40744, 'Vase in the form of an archaic wine vessel (fangzun)', 'vase|cloisonné enamel|cloisonné'), + SearchData(1833, 41879, 'Cup with Eight Daoist Immortals', 'cup|rhinoceros horn|horn'), + SearchData(1692, 50995, 'Water coupe', 'water coupe|porcelain with peach-bloom glaze (jingdezhen ware)|ceramics'), + SearchData(1549, 42088, 'Shouxing, Stellar God of Immortality', 'figure|ivory|ivories'), + SearchData(749, 49561, 'Reliquary in the shape of a coffin', 'reliquary|gilt bronze|metalwork'), + SearchData(1692, 52049, 'Vase', 'vase|porcelain with peach bloom glaze (jingdezhen ware)|ceramics'), + SearchData(1335, 52074, 'Brush washer with lotus', + 'brush washer|stoneware with incised decoration under a celadon glaze (longquan ware)|ceramics'), + SearchData(1698, 49156, 'The Kangxi Emperor\'s Southern Inspection Tour, Scroll Three: Ji\'nan to Mount Tai', + 'handscroll|handscroll; ink and color on silk|paintings'), + SearchData( + 1295, 40081, 'Wang Xizhi watching geese', 'handscroll|handscroll; ink, color, and gold on paper|paintings'), + SearchData(567, 49542, 'Standing Official', 'figure|earthenware with traces of pigment|tomb pottery'), + SearchData(1749, 41882, 'Cup depicting Three Laughers of Tiger Ravine', 'cup|rhinoceros horn|horn'), + SearchData(1774, 40778, 'Four-lobed box (from incense set)', 'box|painted enamel on copper alloy|enamels'), + SearchData(649, 73219, 'Covered jar', 'covered jar|earthenware with blue glaze|ceramics'), + SearchData(699, 49564, 'Stem cup', 'stem cup|silver|metalwork'), + SearchData(1716, 42199, 'Vase with Mythical Creature Chasing Pearl', + 'vase|porcelain painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics'), + SearchData(1903, 19897, 'Vase', 'vase|earthenware|'), + SearchData(1805, 43214, 'Cup and saucer', 'cup and saucer|jade (nephrite)|jade'), + SearchData(574, 44796, 'Warrior with Shield', 'figure|earthenware with pigment|tomb pottery'), + SearchData(749, 49577, 'Decorative belt plaques', 'belt plaques|gilt bronze|metalwork'), + SearchData(122, 44321, 'Wellhead with Bucket', 'architectural model|earthenware with green lead glaze|ceramics'), + SearchData(1774, 42067, 'Incense burner (from set)', 'incense burner|painted enamel on copper alloy|enamels'), + SearchData(1800, 39632, 'Seated luohan with a servant', 'jade mountain|malachite|hardstone'), + SearchData( + 1649, 39645, 'Incense burner with animal-mask handles', 'incense burner|bronze with gold splashes|metalwork'), + SearchData(1749, 39839, 'Immortal', 'figure|jade (nephrite)|jade'), + SearchData(1649, 41874, 'Cup with grapes', 'cup|rhinoceros horn|horn'), + SearchData(1749, 40625, 'Saucer in the shape of an ingot', 'saucer|cloisonné enamel|cloisonné'), + SearchData(1716, 42252, 'Bowl', 'bowl|porcelain with rose-enameled glaze (jingdezhen ware)|ceramics'), + SearchData(1800, 42139, 'Brush washer in the shape of a plum blossom', 'brush washer|jade (nephrite)|jade'), + SearchData(1749, 43264, 'Vase in the shape of a magnolia', 'vase|jade (nephrite)|jade'), + SearchData(1765, 52937, 'Vase in the shape of an ancient ritual cup (zhi) (one of a pair)', + 'vase|porcelain with clair de lune glaze (jingdezhen ware)|ceramics'), + SearchData(1749, 42125, 'Miniature mountains representing the mythical realm Penglai', 'figurines|emerald|hardstone'), + SearchData(1199, 50234, 'Bowl', + 'bowl|porcelaneous ware with relief decoration under celadon glaze (longquan ware)|ceramics'), + SearchData(528, 42710, 'Stele commissioned by members of a devotional society', + 'stele|limestone with traces of pigment|sculpture'), + SearchData(1749, 39527, 'Gourd-Shaped Bottle (one of a pair)', + 'bottle|porcelain with celadon glaze (jingdezhen ware)|ceramics'), + SearchData(1692, 52034, 'Covered Jar', 'covered jar|porcelain painted in famille verte enamels|ceramics'), + SearchData(1799, 44210, 'Mountain with wooded landscape', 'relief|jade (nephrite)|jade'), + SearchData(1600, 41482, 'Folding Fan with Fishing Net Decoration', + 'folding fan|folding fan; ink on gold-flecked paper and gold-flecked lacquered bamboo fan bones and end pieces|paintings'), + SearchData(1000, 42722, 'Arhat (Luohan)', 'figure|stoneware with three-color glaze|sculpture'), + SearchData(1949, 62066, 'Drill for carving jade', 'jade carving tool|steel|metalwork'), + SearchData(658, 56155, 'Man carrying a bag', 'figure|earthenware with pigment|tomb pottery'), + SearchData(1683, 42232, 'Vase', 'vase|porcelain with peach-bloom glaze (jingdezhen ware); tiffany stand|ceramics'), + SearchData(1716, 42203, 'Vase with Flowers and Scholar’s Implements', + 'vase|porcelain covered with powdered blue glaze and painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics'), + SearchData(1649, 42745, 'Couch', 'couch|wood (huanghuali, or dalbergia odorifera)|furniture'), + SearchData(1029, 42450, 'Bottle', 'bottle|porcelain with ivory glaze (ding ware)|ceramics'), + SearchData(1774, 838842, 'Kettle and stand', 'kettle and stand|painted enamel on copper alloy|enamels'), + SearchData(1695, 42422, 'Water Jar', 'jar|porcelain with peach-bloom glaze (jingdezhen ware)|ceramics'), + SearchData(1777, 47446, 'Bowl with acrobatic performance', + 'bowl|porcelain painted with overglaze polychrome enamels (jingdezhen ware)|ceramics'), + SearchData(1765, 41333, 'Snuff bottle in imitation of painted enamel metalwork', + 'snuff bottle|porcelain painted with overglaze enamels (jingdezhen ware)|snuff bottles'), + SearchData(1849, 40705, 'One of a Pair of Vases with Dragon Handles', + 'vase|cloisonné enamel with gilt bronze and champlevé|cloisonné'), + SearchData(1749, 62039, 'Lion and cubs', 'figurine|jade (nephrite)|jade'), + SearchData(1616, 41877, 'Cup in the shape of a magnolia blossom', 'cup|rhinoceros horn|horn'), + SearchData(1600, 42542, 'Box with Figures in Landscape', + 'box|porcelain painted with cobalt blue under and colored enamels over transparent glaze (jingdezhen ware)|ceramics'), + SearchData(1285, 51989, 'Dish with relief decoration of fish', + 'dish|stoneware with celadon glaze and biscuit relief (longquan ware)|ceramics'), + SearchData(1883, 40613, 'Fragment from sample set of Chinese cloisonné', + 'fragment|cloisonné enamel, copper alloy, glass|enamels'), + SearchData(1808, 51176, 'Bowl with decorative medallions', + 'bowl|porcelain painted with overglaze enamels (jingdezhen ware)|ceramics'), + SearchData(1150, 40055, 'Emperor Xuanzong\'s Flight to Shu', + 'hanging scroll|hanging scroll; ink, color, and gold on silk|paintings'), + SearchData(1750, 48764, 'Vase with children at play and scholars in gathering', + 'vase|porcelain painted with overglaze polychrome enamels and gilt (jingdezhen ware)|ceramics'), + SearchData(1729, 51008, 'Vase with Dragons and Waves', 'vase|porcelain with sang de boeuf glaze|ceramics'), + SearchData(1633, 40679, 'Garden seat with birds and flowers', 'garden seat|cloisonné enamel|cloisonné'), + SearchData(1583, 42210, 'Pouring Vessel (Kendi) with Flowers and Fruits', + 'kendi|porcelain painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics'), + SearchData(1699, 42736, 'Altar coffer', 'altar coffer|wood (huanghuli or dalbergia odorifera)|furniture'), + SearchData(1765, 46915, 'Vase', + 'vase|porcelain painted in underglaze cobalt blue and overglaze polychrome enamels (jingdezhen ware)|ceramics'), + SearchData(762, 49578, 'Ceremonial ax', 'ax|gilt bronze|metalwork'), + SearchData(1694, 52828, 'Dish with Phoenixes', + 'dish|porcelain painted with cobalt blue under and colored enamels over transparent glaze (jingdezhen ware)|ceramics'), + SearchData(1700, 42191, 'Jar with Dragons and Floral Designs', + 'jar|porcelain painted with cobalt blue under a transparent glaze (jingdezhen ware)|ceramics'), + SearchData(749, 50968, 'Ornament with mask motif', 'ornament|earthenware with three-color (sancai) glaze|ceramics'), + SearchData(1649, 39613, 'Side table', 'side table|wood (huanghuali)|furniture'), + SearchData(117, 44323, 'Goat Pen', 'architectural model|earthenware with green lead glaze|tomb pottery'), + SearchData(1765, 62470, 'Double vessel with mythical beasts (champion vase)', 'vase|cloisonné enamel|cloisonné'), + SearchData(658, 49552, 'Foreign dancer', 'figure|earthenware with pigment|tomb pottery'), + SearchData(1203, 52679, 'Vase', 'vase|stoneware with crackled blue glaze (longquan ware)|ceramics'), + SearchData(1883, 40612, 'Fragment from sample set of Chinese cloisonné', + 'fragment|cloisonné enamel, copper alloy, glass|enamels'), + SearchData(1692, 46792, 'Double-Sided Teapot with Tree Peonies', + 'teapot|porcelain painted with cobalt blue under and colored enamels over transparent glaze (jingdezhen ware)|ceramics'), + SearchData(1692, 48665, 'Vase', 'vase|porcelain with ox-blood glaze|ceramics'), + SearchData(749, 49584, 'Hair Ornament', 'hair ornament|gold inlaid with turquoise|jewelry'), + SearchData(1700, 47879, 'Teapot', + 'teapot|porcelain painted with cobalt blue under transparent glaze (jingdezhen ware); european mount|ceramics'), + SearchData(1716, 49854, 'Wine Pot in Shape of a Peach', + 'wine pot|porcelain with raised decoration and colored glazes (jingdezhen ware)|ceramics'), + SearchData(1583, 72729, 'Dish with Three Friends of Winter', + 'dish|porcelain painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics'), + SearchData(1717, 42423, 'Box for seal paste', 'box|porcelain with peach-bloom glaze (jingdezhen ware)|ceramics'), + SearchData(1833, 41637, 'Snuff bottle in the shape of an ear of corn', + 'snuff bottle|porcelain with yellow glaze (jingdezhen ware) and amber stopper|snuff bottles'), + SearchData(1849, 60660, 'Box in the shape of a “Buddha’s hand” citron', 'box|amber|amber'), + SearchData(1299, 42011, 'Bottle with cloud scrolls', + 'bottle|stoneware with painted decoration on brown glaze (jizhou ware)|ceramics'), + SearchData( + 716, 44805, 'Horse and rider', 'figure|earthenware with three-color (sancai) glaze and pigment|tomb pottery'), + SearchData(949, 44351, 'Comb top', 'comb top|jade (nephrite)|jade'), + SearchData(1805, 39851, 'Ornament in the form of a mountain with figures', 'relief|soapstone|sculpture'), + SearchData(1700, 42254, 'Jar with Landscape Scenes', + 'jar with cover|porcelain covered with powdered blue glaze, painted with colored enamels over transparent glaze, and painted with gold (jingdezhen ware)|ceramics'), + SearchData(1729, 52027, 'Vase with decoration of dragons among clouds (one of a pair)', + 'vase|porcelain with incised decoration (anhua) under glaze (jingdezhen ware)|ceramics'), + SearchData(1650, 76768, 'Dish with Pomegranates', + 'dish|porcelain painted with cobalt blue under and enamels over transparent glaze (jingdezhen ware)|ceramics'), + SearchData( + 1883, 40605, 'Vase from sample set of Chinese cloisonné', 'vase|cloisonné enamel, copper alloy, glass|cloisonné'), + SearchData(1550, 50263, 'Dish with Children in Garden', + 'dish|porcelain painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics'), + SearchData(716, 53958, 'Pillow', 'pillow|earthenware with three-color (sancai) glaze|ceramics'), + SearchData(183, 44405, 'Mirror with deities and mythical creatures', 'mirror|bronze|mirrors'), + SearchData(710, 39640, 'Head of a Bodhisattva', 'head|sandstone with pigment|sculpture'), + SearchData(649, 49580, 'Dragon', 'figure|gilt bronze|sculpture'), + SearchData(699, 49586, 'Mirror with birds and beasts amid grape vines', 'mirror|bronze|mirrors'), + SearchData(1430, 61216, 'Incense Burner', 'incense burner|bronze, inlaid gold, wood|metalwork'), + SearchData(1692, 48597, 'Vase', 'vase|porcelain painted in famille verte enamels|ceramics'), + SearchData(1783, 42066, 'Box with lotus bundles', 'box|painted enamel on copper alloy|enamels'), + SearchData(1199, 815861, 'Incense burner', 'censer|bronze|metalwork'), + SearchData(1622, 76751, 'Plate with vase of flowers', + 'plate|porcelain painted with colored enamels over transparent glaze (jingdezhen ware)|ceramics'), + SearchData(1774, 40727, 'Vase from a five-piece altar set', 'vase|cloisonné enamel|cloisonné'), + SearchData(749, 42182, 'Octagonal cup with ring handle', 'cup|silver with parcel gilding|metalwork'), + SearchData(1199, 52601, 'Tea Bowl with “Hare’s-Fur” Decoration', + 'bowl|stoneware with iron-oxide glaze (jian ware)|ceramics'), + SearchData(762, 73218, 'Seated Musician', 'figure|white marble|sculpture'), + SearchData(1805, 43304, 'Covered Incense Box', 'incense utensil|jade (nephrite)|jade'), + SearchData(1334, 48462, 'Meiping vase with dragon', + 'vase|stoneware with incised decoration under celadon glaze (longquan ware)|ceramics'), + SearchData(749, 49566, 'Box', 'box|silver with gilding|metalwork'), + SearchData(1805, 44221, 'Incense Burner on Stand', 'incense utensil|jade (nephrite)|jade'), + SearchData(1099, 52595, 'Bowl with “Hare’s Fur” Decoration', + 'bowl|stoneware with iron-oxide glaze (jian ware); japanese lacquer repair|ceramics'), + SearchData(725, 53957, 'Box', 'box|earthenware with three-color (sancai) glaze|ceramics'), + SearchData(1549, 40674, 'Tripod incense burner with makara', 'incense burner|cloisonné enamel|cloisonné'), + SearchData(1099, 58453, 'Guardian Protector of the East (Dongfang chiguo tianwang)', + 'figure|partially gilt arsenical bronze; lost-wax cast|sculpture'), + SearchData(1835, 41321, 'Snuff bottle with boys at play', + 'snuff bottle|porcelain painted with underglaze cobalt blue and overglaze enamels (jingdezhen ware) with coral and metal stopper|snuff bottles'), + SearchData(707, 61549, 'Buddha', 'figure|marble|sculpture'), + SearchData( + 1772, 40790, 'Vase with European women and children', 'vase|painted enamel on copper alloy, glass beads|enamels'), + SearchData(1949, 62075, 'Polishing wheel for carving jade', 'jade carving tool|stone|hardstone'), + SearchData(1692, 50978, 'Brush Washer', 'brush washer|porcelain with peach-bloom glaze|ceramics'), + SearchData(1749, 42079, 'Box in the shape of a peach', 'box|jade (nephrite)|jade'), + SearchData(1749, 39862, 'Double cup with mythical beasts', 'double cup|rhinoceros horn|horn'), + SearchData(1711, 52869, 'Monthly flower cup (from set of twelve)', + 'cup|porcelain painted in underglaze cobalt blue and overglaze polychrome enamels (jingdezhen ware)|ceramics'), + SearchData(1449, 44746, 'Saucer with pomegranates and peaches', + 'saucer|porcelain painted in underglaze cobalt blue (jingdezhen ware)|ceramics'), + SearchData(1449, 50716, 'Plate with Lotus', + 'plate|porcelain with incised decoration under celadon glaze (zhejiang province, longquan ware)|ceramics'), + SearchData(1416, 44744, 'Tankard with Peony Scroll', + 'tankard|porcelain painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics'), + SearchData(1805, 39850, 'Boulder with three figures', 'boulder|soapstone|sculpture'), + SearchData(1239, 48458, 'Incense burner with characters "longevity, mountain, fortune, sea" (shou shan fu hai)', + 'incense burner|stoneware with celadon glaze (longquan ware)|ceramics'), + SearchData(1749, 42209, 'Moon-Shaped Bottle', + 'bottle|soft-paste porcelain with incised decoration under ivory glaze (jingdezhen ware)|ceramics'), + SearchData(1765, 51041, 'Bottle vase', + 'bottle vase|porcelain with incised decoration (anhua) under a clair de lune glaze (jingdezhen ware)|ceramics'), + SearchData(1692, 44677, 'Zodiac figure: rabbit', + 'figure|porcelain, in the biscuit and with turquoise and aubergine glazes (jingdezhen ware)|ceramics'), + SearchData(1765, 42070, 'Hand Warmer', 'hand warmer|painted enamel|enamels'), + SearchData(799, 61405, 'Mirror with moon goddess and rabbit', 'mirror|bronze|mirrors'), + SearchData(1949, 62071, 'Tubular drill for carving jade', 'jade carving tool|steel|metalwork'), + SearchData(1765, 46904, 'Saucer with Butterflies', + 'saucer|porcelain painted with colored enamels and gilded (jingdezhen ware)|ceramics'), + SearchData(1692, 40729, 'Double Vase', 'double vase|cloisonné enamel on copper|cloisonné'), + SearchData(1774, 42060, 'Basin', 'basin|jade (nephrite)|jade'), + SearchData(1600, 40505, 'Medallion with return from a spring outing', 'medallion|ivory|ivories'), + SearchData(750, 39901, 'Night-Shining White', 'handscroll|handscroll; ink on paper|paintings'), + SearchData(-2500, 44465, 'Pitcher (Hu)', 'pitcher|earthenware|ceramics'), + SearchData(1650, 52798, 'Jar with Mythical Qilin', + 'jar|porcelain painted with colored enamels over transparent glaze (jingdezhen ware)|ceramics'), + SearchData(716, 39805, 'Assemblage of pendants', 'plaques|jade (nephrite) with bronze and turquoise|jade'), + SearchData(1649, 42242, 'Vase in Meiping Shape', + 'vase|porcelain with incised decoration under yellow glaze (jingdezhen ware)|ceramics'), + SearchData(1916, 50714, 'Vase in the shape of an ancient ritual beaker (gu)', + 'vase|porcelain with a pale green glaze (jingdezhen ware)|ceramics'), + SearchData(1683, 42231, 'Box for Seal Paste', 'box|porcelain with peach-bloom glaze (jingdezhen ware)|ceramics'), + SearchData(1772, 40711, 'Double bottle (one of a pair)', 'double bottle|cloisonné enamel|cloisonné'), + SearchData(1650, 76452, 'Vase with Scene from The Story of the Blue Robe', + 'vase|porcelain painted with cobalt blue under and colored enamels over transparent glaze (jingdezhen ware)|ceramics'), + SearchData(290, 42335, 'Candle Stand in the Shape of a Fantastic Animal', + 'candle stand|stoneware with green glaze|ceramics'), + SearchData(100, 44330, 'Food Container (Kui)', 'container|earthenware with green lead glaze|tomb pottery'), + SearchData(1550, 42549, 'Jar with carp in lotus pond', + 'jar|porcelain painted in underglaze cobalt blue and overglaze polychrome enamels (jingdezhen ware)|ceramics'), + SearchData(1765, 52938, 'Vase in the shape of an ancient ritual cup (zhi) (one of a pair)', + 'vase|porcelain with clair de lune glaze (jingdezhen ware)|ceramics'), + SearchData(1650, 76766, 'Dish with Peonies', + 'dish|porcelain painted with cobalt blue under and enamels over transparent glaze (jingdezhen ware)|ceramics'), + SearchData(1849, 52825, 'Ewer in the shape of a peach', + 'ewer|porcelain painted with underglaze copper red and cobalt blue glaze (jingdezhen ware)|ceramics'), + SearchData(1649, 41880, 'Cup in the shape of an archaic vessel with feline dragons', 'cup|rhinoceros horn|horn'), + SearchData(1900, 69855, 'Woman\'s robe with peonies and shou medallions', + 'woman\'s informal robe|silk and metal thread tapestry (kesi)|costumes-tapestries'), + SearchData(-950, 49502, 'Chariot linchpin with rabbit', 'chariot linchpin|bronze|metalwork'), + SearchData(1750, 60626, 'Vase', 'vase|opaque blue-green glass|glass'), + SearchData( + 1860, 40803, 'Lobed dish with flowers, fruits, and insects', 'dish|painted enamel on copper alloy|enamels'), + SearchData(1883, 42223, 'Vase with Plum Blossoms and Birds', + 'vase|porcelain painted with colored enamels on the biscuit (jingdezhen ware)|ceramics'), + SearchData(674, 49548, 'Resting dancer', 'figure|earthenware with pigment|tomb pottery'), + SearchData(749, 49583, 'Comb Tops', 'comb tops|gold|jewelry'), + SearchData(1716, 46100, 'Platter with the story of Pan An', + 'platter|porcelain painted with overglaze polychrome enamels (jingdezhen ware)|ceramics'), + SearchData(1416, 52713, 'Altar Bowl with Fish', + 'bowl|porcelain painted in copper red under transparent glaze (jingdezhen ware)|ceramics'), + SearchData(1833, 42238, 'Vase', 'vase|porcelain with yellow glaze (jingdezhen ware)|ceramics'), + SearchData(1849, 41201, 'Snuff bottle', 'snuff bottle|jade (jadeite)|snuff bottles'), + SearchData(683, 39524, 'Amphora', 'ewer|earthenware with three-color (sancai) glaze|ceramics'), + SearchData(1099, 52652, 'Plate', 'plate|pottery (jun ware, possibly guan ware)|ceramics'), + SearchData(1700, 39617, 'Vase', 'vase|copper alloy|metalwork'), + SearchData( + 350, 42348, 'Vessel in the shape of a kneeling ram', 'vessel|stoneware with celadon glaze (yue ware)|ceramics'), + SearchData(1765, 40712, 'Vase with lions', 'vase|cloisonné enamel|cloisonné'), + SearchData(1699, 60714, 'Stool', 'stool|wood (jizhimu)|furniture'), + SearchData(1772, 40746, 'Panel with “hundred antiques”', 'panel|cloisonné enamel, jade, wood|cloisonné'), + SearchData(1700, 51184, 'Teapot in Shape of a Lotus Plant', + 'teapot|porcelain with raised and applied decoration under colored glazes (jingdezhen ware)|ceramics'), + SearchData(649, 45862, 'Amphora with dragon-shaped handles', + 'amphora|stoneware with raised decoration and pale buff glaze|ceramics'), + SearchData(749, 49368, 'Camel', 'figure|earthenware with three-color (sancai) glaze|tomb pottery'), + SearchData(1457, 42473, 'Bulb Bowl', 'bowl|stoneware with variegated blue glaze ("numbered jun" ware)|ceramics'), + SearchData(1692, 50725, 'Rouge Box', 'box|porcelain with peachbloom and white glazes|ceramics'), + SearchData(1544, 39618, 'Rice measure with four constellation deities', + 'rice measure|carved red, green, and black lacquer|lacquer'), + SearchData(1750, 39620, 'Jar with floral scrolls and wrapped-cloth design (one of a pair)', + 'jar|painted enamel on copper|enamels'), + SearchData( + 799, 49590, 'Mirror in the shape of an eight-lobed flower', 'mirror|bronze with repoussé gold back|mirrors'), + SearchData(1700, 47429, 'Vase with scholars in a garden', + 'vase|porcelain painted in underglaze cobalt blue (jingdezhen ware)|ceramics'), + SearchData(1600, 40684, 'Vase in the form of an archaic wine vessel (gu)', 'vase|cloisonné enamel|cloisonné'), + SearchData(1549, 42069, 'Tiered box', 'tiered box|cloisonné enamel|cloisonné'), + SearchData(708, 42378, 'Covered jar', 'covered jar|earthenware with three-color (sancai) glaze|ceramics'), + SearchData(1716, 48559, 'Gourd-shaped vase with gourds on vines and bats', + 'vase|porcelain painted in underglaze cobalt blue (jingdezhen ware)|ceramics'), + SearchData( + 1849, 49840, 'Ewer in the shape of a peach', 'ewer|porcelain with colored glazes (jingdezhen ware)|ceramics'), + SearchData(1717, 39532, 'Dish with peaches and bats', + 'dish|porcelain painted in overglaze polychrome enamels (jingdezhen ware)|ceramics'), + SearchData(1765, 46905, 'Cup with Butterflies', + 'cup|porcelain painted with colored enamels and gilded (jingdezhen ware)|ceramics'), + SearchData(1694, 52048, 'Vase', 'vase|porcelain with peach-bloom glaze (jingdezhen ware)|ceramics'), + SearchData(1849, 41897, 'Boy with leaves and box', 'figure|horn|horn'), + SearchData(1549, 42734, 'Side Table', 'side table|wood (huanghuali, or dalbergia odorifera)|furniture'), + SearchData( + 1649, 42547, 'Bodhidharma in meditation', 'figure|white porcelain with transparent glaze (dehua ware)|ceramics'), + SearchData(1893, 20735, 'Vase', 'vase|porcelain|'), + SearchData(1805, 40770, 'Box in the shape of a flower', + 'covered box|gilt, silver, cloisonné and painted enamels, semiprecious stones|metalwork'), + SearchData(1099, 36085, 'Bodhisattva', + 'statue|wood (foxglove) with traces of pigment and gilding; single woodblock construction|sculpture'), + SearchData(1416, 666573, 'Tripod incense burner with lid', 'incense burner|cloisonné and champlevé enamel|cloisonné'), + SearchData(1765, 41531, 'Snuff bottle with boy flying a bird', 'snuff bottle|coral|snuff bottles'), + SearchData(1749, 39863, 'Table screen with the gathering in the Western Garden', 'table screen|ivory|ivories'), + SearchData(724, 44349, 'Jar', 'jar|earthenware with dappled yellow and green glaze|ceramics'), + SearchData(1765, 40621, 'Tripod incense burner', 'incense burner|cloisonné enamel, gilt bronze|cloisonné'), + SearchData(1777, 50828, 'Vase with historical warriors', + 'vase|porcelain painted with colored enamels over a transparent glaze (jingdezhen ware)|ceramics'), + SearchData(1892, 2737, 'Creamer', 'cream pot|porcelain|'), + SearchData( + 1583, 49857, 'Vase with rabbits', 'vase|porcelain painted in underglaze cobalt blue (jingdezhen ware)|ceramics'), + SearchData(1506, 61826, 'Seated Lion (one of a pair)', 'statue|marble|sculpture'), + SearchData(1080, 39668, 'Old Trees, Level Distance', 'handscroll|handscroll; ink and color on silk|paintings'), + SearchData(1733, 52056, 'Vase with Coiling Dragon', + 'vase|porcelain with peach-bloom glaze (jingdezhen ware); western mount|ceramics'), + SearchData(1596, 40681, 'Bowl with auspicious symbols', 'bowl|cloisonné enamel|cloisonné'), + SearchData(658, 56153, 'Man with a shovel', 'figure|earthenware with pigment|tomb pottery'), + SearchData(1788, 42141, 'Brush holder with immortal realms', 'brush holder|jade (nephrite)|jade'), + SearchData(1765, 52025, 'Water pot with dragons among clouds', + 'water pot|porcelain painted in underglaze copper red (jingdezhen ware)|ceramics'), + SearchData(1700, 42200, 'Vase with Butterflies', + 'vase|porcelain painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics'), + SearchData(1692, 40754, 'Herdboy with Water Buffalo', 'group|cloisonné, gilded bronze|cloisonné'), + SearchData(1772, 40710, 'Double bottle (one of a pair)', 'double bottle|cloisonné enamel|cloisonné'), + SearchData(1849, 40781, 'Inkstand in the shape of a butterfly', 'inkstand|painted enamel on copper alloy|enamels'), + SearchData(1849, 42156, 'Wall panel with stone paintings', + 'wall panel|hardwood with veined marble and brass fittings|furniture'), + SearchData(1300, 51249, 'Service with Decoration of Flowers and Birds', 'service|silver with gilding|metalwork'), + SearchData(1049, 73200, 'Buddha Vairocana (Dari)', 'figure|gilt bronze; lost-wax cast|sculpture'), + SearchData(708, 42379, 'Horse and female rider', + 'figure|earthenware with three-color (sancai) glaze and pigment|tomb pottery'), + SearchData( + 1285, 73804, 'Incense box with fragrant grass design', 'box|carved black, red, and yellow lacquer|lacquer'), + SearchData(1649, 42743, 'Armchair', 'armchair|purple sandalwood (zitan)|furniture'), + SearchData(117, 52010, 'Granary Tower', 'model of farm building|earthenware with green lead glaze|ceramics'), + SearchData(1700, 42208, 'Vase', 'vase|porcelain with black glaze (jingdezhen ware)|ceramics'), + SearchData(1729, 50294, 'Dish with woman and rabbit in a garden', + 'dish|porcelain painted in overglaze polychrome enamels (jingdezhen ware)|ceramics'), + SearchData( + 122, 49532, 'Model of Wellhead with Bucket', 'wellhead model|earthenware with green lead glaze|tomb pottery'), + SearchData( + 1583, 52978, 'Bottle with Coiling Dragon', 'bottle|porcelain with transparent glaze (dehua ware)|ceramics'), + SearchData(749, 52565, 'Horse and boy', 'figure|earthenware with three-color (sancai) glaze|ceramics'), + SearchData(1800, 43225, 'Ornament in the shape of a boat', 'ornament|jade (nephrite)|jade'), + SearchData(1699, 42735, 'Long Side Table', 'table|wood (huanghuali or dalbergia odorifera)|furniture'), + SearchData(1750, 843764, 'Tripod censer', 'censer|glass|glass'), + SearchData(1516, 39533, 'Incense Burner with Lotuses', + 'incense burner|porcelain painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics'), + SearchData(1772, 60640, 'Water container', 'water container|glass|glass'), + SearchData(1716, 42213, 'Vase', 'vase|porcelain with light blue glaze|ceramics'), + SearchData(1949, 62068, 'Drill for carving jade', 'jade carving tool|steel|metalwork'), + SearchData(1119, 48482, 'Vase', 'vase|stoneware; jian ware, henan type|ceramics'), + SearchData(1800, 42234, 'Vase in Meiping Shape', 'vase|porcelain with coral-red glaze (jingdezhen ware)|ceramics'), + SearchData(1774, 42144, 'Tool bottle (from incense set)', 'tool bottle|painted enamel on copper alloy|enamels'), + SearchData(100, 44396, 'Pig in Recumbent Position', 'figure|jade (nephrite)|jade'), + SearchData(1816, 51172, 'Bowl with floral medallions', + 'bowl|porcelain with underglaze cobalt blue and overglaze enamels (jingdezhen ware)|ceramics'), + SearchData(1650, 39868, 'Dish with pine trees', 'dish|bamboo|bamboo'), + SearchData(1824, 51153, 'Vase', 'vase|porcelain with mottled red and black glaze|ceramics'), + SearchData(1849, 70366, 'Mirror case with lunar scene', 'mirror case|embroidered silk gauze|textiles-embroidered'), + SearchData(1249, 39635, 'Buddha Shakyamuni with attendant bodhisattvas', 'figures|mammoth ivory|sculpture'), + SearchData( + 486, 42733, 'Buddha Maitreya (Mile)', 'figure|gilt bronze with traces of pigment; piece-mold cast|sculpture'), + SearchData(1700, 42248, 'Vase in Meiping Shape', 'vase|porcelain with ox-blood glaze (jingdezhen ware)|ceramics'), + SearchData(1808, 781822, 'Brush holder with flowers and poems', 'brush holder|molded gourd, black lacquer|gourd'), + SearchData(1849, 51142, 'Vase in Meiping Shape', 'vase|porcelain with iron-red glaze (jingdezhen ware)|ceramics'), + SearchData(1688, 36131, 'Landscapes with poems', + 'album|fifteen leaves from an album (1980.516.2a–c and 1981.4.1a–o) of eighteen leaves|paintings'), + SearchData(1765, 60920, 'One of a pair of boxes with elephants', 'box with cover|carved red lacquer|lacquer'), + SearchData(1805, 43273, 'Dish with grapes and squirrels', 'dish|jade (jadeite)|jade'), + SearchData(1749, 42216, 'Vase', 'vase|porcelain with blue glaze (jingdezhen ware)|ceramics'), + SearchData(649, 49581, 'Dragon', 'figure|gilt bronze|sculpture'), + SearchData(758, 52576, 'Dog', 'figure|earthenware with brown glaze|tomb pottery'), + SearchData(1833, 41649, 'Snuff bottle in the shape of a hot pepper', + 'snuff bottle|porcelain painted with red enamel (jingdezhen ware) and glass stopper|snuff bottles'), + SearchData(1749, 41888, 'Cup in the shape of a magnolia blossom', 'cup|rhinoceros horn|horn'), + SearchData( + 117, 49521, 'Watchtower with Four Archers', 'architectural model|earthenware with green lead glaze|tomb pottery'), + SearchData(1549, 50483, 'Garden seat with scene of a lotus pond', + 'garden seat|porcelain painted in underglaze cobalt blue (jingdezhen ware)|ceramics'), + SearchData(749, 42185, 'Cup with ring handle', 'cup|gilt bronze|metalwork'), + SearchData(1649, 54284, 'Armchair', 'armchair|purple sandalwood (zitan)|furniture'), + SearchData(1249, 73676, 'Quadrangular vase in the form of a Neolithic ritual jade object (cong)', + 'cong-form vase|stoneware with celadon glaze (longquan ware)|ceramics'), + SearchData(100, 44412, 'Pig in Recumbent Position', 'figure|dolomite|sculpture'), + SearchData(1349, 50211, 'Bottle in Meiping Shape with “Tortoiseshell” Glaze', + 'bottle|stoneware with iron glaze (jizhou ware)|ceramics'), + SearchData(1692, 48741, 'Vase with Immortals Offering the Peaches of Longevity', + 'vase|porcelain, overglaze enamels|ceramics'), + SearchData(1765, 60919, 'One of a pair of boxes with elephants', 'box with cover|carved red lacquer|lacquer'), + SearchData(999, 61780, 'Pair of decorative medallions', 'architectural detail|sandstone|sculpture'), + SearchData(649, 65100, 'Standing attendant', 'figure|earthenware with pigment|sculpture'), + SearchData( + 1716, 42241, 'Vase in Shape of Double Gourd', 'vase|porcelain with yellow glaze (jingdezhen ware)|ceramics'), + SearchData(1424, 40765, 'Base for a mandala', 'base for a mandala|cloisonné enamel|cloisonné'), + SearchData( + 566, 49544, 'Seated Falconer', 'one of a pair of figures|earthenware with red and white pigments|tomb pottery'), + SearchData(1750, 40865, 'Dish with flowers, fruits, and butterfly', 'dish|painted enamel on copper alloy|enamels'), + SearchData(1805, 42015, 'Scepter (ruyi) with gourds and vines', 'scepter|ivory with pigment|ivories'), + SearchData(1600, 40747, 'Panel with Dragons', 'panel|cloisonné enamel|cloisonné'), + SearchData(1506, 50242, 'Flower Pot', 'flower pot|stoneware with variegated glaze ("numbered jun" ware)|ceramics'), + SearchData(749, 49587, 'Mirror with Grapes and Fantastic Sea Animals', 'mirror|bronze|mirrors'), + SearchData(749, 49563, 'Ladle', 'ladle|silver|metalwork'), + SearchData(199, 49527, 'Mirror with Queen Mother of the West, Lord of the East, and mythical creatures', + 'mirror|bronze with black patina|mirrors'), + SearchData(1883, 40609, 'Fragment from sample set of Chinese cloisonné', + 'fragment|cloisonné enamel, copper alloy, glass|enamels'), + SearchData(1649, 65006, 'Daoist deity Zhenwu with two attendants', + 'figure|porcelain with turquoise and aubergine glazes (jingdezhen ware)|ceramics'), + SearchData(1506, 61824, 'Seated Lion (one of a pair)', 'statue|marble|sculpture'), + SearchData(117, 49517, 'House with Courtyard', 'model|earthenware with green lead glaze|ceramics'), + SearchData(749, 49565, 'Box', 'box|silver with parcel gilding|metalwork'), + SearchData(1749, 50898, 'Gourd-Shaped Bottle (one of a pair)', + 'bottle|porcelain with celadon glaze (jingdezhen ware)|ceramics'), + SearchData(1649, 78434, 'Buddhist disciple, or luohan, holding a peach', 'figure|soapstone|sculpture'), + SearchData(749, 49381, 'Set of twelve zodiac animals', 'figures|earthenware with white slip|ceramics'), + SearchData(1749, 41918, 'Boy with water buffalo', 'figurine|jade (nephrite)|jade'), + SearchData(1749, 42121, 'Cup with figures in a landscape', 'cup|rhinoceros horn|horn'), + SearchData(749, 50664, 'Rhyton with handle in the shape of a monkey', 'rhyton|earthenware with brown glaze|ceramics'), + SearchData(570, 42715, 'Head of a bodhisattva', 'head|limestone with pigment|sculpture'), + SearchData(1765, 50750, 'Bowl with bitter melons and butterflies', + 'bowl|porcelain painted with overglaze enamels (jingdezhen ware)|ceramics'), + SearchData(1319, 61634, 'Vase with abstract decoration', + 'vase|stoneware with carved and incised design under celadon glaze (cizhou ware)|ceramics'), + SearchData(583, 64119, 'Pilgrim’s flask with Central Asian dancers', + 'flask|earthenware with molded decoration under olive-green glaze|ceramics'), + SearchData( + 1849, 44226, 'Incense burner in the shape of an archaic tripod (ding)', 'incense burner|jade (jadeite)|jade'), + SearchData(1649, 39857, 'Cup with two dragons in waves', 'cup|rhinoceros horn|horn'), + SearchData(1649, 76769, 'Buddhist monk Bodhidharma (Chinese: Damo)', 'figurine|rhinoceros horn|horn'), + SearchData(583, 39582, 'Jar', 'jar|earthenware with relief decoration under an olive green glaze|ceramics'), + SearchData(1399, 43248, 'Two rabbits', 'figurine|jade|jade'), + SearchData(1591, 48948, 'The Sixteen Luohans', 'handscroll|handscroll; ink and color on paper|paintings'), + SearchData( + 566, 49545, 'Seated Falconer', 'one of a pair of figures|earthenware with red and white pigments|tomb pottery'), + SearchData( + 1949, 42721, 'Rock in the form of a fantastic mountain', 'scholar\'s rock|taihu limestone; wood stand|sculpture'), + SearchData( + 1883, 40604, 'Vase from sample set of Chinese cloisonné', 'vase|cloisonné enamel, copper alloy, glass|cloisonné'), + SearchData(1799, 50842, 'Vase with Women’s Activities', + 'vase|porcelain painted with colored enamels over transparent glaze (jingdezhen ware)|ceramics'), + SearchData(1499, 40633, 'Vase with lotus scrolls', 'vase|cloisonné enamel, gilt bronze mounts|cloisonné'), + SearchData(1749, 60646, 'Vase', 'vase|glass|glass'), + SearchData( + 724, 49556, 'Tripod cup with ring handle (bei)', 'cup|earthenware with marblized body and brown glaze|ceramics'), + SearchData(1716, 53966, 'Bowl', + 'bowl|porcelain painted in overglaze famille verte enamels with sang-de-boeuf overglaze added later|ceramics'), + SearchData(1699, 42746, 'Stool', 'stool|wood (jizhimu)|furniture'), + SearchData(1750, 42251, 'Vase with Flowers', + 'vase|porcelain painted with colored enamels over transparent glaze (jingdezhen ware)|ceramics'), + SearchData(1692, 48616, 'Bottle with Lion', + 'bottle|porcelain painted with colored enamels over transparent glaze (jingdezhen ware)|ceramics'), + SearchData(1849, 41352, 'Snuff bottle with boys at play', + 'snuff bottle|porcelain painted with underglaze cobalt blue (jingdezhen ware)|snuff bottles'), + SearchData(1883, 40610, 'Fragment from sample set of Chinese cloisonné', + 'fragment|cloisonné enamel, copper alloy, glass|enamels'), + SearchData(1883, 40607, 'Fragment from sample set of Chinese cloisonné', + 'fragment|cloisonné enamel, copper alloy, glass|enamels'), + SearchData(1949, 62067, 'Drill for carving jade', 'jade carving tool|steel|metalwork'), + SearchData(758, 52577, 'Dog', 'figure|earthenware with brown glaze|tomb pottery'), + SearchData(1805, 43289, 'Tray with magic fungus (lingzhi)', 'tray|jade (nephrite)|jade'), + SearchData(1849, 60682, 'Boy with leaves and box', 'figure|horn|horn'), + SearchData(1799, 41756, 'Snuff bottle', 'snuff bottle|glass|snuff bottles'), + SearchData(1949, 62077, 'Polishing wheel for carving jade', 'jade carving tool|dried gourd peel|gourd'), + SearchData(1883, 40608, 'Fragment from sample set of Chinese cloisonné', + 'fragment|cloisonné enamel, copper alloy, glass|enamels'), + SearchData(567, 42705, 'Pagoda base with four Buddhas', 'pagoda base|limestone with traces of pigment|sculpture'), + SearchData(1549, 42744, 'Wardrobe', 'wardrobe|wood (huanghuali/dalbergia odoriferal); metal fittings|furniture'), + SearchData(1883, 40614, 'Fragment from sample set of Chinese cloisonné', + 'fragment|cloisonné enamel, copper alloy, glass|enamels'), + SearchData(1849, 40800, 'Dish', 'dish|painted enamel|enamels'), + SearchData(749, 52970, 'Bowl', 'bowl|earthenware with molded decoration and three color (sancai) glaze*|ceramics'), + SearchData(1350, 42491, 'Faceted vase with flowers', + 'vase|porcelain painted in underglaze cobalt blue (jingdezhen ware)|ceramics'), + SearchData(799, 49560, 'Censer', 'censer|silver|metalwork'), + SearchData(1765, 41336, 'Snuff bottle with European figures', + 'snuff bottle|painted enamel on copper with gilt bronze stopper|snuff bottles'), + SearchData(1888, 15980, 'Vase', 'vase|glazed and painted earthenware|'), + SearchData(1805, 43244, 'Incense stick holder', 'incense stick holder|jade (nephrite)|jade'), + SearchData(1672, 43209, 'Cup with dragon handles', 'cup|jade (nephrite)|jade'), + SearchData(1883, 40611, 'Fragment from sample set of Chinese cloisonné', + 'fragment|cloisonné enamel, copper alloy, glass|enamels'), + SearchData(1849, 41514, 'Snuff bottle with design of coins', 'snuff bottle|glass|snuff bottles'), + SearchData(849, 44807, 'Cup with figures in a landscape', 'cup|silver with parcel gilding|metalwork'), + SearchData(849, 44347, 'Circular box', + 'box|earthenware with painted decoration under transparent glaze (changsha ware)|ceramics'), + SearchData( + 1849, 40813, 'Lotus-leaf formed tray with flowers and fruits', 'tray|painted enamel on copper alloy|enamels'), + SearchData(1749, 39844, 'Boy with water buffalo', 'figure|jade (nephrite)|jade'), + SearchData(1700, 48711, 'Vase with Scene from the Dragon Boat Festival', + 'vase|porcelain painted with colored enamels over transparent glaze (jingdezhen ware)|ceramics'), + SearchData(1149, 39528, 'Jar with Handles', + 'jar|stoneware with applied white slip ribs and black glaze (cizhou ware)|ceramics'), + SearchData(1350, 49216, 'Bottle with Peony Scroll', + 'bottle|porcelain painted with cobalt blue under a transparent glaze (jingdezhen ware)|ceramics'), + SearchData(1199, 78392, 'Tea Bowl with Splashed Decoration', + 'tea bowl|stoneware with brown glaze and slip decoration|ceramics'), + SearchData(1771, 1980, 'Openwork fruit basket', 'basket|soft-paste porcelain with underglaze blue decoration|'), + SearchData(1765, 52968, 'Bowl with floral sprays', + 'bowl|porcelain painted with overglaze enamels (jingdezhen ware)|ceramics'), + SearchData(666, 78432, 'Jar', 'jar|porcelain with white glaze (xing ware)|ceramics'), + SearchData(1765, 42317, 'Vase with Nine Peaches', + 'vase|porcelain painted with colored enamels over transparent glaze (jingdezhen ware)|ceramics'), + SearchData(1800, 41215, 'Snuff bottle with scene of a lotus pond', + 'snuff bottle|overlay glass with coral stopper|snuff bottles'), + SearchData(1692, 76453, 'Brush holder decorated with garden scene', 'brush holder|bamboo|bamboo'), + SearchData(749, 49582, 'Decorative belt plaque', 'belt plaque|gilt bronze|metalwork'), + SearchData(930, 39649, 'Bowl with Dragons among Waves', + 'bowl|stoneware with carved and incised decoration under celadon glaze (yue ware)|ceramics'), + SearchData( + 112, 44313, 'Mirror with animals of the four directions and other mythical creatures', 'mirror|bronze|mirrors'), + SearchData(-2450, 44723, 'Jar (Hu)', 'jar|earthenware with painted decoration|ceramics'), + SearchData(1750, 48649, 'Jar with Flowers', + 'jar|porcelain painted with colored enamels over transparent glaze (jingdezhen ware)|ceramics'), + SearchData(524, 42162, 'Buddha Maitreya (Mile) Altarpiece', 'altarpiece|gilt bronze|sculpture'), + SearchData(849, 42400, 'Flask', 'flask|stoneware with splashed glaze (jun ware)|ceramics'), + SearchData(1113, 39936, 'Finches and bamboo', 'handscroll|handscroll; ink and color on silk|paintings'), + SearchData(1413, 57612, 'Bodhisattva Manjushri as Tikshna-Manjushri (Minjie Wenshu)', + 'figure|gilt brass; lost-wax casting|sculpture'), + SearchData(1749, 50562, 'Cup with design of waves', + 'cup|porcelain painted with red enamel and incised decoration (jingdezhen ware)|ceramics'), + SearchData(666, 42180, 'Set of decorative belt plaques', 'belt plaques|jade (nephrite)|jade'), + SearchData(1771, 13370, 'Pickle Stand', 'pickle stand|soft-paste porcelain|'), + SearchData(1695, 45965, 'Vase with entwined dragon', + 'vase|porcelain painted in overglaze polychrome enamels, and relief decoration with dark blue glaze and gilt (jingdezhen ware)|ceramics'), + SearchData(1849, 43277, 'Twin Vases', 'vases|jade (nephrite)|jade'), + SearchData(1333, 73805, 'Bowl with Plum Blossom and Crescent Moon', + 'bowl|porcelain with incised decoration under celadon glaze (longquan ware)|ceramics'), + SearchData(1772, 60641, 'Vase', 'vase|glass|glass'), + SearchData(799, 49579, 'Mirror with parrots and flowers', 'mirror|bronze|mirrors'), + SearchData(1774, 40699, 'Incense burner in the shape of a rooster', 'incense burner|cloisonné enamel|cloisonné'), + SearchData(-1185, 42952, 'Plaque in the shape of a rabbit', 'pendant|jade (nephrite)|jade'), + SearchData(1700, 42204, 'Vase with Flowering Plants and Birds', + 'vase|porcelain painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics'), + SearchData(1892, 8411, 'Teapot', 'teapot|porcelain|'), + SearchData(1750, 48348, 'Cup with floral scrolls', + 'cup|porcelain painted in overglaze polychrome enamels and gold (jingdezhen ware)|ceramics'), + SearchData(1799, 41180, 'Snuff bottle', 'snuff bottle|glass|snuff bottles'), + SearchData(1683, 42245, 'Vase', 'vase|porcelain with moonlight glaze (jingdezhen ware); tiffany stand|ceramics'), + SearchData(1749, 44208, 'Washer with magic fungus (lingzhi)', 'washer|jade (nephrite)|jade'), + SearchData(1835, 49865, 'Bowl with imaginary composite flowers', + 'bowl|porcelain painted with overglaze enamels (jingdezhen ware)|ceramics'), + SearchData(1700, 42202, 'Bottle with Dragon Chasing Pearl', + 'bottle|porcelain painted with cobalt blue under transparent glaze (jingdezhen ware)|ceramics'), + SearchData(1849, 40804, 'Foliated dish with flowers and fruits', 'dish|painted enamel on copper alloy|enamels'), + SearchData(-950, 49503, 'Chariot linchpin with rabbit', 'chariot linchpin|bronze|metalwork'), + SearchData(658, 56152, 'Woman with a hoe', 'figure|earthenware with pigment|tomb pottery'), + SearchData(700, 42183, 'Dish in the shape of a leaf', 'dish|silver with parcel gilding|metalwork'), + SearchData(1167, 42469, 'Jar with abstract floral design', + 'jar|stoneware painted in dark brown on white slip (cizhou ware, probably guantai kilns)|ceramics'), + SearchData( + 1772, 40872, 'Bowl with auspicious emblems (one of a pair)', 'bowl|painted enamel on copper alloy|enamels'), + SearchData( + 1800, 41529, 'Snuff bottle with fish', 'snuff bottle|overlay glass with ivory-and-glass stopper|snuff bottles'), + SearchData(1749, 39627, 'Nine Elders of Mount Xiang', 'jade mountain|soapstone|soapstone'), + SearchData(1805, 43322, 'Vase on Stand', 'incense utensil|jade (nephrite)|jade'), + SearchData(1808, 60759, 'Mustard Seed Garden Manual of Painting, volumes 1–4', + 'illustrated book|seventeen volumes of woodblock-printed books; ink on paper|illustrated books'), + SearchData(1683, 42227, 'Water Jar', + 'jar|porcelain with incised decoration under peachbloom glaze (jingdezhen ware)|ceramics'), + SearchData(1000, 42725, 'Bodhisattva Avalokiteshvara (Guanyin)', + 'figure|wood (foxglove) with pigments, gilding, quartz and carnelian; single woodblock construction|sculpture'), + SearchData(749, 49514, 'Groom', 'figure|earthenware with three-color (sancai) glaze|ceramics'), + SearchData( + 1772, 40873, 'Bowl with auspicious emblems (one of a pair)', 'bowl|painted enamel on copper alloy|enamels'), + SearchData(1765, 52975, 'Miniature vase with floral medallions', + 'vase|porcelain painted with overglaze enamels (jingdezhen ware)|ceramics'), + SearchData(117, 44320, 'Mill', 'architectural model|earthenware with green lead glaze|ceramics'), + SearchData(1649, 54285, 'Armchair', 'armchair|purple sandalwood (zitan)|furniture'), + SearchData(1849, 42228, 'Vase in Meiping Shape', + 'vase|porcelain with crackled apple-green glaze (jingdezhen ware)|ceramics'), + SearchData(1299, 51075, 'Tea Bowl with “Tortoiseshell” Design', + 'bowl|stoneware with iron glaze splashed with wood-ash solution (jizhou ware)|ceramics'), + SearchData(117, 44322, 'Animal Pen with Figures', 'architectural model|earthenware with green lead glaze|ceramics'), + SearchData(1717, 42229, 'Vase', 'vase|porcelain with peach-bloom glaze (jingdezhen ware)|ceramics'), + SearchData(-149, 42178, 'Female Dancer', 'figure|earthenware with slip and pigment|tomb pottery'), + SearchData(1711, 50779, 'Monthly flower cup (from set of twelve)', + 'cup|porcelain painted in underglaze cobalt blue and overglaze polychrome enamels (jingdezhen ware|ceramics'), + SearchData(835, 39650, 'Bowl with deer', 'bowl|silver with parcel gilding|metalwork'), + SearchData( + 1849, 40812, 'Lobed tray with rock, flowers, and butterflies', 'tray|painted enamel on copper alloy|enamels'), + SearchData(1949, 62073, 'Shellac wheel for carving jade', 'jade carving tool|shellac resin and steel|hardstone'), +]; diff --git a/lib/logic/data/wonders_data/search/machu_picchu_search_data.dart b/lib/logic/data/wonders_data/search/machu_picchu_search_data.dart index b2ad4233..3f41d376 100644 --- a/lib/logic/data/wonders_data/search/machu_picchu_search_data.dart +++ b/lib/logic/data/wonders_data/search/machu_picchu_search_data.dart @@ -1,374 +1,474 @@ part of '../machu_picchu_data.dart'; -// Search suggestions (78) -List _searchSuggestions = const ['hat', 'figure', 'earflare', 'prosopis', 'fiber', 'ornament', 'paccha', 'copper', 'feline', 'bronze', 'canopa', 'figurine', 'costumes', 'dish', 'tomb', 'lime', 'miniature', 'top', 'bottle', 'wood', 'gilded', 'inlay', 'tumi', 'alloy', 'silver', 'pin', 'slip', 'resin', 'warrior', 'woven', 'tupu', 'gold', 'implements', 'stirrup', 'tunic', 'votive', 'jar', 'camelid', 'stone', 'sculpture', 'spoon', 'cornered', 'knife', 'sheet', 'ceramics', 'turquoise', 'ornaments', 'pigment', 'metal', 'profile', 'post', 'head', 'spout', 'pigmented', 'sling', 'cast', 'ceramic', 'cotton', 'shell', 'hammered', 'containers', 'kero', 'bird', 'double', 'escallonia', 'textiles', 'ceremonial', 'hair', 'bag', 'staff', 'tapestry', 'vessel', 'funerary', 'feathers', 'paint', 'disk', 'fragment', 'container', ]; +// Search suggestions (79) +List _searchSuggestions = const [ + 'hat', + 'figure', + 'earflare', + 'prosopis', + 'fiber', + 'ornament', + 'paccha', + 'copper', + 'feline', + 'bronze', + 'canopa', + 'costumes', + 'dish', + 'tomb', + 'lime', + 'miniature', + 'top', + 'wood', + 'bottle', + 'gilded', + 'inlay', + 'tumi', + 'alloy', + 'silver', + 'pin', + 'slip', + 'resin', + 'warrior', + 'woven', + 'tupu', + 'gold', + 'implements', + 'tunic', + 'stirrup', + 'votive', + 'jar', + 'camelid', + 'stone', + 'sculpture', + 'spoon', + 'cornered', + 'knife', + 'sheet', + 'ceramics', + 'turquoise', + 'ornaments', + 'pigment', + 'effigy', + 'metal', + 'profile', + 'post', + 'head', + 'spout', + 'pigmented', + 'sling', + 'cast', + 'ceramic', + 'cotton', + 'shell', + 'beaker', + 'hammered', + 'containers', + 'kero', + 'bird', + 'double', + 'escallonia', + 'textiles', + 'ceremonial', + 'hair', + 'bag', + 'staff', + 'tapestry', + 'vessel', + 'funerary', + 'feathers', + 'paint', + 'disk', + 'fragment', + 'container', +]; -// Machu Picchu (366) +// Machu Picchu (377) List _searchData = const [ - SearchData(1400, 310616, 'Double Vessel, Monkey', 'vessel|silver|metal-containers', 'ao/mobile-large/DT10189.jpg', 0.78), - SearchData(600, 318644, 'Profile Warrior Ornament', 'ornament|gilded copper, shell, turquoise|metal-ornaments', 'ao/mobile-large/1987.394.72.JPG', 0.82), - SearchData(1500, 313275, 'Vessel', 'bottle|ceramic|ceramics-containers', 'ao/mobile-large/vs1979_206_1082.jpg', 0.84), - SearchData(1500, 315620, 'Copper Pin', 'pin|silver (hammered)|metal-ornaments', 'ao/mobile-large/vs1987_394_560.jpg', 0.39), - SearchData(750, 316963, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/HZ1994_35_138.jpg', 1.11), - SearchData(1500, 315624, 'Ornamented Knife', 'knife|copper|metal-implements', 'ao/mobile-large/hz1987_394_564.jpg', 1.15), - SearchData(1500, 313287, 'Storage Jar (aryballos)', 'bottle|ceramic, pigment|ceramics-containers', 'ao/mobile-large/vs1979_206_1094.jpg', 0.88), - SearchData(1650, 316847, 'Kero', 'kero|wood, metal inlay, red pigment|wood-containers', 'ao/mobile-large/1994.35.19_a.JPG', 0.78), - SearchData(1385, 312796, 'Hanging', 'hanging|cotton|textiles-woven', 'ao/mobile-large/DT9943.jpg', 0.76), - SearchData(1500, 315228, 'Bronze Mace Head in Feline Form', 'mace head|bronze (cast)|metal-implements', 'ao/mobile-large/1987.394.166_a.jpg', 1.47), - SearchData(1500, 315283, 'Pin', 'pin|copper, gilt|metal-ornaments', 'ao/mobile-large/vs1987_394_223A.JPG', 0.36), - SearchData(1500, 313222, 'Ceremonial Implement', 'implement|wood, resin paint, metal|wood-implements', 'ao/mobile-large/DP-23805-001.jpg', 0.39), - SearchData(1400, 315609, 'Pin', 'pin|silver (hammered)|metal-ornaments', 'ao/mobile-large/DP216738.jpg', 0.64), - SearchData(1500, 315490, 'Copper Tumi with Figure', 'knife|copper (cast)|metal-implements', 'ao/mobile-large/vs1987_394_415.jpg', 0.78), - SearchData(1400, 315608, 'Pin', 'pin|silver (hammered)|metal-ornaments', 'ao/mobile-large/DP216737.jpg', 0.65), - SearchData(1475, 313341, 'Double bowl', 'bowl|ceramic, slip|ceramics-containers', 'ao/mobile-large/DP-24356-001.jpg', 1.33), - SearchData(1500, 313152, 'Tunic', 'tunic|camelid hair|textiles-woven', 'ao/mobile-large/DP244273.jpg', 1.33), - SearchData(1500, 313205, 'Dish with Bird Head', 'dish|ceramic, pigment|ceramics-containers', 'ao/mobile-large/1979.206.1008.jpg', 1.55), - SearchData(1500, 315285, 'Copper Pin', 'pin|copper, gilt|metal-ornaments', 'ao/mobile-large/vs1987_394_225.JPG', 0.42), - SearchData(750, 316970, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/HZ1994_35_145.jpg', 1.08), - SearchData(1500, 314528, 'Tunic with Diamond Band', 'tunic|camelid hair, cotton|textiles-woven', 'ao/mobile-large/DP107698.jpg', 0.90), - SearchData(500, 314681, 'Prisoner jar', 'jar|ceramic, slip|ceramics-containers', 'ao/mobile-large/DP-24362-001.jpg', 0.75), - SearchData(1140, 309105, 'Tupu (pin)', 'pin|copper|metal-ornaments', 'ao/mobile-large/hz64_228_607.jpg', 0.36), - SearchData(1466, 317753, 'Female figurine', 'figure|silver-gold alloy|sculpture-sheet metal', 'ao/mobile-large/DP-13440-036.jpg', 0.67), - SearchData(550, 309427, 'Ear Ornament, Winged Runner', 'earflare|gold, turquoise, sodalite, shell|metal-ornaments', 'ao/mobile-large/66.196.40.jpg', 0.77), - SearchData(825, 307975, 'Tunic with Confronting Catfish', 'tunic|camelid hair, tapestry-weave|textiles-woven', 'ao/mobile-large/DT829.jpg', 1.98), - SearchData(1350, 307467, 'Tweezers', 'tweezers|silver|metal-implements', 'ao/mobile-large/82.1.23.JPG', 0.93), - SearchData(400, 309411, 'Headdress Ornament', 'headdress ornament|gold|metal-ornaments', 'ao/mobile-large/DP-14786-039.jpg', 1.34), - SearchData(1500, 313225, 'Funerary Staff', 'tomb post|wood, silver, nails|wood-sculpture', 'ao/mobile-large/DP-23803-001.jpg', 0.42), - SearchData(1500, 315618, 'Silver Pin', 'pin|silver (hammered)|metal-ornaments', 'ao/mobile-large/vs1987_394_558.JPG', 0.77), - SearchData(1500, 313226, 'Funerary Staff', 'staff|wood, paint, metal sheathing|wood-sculpture', 'ao/mobile-large/DP-23808-001.jpg', 0.33), - SearchData(750, 308121, 'Four-Cornered Hat', 'hat|camelid hair, cotton|textiles-woven', 'ao/mobile-large/DP264889.jpg', 0.75), - SearchData(750, 316962, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/hz1994_35_137.jpg', 1.17), - SearchData(1300, 310476, 'Feathered Tabard', 'tunic|cotton, feathers|feathers-costumes', 'ao/mobile-large/DP218937.jpg', 1.33), - SearchData(750, 316339, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/HZ1994_35_149.jpg', 1.03), - SearchData(1500, 307941, 'Bag Tassel', 'bag fragment|camelid hair, cotton|textiles-woven', 'ao/mobile-large/DP18687_28.171.4,1.jpg', 0.60), - SearchData(1650, 316841, 'Kero', 'kero|wood (escallonia), pigmented resin inlay|wood-containers', 'ao/mobile-large/DP104798.jpg', 1.00), - SearchData(1466, 309227, 'Tupu (pin)', 'pin|copper alloy|metal-ornaments', 'ao/mobile-large/vs64_228_701.jpg', 0.48), - SearchData(750, 316980, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/HZ1994_35_160.jpg', 1.09), - SearchData(1500, 313269, 'Deer Stick', 'staff|wood, paint|wood-sculpture', 'ao/mobile-large/1979.206.1076.jpg', 1.50), - SearchData(750, 312911, 'Four-Cornered Hat', 'hat|camelid hair, cotton|textiles-costumes', 'ao/mobile-large/1979.206.724 a.jpg', 0.99), - SearchData(1650, 316846, 'Kero', 'kero|wood, tin inlay|wood-containers', 'ao/mobile-large/DP-24246-001.jpg', 0.86), - SearchData(1500, 313271, 'Headband', 'head ornament|gold (hammered)|metal-ornaments', 'ao/mobile-large/vs1979_206_1078.jpg', 0.16), - SearchData(1500, 313206, 'Dish with Bird Head', 'dish|ceramic, pigment|ceramics-containers', 'ao/mobile-large/1979.206.1009.jpg', 1.50), - SearchData(1466, 313251, 'Female figurine', 'figure|gold|sculpture-sheet metal', 'ao/mobile-large/DP-13440-033.jpg', 0.70), - SearchData(1500, 315286, 'Ceremonial Knife (Tumi)', 'knife|copper (cast)|metal-implements', 'ao/mobile-large/vs1987_394_226.jpg', 1.00), - SearchData(1500, 315227, 'Ceremonial Knife (Tumi)', 'knife|bronze (cast)|metal-implements', 'ao/mobile-large/1987.394.165_a.jpg', 1.36), - SearchData(1700, 316855, 'Kero', 'kero|wood, pigmented resin inlay|wood-containers', 'ao/mobile-large/DP104805.jpg', 0.95), - SearchData(550, 308526, 'Stirrup Spout Bottle with Bird and Snake', 'bottle|ceramic, slip|ceramics-containers', 'ao/mobile-large/64.228.20.JPG', 0.75), - SearchData(550, 308508, 'Owl Warrior Bottle', 'bottle|ceramic|ceramics-containers', 'ao/mobile-large/64.228.2.JPG', 0.67), - SearchData(750, 316973, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/HZ1994_35_148.jpg', 1.07), - SearchData(-250, 307617, 'Bowl', 'bowl|ceramic, post-fired paint|ceramics-containers', 'ao/mobile-large/63.232.73_b.jpg', 1.36), - SearchData(400, 308535, 'Figure Jar', 'jar|ceramic, slip|ceramics-containers', 'ao/mobile-large/64.228.29_a.JPG', 0.67), - SearchData(1475, 309389, 'Storage Jar (Aryballus)', 'bottle|ceramic|ceramics-containers', 'ao/mobile-large/66.30.6_a.jpg', 0.80), - SearchData(1500, 317591, 'Votive Container (Canopa)', 'vessel|stone|stone-containers', 'ao/mobile-large/1994.35.758.jpg', 1.50), - SearchData(1600, 316843, 'Kero', 'kero|wood, pigmented resin inlay|wood-containers', 'ao/mobile-large/hz1994_35_15.jpg', 0.71), - SearchData(-1000, 310662, 'Feline-shaped stirrup-spout bottle', 'bottle|ceramic|ceramics-containers', 'ao/mobile-large/DP-24349-001.jpg', 0.75), - SearchData(325, 309145, 'Chisel or tupu (pin)', 'pin|copper|metal-implements', 'ao/mobile-large/vs64_228_619.jpg', 0.31), - SearchData(1600, 316845, 'Kero', 'kero|wood (prosopis?), pigmented resin inlay|wood-containers', 'ao/mobile-large/hz1994_35_17.jpg', 0.80), - SearchData(1250, 316723, 'Serpent (tunjo)', 'figure|gold|metal-ornaments', 'ao/mobile-large/vs1992_92_1.jpg', 0.30), - SearchData(1500, 312635, 'Bronze Tumi with Figures', 'knife|bronze|metal-implements', 'ao/mobile-large/1979.206.415.JPG', 0.67), - SearchData(750, 316965, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/HZ1994_35_140.jpg', 1.12), - SearchData(1466, 315606, 'Tupu (pin)', 'pin|copper alloy|metal-ornaments', 'ao/mobile-large/vs1987_394_546.JPG', 0.64), - SearchData(1450, 314615, 'Woven Sling Shot', 'sling shot|camelid hair|textiles-woven', 'ao/mobile-large/250581.jpg', 2.65), - SearchData(600, 315161, 'Disk Ornament', 'ornament|gilded copper|metal-ornaments', 'ao/mobile-large/1987.394.99.JPG', 1.24), - SearchData(1500, 315290, 'Knife (Tumi)', 'knife|copper (cast)|metal-implements', 'ao/mobile-large/1987.394.230_a.jpg', 0.92), - SearchData(1475, 315486, 'Ornamented Knife (tumi)', 'knife|tin bronze|metal-implements', 'ao/mobile-large/DP108299.jpg', 1.03), - SearchData(-250, 308498, 'Bowl', 'bowl|ceramic, post-fired paint|ceramics-containers', 'ao/mobile-large/63.232.95a.jpg', 1.61), - SearchData(800, 309104, 'Tupu (pin)', 'pin|copper and gold|metal-ornaments', 'ao/mobile-large/hz64_228_606.jpg', 0.37), - SearchData(1499, 308287, 'Feathered Tabard', 'tabard|cotton, feathers|feathers-costumes', 'ao/mobile-large/DP216335.jpg', 0.83), - SearchData(1500, 315249, 'Copper Lime Spoon with Bird Top', 'lime spoon|copper (cast)|metal-implements', 'ao/mobile-large/VS1987_394_188.JPG', 0.50), - SearchData(-50, 310550, 'Bottle, Trophy-Head', 'bottle|ceramic|ceramics-containers', 'ao/mobile-large/vs1978_412_98.jpg', 0.77), - SearchData(600, 315147, 'Profile Warrior Ornament', 'ornament|gilded copper, shell|metal-ornaments', 'ao/mobile-large/1987.394.85.JPG', 0.84), - SearchData(600, 315119, 'Disk with Owl', 'ornament|gilded copper, silvered copper, shell, beads, fibers, organic pseudomorphs|metal-ornaments', 'ao/mobile-large/AOA49.jpg', 0.95), - SearchData(1700, 316850, 'Kero', 'kero|wood, tin studs, and pigmented resin inlays|wood-containers', 'ao/mobile-large/hz1994_35_22.jpg', 0.72), - SearchData(1500, 315333, 'Copper Lime Spoon with Feline Top', 'lime spoon|copper (cast)|metal-implements', 'ao/mobile-large/VS1987_394_288.JPG', 0.45), - SearchData(1500, 315265, 'Copper Lime Spoon', 'lime spoon|copper (cast)|metal-implements', 'ao/mobile-large/vs1987_394_205a.jpg', 0.78), - SearchData(650, 308408, 'Bottle with fox head', 'bottle|ceramic, slip|ceramics-containers', 'ao/mobile-large/DP-23624-001.jpg', 0.98), - SearchData(1250, 309540, 'Figure Pendant', 'pendant|gold|metal-ornaments', 'ao/mobile-large/DP-17780-001.jpg', 1.33), - SearchData(1420, 316939, 'Miniature Tunic', 'miniature tunic|cotton, camelid hair|textiles-woven', 'ao/mobile-large/DP-13440-003.jpg', 1.27), - SearchData(1475, 309396, 'Miniature Jar with Two Handles', 'jar|ceramic|ceramics-containers', 'ao/mobile-large/66.30.13.jpg', 1.05), - SearchData(1500, 315622, 'Silver Pin', 'pin|silver (hammered), gold|metal-ornaments', 'ao/mobile-large/VS1987_394_562.JPG', 0.27), - SearchData(1400, 310205, 'Bottle, Anthropomorphic Crab', 'bottle|ceramic, slip|ceramics-containers', 'ao/mobile-large/1976.287.14.JPG', 0.67), - SearchData(750, 316964, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/HZ1994_35_139.jpg', 1.24), - SearchData(1300, 698331, 'Pair of Earflares with Multifigure Scenes', 'earflare|gold|metal-ornaments', 'ao/mobile-large/DP370838.jpg', 1.82), - SearchData(500, 308415, 'Architectural Vessel', 'vessel|ceramic|ceramics-containers', 'ao/mobile-large/DP-23896-001.jpg', 0.65), - SearchData(1500, 315303, 'Lime Spoon, Bird', 'lime spoon|silver (hammered)|metal-implements', 'ao/mobile-large/VS1987_394_243.JPG', 0.45), - SearchData(1700, 316849, 'Kero', 'kero|wood (prosopis?)|wood-containers', 'ao/mobile-large/hz1994_35_21.jpg', 0.81), - SearchData(1700, 698427, 'Pair of Keros with Carved Feline Handles', 'kero|wood, pigmented resin inlays|wood-containers', 'ao/mobile-large/DP104803.jpg', 1.16), - SearchData(1600, 318145, 'Tunic', 'tunic|camelid hair|textiles-woven', 'ao/mobile-large/DP137345.jpg', 1.99), - SearchData(1450, 309753, 'Stirrup Spout Bottle with Fish', 'bottle|ceramic|ceramics-containers', 'ao/mobile-large/1970.245.38.jpg', 0.67), - SearchData(700, 316978, 'Four-Cornered Hat', 'hat|camelid fiber|textiles-costumes', 'ao/mobile-large/DP212590.jpg', 0.76), - SearchData(1500, 315253, 'Copper Lime Spoon with Bird Top', 'lime spoon|copper (cast)|metal-implements', 'ao/mobile-large/VS1987_394_192.JPG', 0.61), - SearchData(1500, 317593, 'Votive Container (Canopa)', 'container|stone|stone-containers', 'ao/mobile-large/1994.35.760.jpg', 1.51), - SearchData(1500, 313223, 'Funerary Staff', 'tomb post|wood, metal, paint, silver, gold (?)|wood-sculpture', 'ao/mobile-large/DP-23804-001.jpg', 0.39), - SearchData(800, 309229, 'Tupu (pin)', 'pin|silver|metal-ornaments', 'ao/mobile-large/DP-13440-018.jpg', 1.69), - SearchData(1500, 313227, 'Funerary Staffs', 'tomb staff|wood|wood-sculpture', 'ao/mobile-large/DP-23811-001.jpg', 0.42), - SearchData(1475, 309398, 'Miniature Jar with Two Handles', 'jar|ceramic|ceramics-containers', 'ao/mobile-large/66.30.15.jpg', 1.12), - SearchData(1475, 316822, 'Feathered Tunic', 'tunic fragment|cotton, feathers|textiles-featherwork', 'ao/mobile-large/lb1993_474.jpg', 0.71), - SearchData(950, 309414, 'Beaker, Figure with Shell', 'beaker|gold|metal-containers', 'ao/mobile-large/66.196.27_a.JPG', 0.67), - SearchData(750, 316727, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/vs1994.35164a.jpg', 0.98), - SearchData(750, 316972, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/HZ1994_35_147.jpg', 1.09), - SearchData(1400, 318888, 'Headband', 'headband|camelid hair|textiles-woven', 'ao/mobile-large/DP-13440-001.jpg', 0.95), - SearchData(1550, 316930, 'Sling', 'sling|camelid hair|textiles-woven', 'ao/mobile-large/DP101341.jpg', 0.51), - SearchData(1550, 316920, 'Bag', 'bag|camelid hair|textiles-woven', 'ao/mobile-large/DP18714.jpg', 1.19), - SearchData(650, 313010, 'Figure with Ceremonial Objects', 'male figure|stone|stone-sculpture', 'ao/mobile-large/DP-23813-001.jpg', 0.51), - SearchData(1550, 316923, 'Bag', 'bag|cotton, camelid hair|textiles-woven', 'ao/mobile-large/DP101296.jpg', 0.94), - SearchData(1500, 317752, 'Lime Spoon, Bird', 'lime spoon|copper alloy (cast)|metal-implements', 'ao/mobile-large/DP-18884-002.jpg', 0.75), - SearchData(1250, 312669, 'Panel', 'panel|cotton, paint|textiles-woven', 'ao/mobile-large/1979_206_459_EX_01.jpg', 1.77), - SearchData(750, 316987, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/HZ1994_35_167.jpg', 1.06), - SearchData(750, 316343, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/HZ1994_35_153.jpg', 1.12), - SearchData(600, 315155, 'Stirrup Spout Bottle with Warrior', 'bottle|ceramic, slip|ceramics-containers', 'ao/mobile-large/1987.394.93.JPG', 0.67), - SearchData(1450, 308770, 'Ceremonial Knife (Tumi)', 'knife|copper|metal-implements', 'ao/mobile-large/64.228.242.JPG', 1.26), - SearchData(1475, 316838, 'Kero', 'kero|wood|wood-containers', 'ao/mobile-large/vs1994_35_10.jpg', 0.75), - SearchData(1491, 316938, 'Serpent ornament', 'ornament|cotton, camelid hair|textiles-woven', 'ao/mobile-large/1994.35.113_d.JPG', 1.50), - SearchData(1500, 312726, 'Ornamental Knife', 'knife|copper|metal-implements', 'ao/mobile-large/1979.206.516.JPG', 0.67), - SearchData(1475, 310233, 'Blackware Paccha with Feline', 'paccha|ceramic|ceramics-containers', 'ao/mobile-large/1976.287.42.jpg', 1.23), - SearchData(1450, 318338, 'Votive Container (Canopa)', 'container|stone|stone-containers', 'ao/mobile-large/1999.367.1.jpg', 1.50), - SearchData(1700, 316851, 'Kero', 'kero|wood, metal stud and pigmented resin inlays|wood-containers', 'ao/mobile-large/hz1994_35_23.jpg', 0.68), - SearchData(1600, 320804, 'Hanging (?) Fragment', 'tapestry fragment|camelid hair, cotton|textiles-woven', 'ao/mobile-large/TR.489.2010_a.jpg', 0.52), - SearchData(1500, 310667, 'Tomb Post', 'tomb post|wood, silver sheathing, feathers|metal-sculpture', 'ao/mobile-large/vs1978.412.222.jpg', 0.28), - SearchData(750, 314621, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/HZ1983_497_4.jpg', 1.03), - SearchData(450, 314679, 'Fox Warrior Bottle', 'bottle|ceramic, slip, pigment|ceramics-containers', 'ao/mobile-large/DP227399.jpg', 0.75), - SearchData(1500, 315254, 'Copper Lime Spoon with Bird Top', 'lime spoon|copper (cast)|metal-implements', 'ao/mobile-large/VS1987_394_193.JPG', 0.48), - SearchData(550, 309428, 'Ear Ornament, Winged Runner', 'earflare|gold, turquoise, sodalite, shell|metal-ornaments', 'ao/mobile-large/66.196.41.jpg', 0.90), - SearchData(750, 314620, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/hz1983_497_3.jpg', 1.15), - SearchData(800, 315686, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/250467.jpg', 0.90), - SearchData(1500, 315426, 'Copper Lime Spoon in Snake Form', 'lime spoon|copper (cast)|metal-ornaments', 'ao/mobile-large/VS1987_394_577.JPG', 0.27), - SearchData(1500, 315307, 'Ball', 'ball|brass (cast), copper|metal-implements', 'ao/mobile-large/vs1987_394_246_7.JPG', 0.72), - SearchData(1450, 318339, 'Votive Container (Canopa)', 'container|stone|stone-containers', 'ao/mobile-large/1999.367.2.jpg', 1.27), - SearchData(1500, 313056, 'Funerary Staffs', 'tomb staff|wood, paint|wood-sculpture', 'ao/mobile-large/DP-23810-001.jpg', 0.43), - SearchData(1500, 308123, 'Beaker with scroll ornamentation', 'beaker|silver, gold|metal-containers', 'ao/mobile-large/vs33_149_103.jpg', 0.55), - SearchData(1450, 314614, 'Cap Woven with Human Hair', 'hat|camelid hair, human hair|textiles-woven', 'ao/mobile-large/250580.jpg', 0.58), - SearchData(1600, 314616, 'Woven Sling Shot', 'sling shot|camelid hair|textiles-woven', 'ao/mobile-large/250582.jpg', 2.14), - SearchData(1500, 315487, 'Ornamented Knife', 'knife|copper|metal-implements', 'ao/mobile-large/hz1987_394_412.jpg', 1.18), - SearchData(1500, 313274, 'Male Effigy Vessel', 'vessel|ceramic, pigment|ceramics-containers', 'ao/mobile-large/1979.206.1081_a.jpg', 0.71), - SearchData(1465, 319574, 'Tunic', 'tunic|camelid fiber|textiles-woven', 'ao/mobile-large/DP120795.jpg', 0.95), - SearchData(1400, 315610, 'Group of pins', 'pin|silver (hammered)|metal-ornaments', 'ao/mobile-large/DP219006.jpg', 0.67), - SearchData(1500, 315284, 'Copper Pin', 'pin|copper, gilt|metal-ornaments', 'ao/mobile-large/vs1987_394_224.JPG', 0.33), - SearchData(500, 309438, 'Bird Warrior Bottle', 'bottle|ceramic, pigment|ceramics-containers', 'ao/mobile-large/67.167.2.jpg', 0.67), - SearchData(1466, 309943, 'Male figurine', 'figure|gold-silver alloy|sculpture-sheet metal', 'ao/mobile-large/DP-13440-014.jpg', 0.76), - SearchData(1530, 313273, 'Ear Spool', 'ear spool|gold, silver|metal-ornaments', 'ao/mobile-large/vs1979_206_1079_80.jpg', 1.84), - SearchData(1650, 316848, 'Kero', 'kero|wood (prosopis?), copper/silver alloy inlay|wood-containers', 'ao/mobile-large/DT239579.jpg', 0.80), - SearchData(1500, 308083, 'Tapestry Fragment', 'textile fragment|camelid hair|textiles-woven', 'ao/mobile-large/DP101353.jpg', 1.31), - SearchData(1491, 316929, 'Sling', 'sling|camelid hair|textiles-woven', 'ao/mobile-large/DP101340.jpg', 0.72), - SearchData(600, 315133, 'Profile Warrior Ornament', 'ornament|gilded copper, shell turquoise|metal-ornaments', 'ao/mobile-large/1987.394.70.JPG', 0.76), - SearchData(1500, 315635, 'Figure Lime Spoon', 'lime spoon|copper|metal-implements', 'ao/mobile-large/1987.394.586.jpg', 0.67), - SearchData(1500, 310702, 'Storage Jar (aryballos)', 'bottle|ceramic|ceramics-containers', 'ao/mobile-large/vs1978_412_258.jpg', 0.79), - SearchData(1500, 313053, 'Funerary Staffs', 'tomb staff|wood, paint, metal|wood-sculpture', 'ao/mobile-large/DP-23809-001.jpg', 0.28), - SearchData(1500, 315425, 'Lime Spoon', 'lime spoon|silver (cast)|metal-ornaments', 'ao/mobile-large/VS1987_394_576.JPG', 0.38), - SearchData(1049, 309959, 'Funerary Mask', 'mask|gold, silver-copper overlays, cinnabar|metal-sculpture', 'ao/mobile-large/DT1274.jpg', 1.25), - SearchData(200, 314874, 'Cutout Disk, Crab and Fish', 'disk|gilded copper|metal-ornaments', 'ao/mobile-large/DT5791.jpg', 0.80), - SearchData(1500, 315260, 'Pin', 'pin|silver (cast)|metal-ornaments', 'ao/mobile-large/vs1987_394_200.JPG', 0.40), - SearchData(1650, 320054, 'Miniature Tabard', 'tunic|cotton, camelid hair, silk, metal|textiles-woven', 'ao/mobile-large/DP107700.jpg', 0.79), - SearchData(600, 315191, 'Disc', 'ornament|gilded copper|metal-ornaments', 'ao/mobile-large/1987.394.129.JPG', 1.30), - SearchData(1250, 319053, 'Collar', 'collar|spondylus shell and black stone beads, cotton|beads-costumes', 'ao/mobile-large/DP216742.jpg', 1.37), - SearchData(1500, 315354, 'Ceremonial Knife (Tumi)', 'knife|copper (cast), silver (?)|metal-implements', 'ao/mobile-large/vs1987_394_309.jpg', 0.93), - SearchData(1500, 315251, 'Copper Lime Spoon with Bird Top', 'lime spoon|copper (cast)|metal-implements', 'ao/mobile-large/VS1987_394_190.JPG', 0.38), - SearchData(750, 316985, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/HZ1994_35_165.jpg', 1.02), - SearchData(400, 310601, 'Ritual Scene Vessel', 'vessel|ceramic|ceramics-containers', 'ao/mobile-large/DP-24357-001.jpg', 1.33), - SearchData(1475, 316837, 'Kero', 'kero|wood (prosopis ?)|wood-containers', 'ao/mobile-large/DP104801.jpg', 0.83), - SearchData(500, 309304, 'Stirrup Spout Bottle with Cat', 'bottle|ceramic, slip|ceramics-containers', 'ao/mobile-large/65.266.6.JPG', 0.67), - SearchData(1500, 315248, 'Copper Pin', 'pin|copper (cast)|metal-ornaments', 'ao/mobile-large/vs1987_394_187.JPG', 0.34), - SearchData(1500, 315690, 'Bag', 'bag|camelid hair, cotton|textiles-woven', 'ao/mobile-large/DP18706_1987.394.642.jpg', 0.82), - SearchData(1466, 312558, 'Female Figurine', 'figure|silver|sculpture-sheet metal', 'ao/mobile-large/DP-13440-027.jpg', 0.67), - SearchData(500, 308527, 'Portrait Head Bottle', 'bottle|ceramic, slip, pigment|ceramics-containers', 'ao/mobile-large/DP-23630-001.jpg', 0.75), - SearchData(-500, 308426, 'Bottle, Feline face', 'bottle|ceramic, post-fired paint|ceramics-containers', 'ao/mobile-large/63.232.9.jpg', 0.75), - SearchData(1500, 315708, 'Band Fragment', 'textile fragment|cotton, camelid hair|textiles-woven', 'ao/mobile-large/DP18703.jpg', 0.35), - SearchData(1500, 314954, 'Paccha (ritual vessel)', 'vessel|ceramic, slip|ceramics-containers', 'ao/mobile-large/DP-23632-001.jpg', 1.06), - SearchData(1500, 312636, 'Ornamental Pin (Tupu)', 'pin|bronze|metal-ornaments', 'ao/mobile-large/vs1979_206_416aa.jpg', 0.38), - SearchData(1850, 29313, 'Pair of Stirrups', 'stirrups|wood, iron|equestrian equipment-stirrups', 'aa/mobile-large/LC-42_50_440_441-007.jpg', 1.50), - SearchData(750, 316968, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/HZ1994_35_143.jpg', 1.13), - SearchData(750, 312672, 'Mantle', 'mantle|cotton, camelid hair|textiles-woven', 'ao/mobile-large/DP264884.jpg', 1.02), - SearchData(1500, 315242, 'Ceremonial Knife (Tumi)', 'knife|copper (cast)|metal-implements', 'ao/mobile-large/1987.394.181.jpg', 0.67), - SearchData(600, 313398, 'Nose Ornament, Turbaned Head', 'ornament|gold (partially silvered), silver|metal-ornaments', 'ao/mobile-large/DP-16100-001.jpg', 1.33), - SearchData(1200, 307471, 'Border Fragment', 'border fragment|camelid hair, cotton|textiles-woven', 'ao/mobile-large/DP101363.jpg', 1.12), - SearchData(1500, 313054, 'Funerary Staffs', 'tomb staff|wood, paint|wood-sculpture', 'ao/mobile-large/DP-22195-004.jpg', 0.65), - SearchData(550, 316983, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/HZ1994_35_163.jpg', 0.90), - SearchData(1515, 313324, 'Sleeveless Tunic', 'tunic|cotton, camelid hair|textiles-woven', 'ao/mobile-large/1979.206.1131_a.jpg', 0.77), - SearchData(550, 319459, 'Pair of Ear Ornaments with Winged Runners', 'earflare|gold, turquoise, sodalite, shell|metal-ornaments', 'ao/mobile-large/DP-10734-01.jpg', 1.35), - SearchData(1500, 315338, 'Knife (?)', 'knife|copper|metal-implements', 'ao/mobile-large/vs1987_394_293.jpg', 1.29), - SearchData(1410, 316437, 'Earflare with Multifigure Scene', 'earflare|gold|metal-ornaments', 'ao/mobile-large/DP370837.jpg', 0.99), - SearchData(1500, 315613, 'Silver Pin', 'pin|silver (hammered)|metal-ornaments', 'ao/mobile-large/vs1987_394_553.JPG', 0.39), - SearchData(1475, 316836, 'Kero', 'kero|wood (prosopis ?)|wood-containers', 'ao/mobile-large/hz1994_35_8.jpg', 0.77), - SearchData(-550, 307622, 'Double Spout and Bridge Bottle', 'bottle|ceramic, pigment|ceramics-containers', 'ao/mobile-large/64.228.97_a.jpg', 1.09), - SearchData(1500, 313267, 'Kero', 'kero|wood|wood-containers', 'ao/mobile-large/1979.206.1074.jpg', 1.00), - SearchData(1500, 308120, 'Eight-Pointed Star Tunic', 'tunic|camelid hair, cotton|textiles-woven', 'ao/mobile-large/ra33.149.100.R.jpg', 0.81), - SearchData(1462, 319524, 'Fragmentary Woman\'s Dress', 'dress fragment|camelid fiber|textiles-woven', 'ao/mobile-large/2004.406_detail.jpg', 0.67), - SearchData(600, 313411, 'Nose Ornament with Shrimp', 'nose ornament|gold, silver, stone|metal-ornaments', 'ao/mobile-large/DT9425.jpg', 1.25), - SearchData(450, 318746, 'Belt', 'belt|camelid fiber|textiles-woven', 'ao/mobile-large/2001.172_b.jpg', 0.38), - SearchData(500, 309441, 'Raptorial Bird Bottle', 'bottle|ceramic, pigment|ceramics-containers', 'ao/mobile-large/67.167.6.JPG', 0.67), - SearchData(850, 316976, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/HZ1994_35_156.jpg', 1.24), - SearchData(650, 316979, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/DT3833.jpg', 0.80), - SearchData(1500, 315653, 'Copper Tumi with Figure', 'knife|copper|metal-implements', 'ao/mobile-large/vs1987_394_605.jpg', 1.02), - SearchData(550, 308383, 'Spectacled Bear Bottle', 'bottle|ceramic, slip|ceramics-containers', 'ao/mobile-large/63.112.5.JPG', 0.67), - SearchData(1475, 317726, 'Tumi with Figure', 'knife|copper|metal-implements', 'ao/mobile-large/VS1995_63_1.JPG', 1.06), - SearchData(1399, 310619, 'Bottle, Audiencias with Figures', 'vessel|silver|metal-containers', 'ao/mobile-large/DP338094.jpg', 1.33), - SearchData(800, 316975, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/HZ1994_35_155.jpg', 1.10), - SearchData(1700, 316892, 'Woman\'s Mantle (lliclla)', 'mantle|camelid hair|textiles-woven', 'ao/mobile-large/DT3832rev.jpg', 1.25), - SearchData(1475, 316834, 'Paccha', 'paccha|wood|wood-containers', 'ao/mobile-large/vs1994_35_6.jpg', 1.52), - SearchData(0, 308455, 'Bottle, Monkey', 'bottle|ceramic, slip|ceramics-containers', 'ao/mobile-large/DP234684.jpg', 1.13), - SearchData(600, 314537, 'Disk', 'ornament|gilded copper, silvered copper, shell inlay|metal-ornaments', 'ao/mobile-large/1982.392.8.jpg', 1.50), - SearchData(1500, 315636, 'Lime Spoon, Figure', 'lime spoon|copper|metal-implements', 'ao/mobile-large/1987.394.587.jpg', 0.67), - SearchData(300, 316270, 'Corn stalk-shaped vessel', 'bottle|ceramic, slip|ceramics-containers', 'ao/mobile-large/DP-23629-001.jpg', 0.75), - SearchData(650, 844007, 'Warrior Figure', 'figure|turquoise|stone-sculpture', 'ao/mobile-large/DP-20565-001.jpg', 0.85), - SearchData(1450, 316928, 'Sling', 'sling|camelid hair|textiles-woven', 'ao/mobile-large/vs1994.35.103a.jpg', 1.03), - SearchData(1500, 315268, 'Copper Lime Spoon with Bird Top', 'lime spoon|copper|metal-implements', 'ao/mobile-large/VS1987_394_208.jpg', 0.36), - SearchData(700, 310308, 'Prisoner Lime Container', 'lime container|wood, bone inlay, paint, fiber|wood-containers', 'ao/mobile-large/DP270994.jpg', 0.90), - SearchData(800, 309106, 'Tupu (pin)', 'pin|copper and gold|metal-ornaments', 'ao/mobile-large/hz64_228_608.jpg', 0.40), - SearchData(850, 314624, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/HZ1983_497_7.jpg', 1.13), - SearchData(350, 308507, 'Bottle with Runners', 'bottle|ceramic, slip|ceramics-containers', 'ao/mobile-large/64.228.1.JPG', 0.67), - SearchData(100, 314776, 'Ornamental Plume', 'ornament|gold|metal-ornaments', 'ao/mobile-large/DT7665.jpg', 0.57), - SearchData(1450, 315363, 'Face Beaker', 'beaker|silver|metal-containers', 'ao/mobile-large/DT5795.jpg', 0.61), - SearchData(1750, 316852, 'Kero', 'kero|wood (escallonia?), pigmented resin inlay|wood-containers', 'ao/mobile-large/hz1994_35_24.jpg', 1.02), - SearchData(800, 316982, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/HZ1994_35_162.jpg', 1.01), - SearchData(1500, 315804, 'Copper Tumi with Figure', 'knife|copper|metal-implements', 'ao/mobile-large/vs1987_394_723.jpg', 0.89), - SearchData(1849, 126673, 'Mantle pin (ttipqui)', 'pin|silver, glass|metal-ornaments', 'ao/mobile-large/1982.420.13.jpg', 0.25), - SearchData(750, 316977, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/HZ1994_35_157.jpg', 1.16), - SearchData(1500, 315266, 'Copper Lime Spoon with Bird Top', 'lime spoon|copper (cast)|metal-implements', 'ao/mobile-large/VS1987_394_206.JPG', 0.87), - SearchData(1400, 315611, 'Pin', 'pin|silver (hammered)|metal-ornaments', 'ao/mobile-large/vs1987_394_551.JPG', 0.70), - SearchData(1500, 315306, 'Ball', 'ball|brass (cast)|metal-implements', 'ao/mobile-large/vs1987_394_246_7.JPG', 0.72), - SearchData(1500, 319536, 'Seated Figure Ornament with Dangles', 'ornament|silver and thread|metal-ornaments', 'ao/mobile-large/vs565.jpg', 0.71), - SearchData(1420, 317727, 'Feline Bowl', 'bowl|stone|stone-containers', 'ao/mobile-large/1995.63.2_a.jpg', 1.47), - SearchData(1500, 315633, 'Figure Lime Spoon', 'lime spoon|copper|metal-implements', 'ao/mobile-large/1987.394.584.jpg', 0.67), - SearchData(1500, 317592, 'Votive Container (Canopa)', 'vessel|stone|stone-containers', 'ao/mobile-large/1994.35.759.jpg', 1.50), - SearchData(750, 316340, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/HZ1994_35_150.jpg', 1.04), - SearchData(1500, 309528, 'Band', 'band|camelid hair|textiles-woven', 'ao/mobile-large/189514.jpg', 2.68), - SearchData(1475, 309393, 'Miniature Vessel', 'miniature dish|ceramic|ceramics-containers', 'ao/mobile-large/DP-25093-001.jpg', 2.15), - SearchData(1530, 313272, 'Ear Spool', 'ear spool|gold, silver|metal-ornaments', 'ao/mobile-large/vs1979_206_1079_80.jpg', 1.84), - SearchData(1505, 502538, 'Whistling Jar', 'whistling jar|clay|aerophone-blow hole-vessel flute', 'mi/mobile-large/188965.jpg', 0.91), - SearchData(1500, 317594, 'Votive Container (Canopa)', 'container|stone|stone-containers', 'ao/mobile-large/1994.35.761.jpg', 1.42), - SearchData(1600, 214310, 'Woman\'s wedding mantle (lliclla) with interlace and tocapu design', 'mantle|tapestry weave, cotton warp and camelid weft|', 'ad/mobile-large/DP265667.jpg', 1.12), - SearchData(-650, 310655, 'Bottle: Leaf-Nosed Bat Head', 'bottle|ceramic, pigment|ceramics-containers', 'ao/mobile-large/DP-24265-003.jpg', 0.78), - SearchData(1500, 313224, 'Funerary Staffs', 'tomb post|wood, paint, metal|wood-sculpture', 'ao/mobile-large/DP-23802-001.jpg', 0.36), - SearchData(1500, 315252, 'Copper Lime Spoon with Bird Top', 'lime spoon|copper (cast)|metal-implements', 'ao/mobile-large/VS1987_394_191.JPG', 0.42), - SearchData(600, 315148, 'Profile Warrior Ornament', 'ornament|gilded copper, shell, turquoise|metal-ornaments', 'ao/mobile-large/1987.394.86.JPG', 0.88), - SearchData(1500, 315667, 'Copper Atlatl Spear Thrower', 'spear thrower|copper (cast)|metal-implements', 'ao/mobile-large/vs1987_394_619.JPG', 1.33), - SearchData(700, 314623, 'Four-Cornered Hat', 'hat|camelid fiber|textiles-costumes', 'ao/mobile-large/DP264888.jpg', 0.83), - SearchData(1500, 310668, 'Tomb Post', 'tomb post|wood, silver sheathing, feathers|metal-sculpture', 'ao/mobile-large/vs1978.412.223.jpg', 0.27), - SearchData(1466, 309960, 'Camelid figurine', 'figure|alloys of silver, gold and copper|metalwork-sculpture', 'ao/mobile-large/DP-13440-031.jpg', 0.76), - SearchData(1250, 313148, 'Weaving Basket', 'basket with weaving implements|cane, shell, bone, fiber, camelid hair, wood, pigment, metal, stone|textiles-implements', 'ao/mobile-large/1979.206.950.1_a.JPG', 1.50), - SearchData(1550, 316840, 'Kero', 'kero|wood, pigmented resin inlay|wood-containers', 'ao/mobile-large/hz1994_35_12.jpg', 0.75), - SearchData(1500, 319319, 'Kero', 'kero|ceramic|ceramics-containers', 'ao/mobile-large/hzTR355_1_2003.jpg', 0.86), - SearchData(600, 314878, 'Cutout Disk', 'ornament|gilded copper|metal-ornaments', 'ao/mobile-large/1987.394.50.JPG', 1.22), - SearchData(1500, 313204, 'Dish with Bird Head', 'dish|ceramic, pigment|ceramics-containers', 'ao/mobile-large/1979.206.1007.jpg', 1.58), - SearchData(1500, 315771, 'Votive Container (Canopa)', 'container|stone|stone-containers', 'ao/mobile-large/vs1987.394.691.jpg', 1.17), - SearchData(350, 308510, 'Bottle, Warriors', 'bottle|ceramic, slip, pigment|ceramics-containers', 'ao/mobile-large/64.228.4.JPG', 0.67), - SearchData(750, 316989, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/HZ1994_35_169.jpg', 1.12), - SearchData(1150, 320329, 'Monkey Pendant', 'pendant|gold|metal-ornaments', 'ao/mobile-large/TR.394.18.2008 Back.jpg', 2.21), - SearchData(1500, 315639, 'Silver Lime Spoon with Fish Top', 'lime spoon|silver (cast)|metal-implements', 'ao/mobile-large/vs1987_394_590.jpg', 0.48), - SearchData(550, 316984, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/1994.35.164_b.jpg', 0.74), - SearchData(400, 308540, 'Stirrup Spout Bottle with Seated Figure', 'bottle|ceramic, slip|ceramics-containers', 'ao/mobile-large/LC-64_228_34_TMS3.jpg', 0.66), - SearchData(1200, 312826, 'Miniature Dress', 'miniature dress|cotton, feathers|textiles-featherwork', 'ao/mobile-large/DP224272.jpg', 1.33), - SearchData(1650, 316853, 'Kero', 'kero|wood (escallonia), pigmented resin inlay|wood-containers', 'ao/mobile-large/hz1994_35_25.jpg', 1.36), - SearchData(50, 313364, 'Nose Ornament with Spiders', 'nose ornament|gold|metal-ornaments', 'ao/mobile-large/DP313281.jpg', 1.33), - SearchData(650, 308410, 'Stirrup spout bottle with warrior', 'bottle|ceramic, slip|ceramics-containers', 'ao/mobile-large/DP-23622-001.jpg', 0.75), - SearchData(1400, 308555, 'Double Chambered Bottle', 'bottle|ceramic|ceramics-containers', 'ao/mobile-large/64.228.54_b.jpg', 1.05), - SearchData(1466, 315668, 'Tupu (pin)', 'pin|copper or alloy of copper|metal-ornaments', 'ao/mobile-large/DP-13440-020.jpg', 1.69), - SearchData(1500, 315294, 'Mace Head', 'mace head|silver (cast)|metal-implements', 'ao/mobile-large/DP-20709-001.jpg', 1.09), - SearchData(1238, 646249, 'Man\'s Tunic', 'tunic|camelid and cotton fibers|textiles-costumes', 'ao/mobile-large/TR.113.2014_image_001.jpg', 0.89), - SearchData(1549, 751901, 'Checkerboard Tunic', 'tunic|camelid fiber|textiles-costumes', 'ao/mobile-large/DP-14281-001.jpg', 0.88), - SearchData(1475, 317791, 'Kero', 'kero|wood (prosopis?)|wood-containers', 'ao/mobile-large/DP104877.jpg', 1.01), - SearchData(1500, 313289, 'Vessel, Hand with Kero', 'kero|ceramic, pigment|ceramics-containers', 'ao/mobile-large/1979.206.1096_b.jpg', 1.40), - SearchData(1475, 309399, 'Miniature Jar', 'jar|ceramic|ceramics-containers', 'ao/mobile-large/66.30.16.jpg', 1.09), - SearchData(750, 316969, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/HZ1994_35_144.jpg', 1.07), - SearchData(1462, 319487, 'Kero', 'kero|wood|wood-containers', 'ao/mobile-large/DP-13440-026.jpg', 0.86), - SearchData(1500, 315476, 'Axe', 'axe|bronze|metal-implements', 'ao/mobile-large/vs1987_394_401.JPG', 0.45), - SearchData(1550, 316922, 'Bag', 'bag|cotton, camelid hair|textiles-woven', 'ao/mobile-large/DP101295.jpg', 0.93), - SearchData(1420, 313295, 'Face Beaker', 'beaker|silver|metal-containers', 'ao/mobile-large/DT9410.jpg', 0.80), - SearchData(1600, 314617, 'Woven Sling Shot', 'sling shot|camelid hair|textiles-woven', 'ao/mobile-large/250583.jpg', 2.00), - SearchData(750, 833953, 'Tapestry Tunic', 'tunic|camelid wool|textiles-woven', 'ao/mobile-large/DP-18736-001.jpg', 0.95), - SearchData(850, 316974, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/HZ1994_35_154.jpg', 1.08), - SearchData(750, 316967, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/HZ1994_35_142.jpg', 1.04), - SearchData(1500, 315773, 'Sling Shot', 'sling shot|camelid hair|textiles-woven', 'ao/mobile-large/250471.jpg', 2.17), - SearchData(650, 307472, 'Bottle with portrait head', 'bottle|ceramic, slip|ceramics-containers', 'ao/mobile-large/DP-24066-002.jpg', 0.75), - SearchData(1500, 315637, 'Figure Lime Spoon', 'lime spoon|copper (cast)|metal-implements', 'ao/mobile-large/1987.394.588.jpg', 0.67), - SearchData(1500, 315619, 'Silver Pin', 'pin|silver (hammered)|metal-ornaments', 'ao/mobile-large/vs1987_394_559.JPG', 0.64), - SearchData(1500, 314955, 'Paccha (ritual vessel)', 'vessel|ceramic, slip|ceramics-containers', 'ao/mobile-large/vs1986_383_2.jpg', 1.22), - SearchData(-400, 308487, 'Double Spouted Vessel with Snake', 'bottle|ceramic, post-fired paint|ceramics-containers', 'ao/mobile-large/63.232.84.jpg', 1.40), - SearchData(1500, 315770, 'Votive Container (Canopa)', 'container|stone|stone-containers', 'ao/mobile-large/1987.394.690.jpg', 1.31), - SearchData(500, 309447, 'Spotted Feline Bottle', 'bottle|ceramic, pigment|ceramics-containers', 'ao/mobile-large/67.167.12.JPG', 0.67), - SearchData(-350, 308590, 'Double Spout and Bridge Bottle with Snake', 'bottle|ceramic, pigment|ceramics-containers', 'ao/mobile-large/64.228.89_a.jpg', 1.17), - SearchData(1500, 309760, 'Painted Aryballus Jar', 'bottle|ceramic, pigment, slip|ceramics-containers', 'ao/mobile-large/1970.246.7.jpg', 0.84), - SearchData(-250, 308491, 'Miniature Effigy Vessel', 'bottle|ceramic, post-fired paint|ceramics-containers', 'ao/mobile-large/63.232.88.jpg', 1.02), - SearchData(1500, 315255, 'Copper Lime Spoon with Bird Top', 'lime spoon|copper (cast)|metal-implements', 'ao/mobile-large/VS1987_394_194.JPG', 0.42), - SearchData(250, 308537, 'Stirrup Spout Bottle with Warrior Figure', 'bottle|ceramic, slip|ceramics-containers', 'ao/mobile-large/64.228.31.jpg', 0.67), - SearchData(1410, 316436, 'Earflare with Multifigure Scene', 'earflare|gold|metal-ornaments', 'ao/mobile-large/DP370836.jpg', 0.99), - SearchData(750, 316981, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/HZ1994_35_161.jpg', 0.99), - SearchData(1466, 315492, 'Male Figurine', 'figure|silver|sculpture-sheet metal', 'ao/mobile-large/DP-13440-021.jpg', 0.68), - SearchData(1500, 307846, 'Panel with Birds', 'panel|camelid hair|textiles-woven', 'ao/mobile-large/88392.jpg', 1.07), - SearchData(75, 319223, 'Neck Emblem or Sash', 'emblem or sash|camelid and human hair|textiles-woven', 'ao/mobile-large/DT5611.jpg', 0.28), - SearchData(800, 309228, 'Tupu', 'pin|silver|metal-ornaments', 'ao/mobile-large/DP-13440-016.jpg', 1.69), - SearchData(1500, 315638, 'Figure Lime Spoon', 'lime spoon|copper|metal-implements', 'ao/mobile-large/1987.394.589.jpg', 0.67), - SearchData(1500, 315701, 'Vessel, Leg', 'vessel|ceramic, pigment|ceramics-containers', 'ao/mobile-large/1987.394.653_a.jpg', 0.67), - SearchData(1600, 316844, 'Kero', 'kero|wood, pigmented resin inlay|wood-containers', 'ao/mobile-large/hz1994_35_16.jpg', 0.70), - SearchData(1500, 308079, 'Tapestry Panel with Stars', 'panel|camelid hair, cotton|textiles-woven', 'ao/mobile-large/DP18702_33.149.44.jpg', 0.71), - SearchData(1300, 312568, 'Standing Female Figure', 'figure|wood, pigment|wood-sculpture', 'ao/mobile-large/DP-23635-002.jpg', 0.52), - SearchData(1500, 315614, 'Silver Pin', 'pin|silver (hammered)|metal-ornaments', 'ao/mobile-large/vs1987_394_554.JPG', 0.64), - SearchData(1600, 698417, 'Pair of Keros', 'kero|wood, pigmented resin inlay|wood-containers', 'ao/mobile-large/DP104802.jpg', 1.06), - SearchData(1500, 315250, 'Copper Lime Spoon with Bird Top', 'lime spoon|copper (cast)|metal-implements', 'ao/mobile-large/VS1987_394_189.JPG', 0.49), - SearchData(1650, 318164, 'Poncho', 'poncho|wool|textiles-woven', 'ao/mobile-large/DP137349.jpg', 1.76), - SearchData(400, 308732, 'Figure of an Owl', 'figure|bone, cinnabar|bone/ivory-sculpture', 'ao/mobile-large/DP224140.jpg', 0.75), - SearchData(1500, 313055, 'Funerary Staff', 'tomb staff|wood, paint, metal, copper|wood-sculpture', 'ao/mobile-large/DP-23806-001.jpg', 0.32), - SearchData(1475, 309391, 'Miniature Vessel', 'miniature dish|ceramic|ceramics-containers', 'ao/mobile-large/DP-24276-001.jpg', 1.11), - SearchData(-200, 308298, 'Bottle, Falcon', 'bottle|ceramic, pigment|ceramics-containers', 'ao/mobile-large/62.266.8.jpg', 0.93), - SearchData(1500, 307475, 'Knife (Tumi)', 'knife|copper|metal-implements', 'ao/mobile-large/82.1.31_a.JPG', 1.50), - SearchData(1500, 315479, 'Knife', 'knife|copper|metal-implements', 'ao/mobile-large/vs1987_394_404.jpg', 0.37), - SearchData(1500, 315616, 'Pin', 'pin|silver (hammered)|metal-ornaments', 'ao/mobile-large/vs1987_394_556.JPG', 0.62), - SearchData(650, 312940, 'Bird Pin or Spatula', 'lime spatula or pin|gold|metal-implements', 'ao/mobile-large/271370.jpg', 1.30), - SearchData(500, 309439, 'Warrior Bottle', 'bottle|ceramic|ceramics-containers', 'ao/mobile-large/DP229470.jpg', 0.75), - SearchData(750, 316971, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/HZ1994_35_146.jpg', 1.12), - SearchData(1575, 316842, 'Kero', 'kero|wood (escallonia ?), pigmented resin inlay|wood-containers', 'ao/mobile-large/DP104799.jpg', 0.97), - SearchData(1475, 316839, 'Kero', 'kero|wood (escallonia ?)|wood-containers', 'ao/mobile-large/DP104864.jpg', 0.94), - SearchData(1500, 315615, 'Silver Pin', 'pin|silver (hammered)|metal-ornaments', 'ao/mobile-large/vs1987_394_555.JPG', 0.82), - SearchData(600, 315135, 'Profile Warrior Ornament', 'ornament|copper, shell|metal-ornaments', 'ao/mobile-large/1987.394.73.JPG', 0.74), - SearchData(1466, 315651, 'Tupu (pin)', 'pin|copper|metal-ornaments', 'ao/mobile-large/VS1987_394_603.JPG', 0.58), - SearchData(1475, 310520, 'Small urpu (Jar)', 'bottle|ceramic, slip|ceramics-containers', 'ao/mobile-large/DP-24355-001.jpg', 0.75), - SearchData(1500, 315612, 'Pin', 'pin|silver (hammered)|metal-ornaments', 'ao/mobile-large/vs1987_394_552.JPG', 0.44), - SearchData(650, 315136, 'Profile Warrior Ornament', 'ornament|silvered copper, shell|metal-ornaments', 'ao/mobile-large/1987.394.74.JPG', 0.71), - SearchData(750, 316966, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/HZ1994_35_141.jpg', 1.06), - SearchData(1500, 315623, 'Silver Pin', 'pin|silver|metal-ornaments', 'ao/mobile-large/VS1987_394_563.jpg', 0.39), - SearchData(1475, 316926, 'Feathered Bag', 'bag|cotton, feathers|textiles-featherwork', 'ao/mobile-large/DP158704.jpg', 0.75), - SearchData(600, 314705, 'Cutout Disk', 'ornament|gilded copper|metal-ornaments', 'ao/mobile-large/1987.394.35.JPG', 1.50), - SearchData(1650, 316854, 'Kero', 'kero|wood (escallonia), pigmented resin inlay|wood-containers', 'ao/mobile-large/1994.35.26_a.JPG', 0.67), - SearchData(1350, 313268, 'Lime Spoon with Seated Figure', 'lime spoon|silver (cast)|metal-implements', 'ao/mobile-large/vs1979_206_1075.jpg', 0.29), - SearchData(1000, 309123, 'Crown', 'crown|gold|metal-ornaments', 'ao/mobile-large/DP-12423-001.jpg', 0.88), - SearchData(1475, 309392, 'Miniature Dish with Handle', 'dish|ceramic|ceramics-containers', 'ao/mobile-large/DP-13440-005.jpg', 1.82), - SearchData(750, 316342, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/HZ1994_35_152.jpg', 1.17), - SearchData(1475, 309395, 'Miniature Vessel', 'miniature bowl|ceramic|ceramics-containers', 'ao/mobile-large/DP-13440-010.jpg', 0.99), - SearchData(600, 313414, 'Nose Ornament', 'nose ornament|gold|metal-ornaments', 'ao/mobile-large/vs1979_206_1239.jpg', 1.64), - SearchData(1466, 309944, 'Female Figurine', 'figure|gold-rich silver alloy|sculpture-sheet metal', 'ao/mobile-large/DP-13440-023.jpg', 0.69), - SearchData(1500, 310656, 'Hunchback Paccha', 'paccha|wood, beads|wood-containers', 'ao/mobile-large/vs1978_412_211.jpg', 0.76), - SearchData(750, 314625, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/HZ1983_497_8.jpg', 1.17), - SearchData(600, 314872, 'Cutout Disk', 'ornament|gilded copper|metal-ornaments', 'ao/mobile-large/1987.394.34.jpg', 1.50), - SearchData(1475, 309401, 'Single Spout Bottle with Strap Handles', 'bottle|ceramic, pigment|ceramics-containers', 'ao/mobile-large/66.30.18_a.jpg', 1.29), - SearchData(550, 316913, 'Coca Bag', 'bag|camelid hair, cotton|textiles-woven', 'ao/mobile-large/LC-1994_35_88_TMS.jpg', 0.66), - SearchData(600, 315174, 'Disk Ornament', 'ornament|gilded copper|metal-ornaments', 'ao/mobile-large/DP-16099-001.jpg', 1.33), - SearchData(750, 316988, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/HZ1994_35_168.jpg', 1.18), - SearchData(750, 316341, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/HZ1994_35_151.jpg', 1.13), - SearchData(1050, 316986, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/HZ1994_35_166.jpg', 1.19), - SearchData(1475, 314823, 'Votive Container (Canopa)', 'container|stone|stone-containers', 'ao/mobile-large/vs1984_524_1.jpg', 1.40), - SearchData(1350, 315748, 'Sling shot', 'sling shot|silver (hammered), feathers|metal-implements', 'ao/mobile-large/SlingShot_1987_394_668_1.jpg', 1.11), - SearchData(500, 309436, 'Stirrup Spout Bottle with Felines', 'bottle|ceramic, pigment|ceramics-containers', 'ao/mobile-large/67.92.jpg', 0.67), - SearchData(750, 312244, 'Feathered Panel', 'panel|feathers, cotton, camelid hair|textiles-featherwork', 'ao/mobile-large/DP-15008-019.jpg', 2.24), - SearchData(1500, 307449, 'Bag', 'bag|cotton|textiles-woven', 'ao/mobile-large/50407.jpg', 0.72), - SearchData(1500, 315332, 'Lime Spoon, Bird', 'lime spoon|copper (cast)|metal-implements', 'ao/mobile-large/VS1987_394_287.JPG', 0.57), - SearchData(1543, 751900, 'Votive Checkerboard Tunic', 'tunic|camelid fiber|textiles-costumes', 'ao/mobile-large/DP-14285-001.jpg', 0.84), - SearchData(1475, 309394, 'Storage Jar (Aryballus)', 'bottle|ceramic|ceramics-containers', 'ao/mobile-large/DP-13440-012.jpg', 1.00), - SearchData(250, 308539, 'Stirrup Spout Bottle with Sleeping Warrior', 'bottle|ceramic, slip, pigment|ceramics-containers', 'ao/mobile-large/64.228.33.JPG', 0.67), - SearchData(1650, 307469, 'Knife, Figures', 'knife|bronze|metal-implements', 'ao/mobile-large/82.1.25_a.JPG', 0.67), - SearchData(1500, 317751, 'Paccha', 'paccha|ceramic, pigment|ceramics-containers', 'ao/mobile-large/1995.481.3_b.jpg', 1.99), - SearchData(750, 314622, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes', 'ao/mobile-large/HZ1983_497_5.jpg', 1.19), - SearchData(1500, 315267, 'Copper Lime Spoon with Bird Top', 'lime spoon|copper (cast)|metal-implements', 'ao/mobile-large/VS1987_394_207.jpg', 0.44), - SearchData(1000, 316431, 'Beaker with Figure Displaying a Shell', 'beaker|gold|metal-containers', 'ao/mobile-large/DP215719.jpg', 0.80), - SearchData(1385, 312952, 'Standing Male Figure', 'male figure|wood|wood-sculpture', 'ao/mobile-large/DP-24345-001.jpg', 0.52), - SearchData(600, 315134, 'Profile Warrior Ornament', 'ornament|gilded copper, shell|metal-ornaments', 'ao/mobile-large/1987.394.71.JPG', 0.67), - SearchData(1400, 310566, 'Copper Knife with Figure Handle', 'knife|copper|metal-implements', 'ao/mobile-large/1978.412.114_a.JPG', 1.50), - SearchData(1500, 315634, 'Figure Lime Spoon', 'lime spoon|copper|metal-implements', 'ao/mobile-large/1987.394.585.jpg', 0.67), - SearchData(1475, 316835, 'Paccha', 'paccha|wood|wood-containers', 'ao/mobile-large/1994.35.7.jpg', 0.64), - SearchData(1500, 315617, 'Silver Pin', 'pin|silver (hammered)|metal-ornaments', 'ao/mobile-large/vs1987_394_557.JPG', 0.50), - SearchData(1475, 309390, 'Miniature Vessel', 'miniature dish|ceramic|ceramics-containers', 'ao/mobile-large/DP-24277-001.jpg', 1.09), - SearchData(1350, 312801, 'Plume', 'plume|gold|metal-ornaments', 'ao/mobile-large/rlf1979.206.605b.jpg', 0.75), - SearchData(1425, 317736, 'Woman\'s Dress', 'dress|camelid hair|textiles-woven', 'ao/mobile-large/DT1275.jpg', 1.25), - SearchData(1500, 313310, 'Single Spout Bottle', 'bottle|ceramic|ceramics-containers', 'ao/mobile-large/1979.206.1117.jpg', 0.80), - SearchData(1475, 309397, 'Miniature Jar with Two Handles', 'jar|ceramic|ceramics-containers', 'ao/mobile-large/66.30.14.jpg', 1.09), - SearchData(1500, 315621, 'Silver Pin', 'pin|silver (hammered)|metal-ornaments', 'ao/mobile-large/VS1987_394_561.JPG', 0.37), -]; \ No newline at end of file + SearchData(1467, 313287, 'Urpu (jar)', 'bottle|ceramic, slip|ceramics-containers'), + SearchData(1500, 314528, 'Tunic with Diamond Band', 'tunic|camelid hair, cotton|textiles-woven'), + SearchData(750, 316969, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(800, 309228, 'Tupu', 'pin|silver|metal-ornaments'), + SearchData(700, 316978, 'Four-Cornered Hat', 'hat|camelid fiber|textiles-costumes'), + SearchData(1400, 315611, 'Pin', 'pin|silver (hammered)|metal-ornaments'), + SearchData(1450, 318338, 'Votive Container (Canopa)', 'container|stone|stone-containers'), + SearchData(1600, 214310, 'Woman\'s wedding mantle (lliclla) with interlace and tocapu design', + 'mantle|tapestry weave, cotton warp and camelid weft|'), + SearchData(1250, 309540, 'Figure Pendant', 'pendant|gold|metal-ornaments'), + SearchData(1500, 307475, 'Knife (Tumi)', 'knife|copper|metal-implements'), + SearchData(750, 316727, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(725, 844007, 'Figurine', 'figure|turquoise|stone-sculpture'), + SearchData(1650, 316846, 'Kero (beaker)', 'kero|wood, tin inlay|wood-containers'), + SearchData(1450, 318339, 'Votive Container (Canopa)', 'container|stone|stone-containers'), + SearchData(1500, 310702, 'Storage Jar (aryballos)', 'bottle|ceramic|ceramics-containers'), + SearchData(1475, 309397, 'Miniature Jar with Two Handles', 'jar|ceramic|ceramics-containers'), + SearchData(1467, 309389, 'Urpu (jar)', 'bottle|ceramic, slip|ceramics-containers'), + SearchData(1400, 310566, 'Copper Knife with Figure Handle', 'knife|copper|metal-implements'), + SearchData(1530, 313272, 'Ear Spool', 'ear spool|gold, silver|metal-ornaments'), + SearchData(750, 316987, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(1475, 309391, 'Miniature Vessel', 'miniature dish|ceramic|ceramics-containers'), + SearchData( + 1650, 316848, 'Kero', 'kero|wood (prosopis?), copper-silver alloy, nickel, gold, lead, zinc|wood-containers'), + SearchData(-500, 308426, 'Bottle, Feline face', 'bottle|ceramic, post-fired paint|ceramics-containers'), + SearchData(500, 308527, 'Portrait Head Bottle', 'bottle|ceramic, slip, pigment|ceramics-containers'), + SearchData(1500, 312636, 'Ornamental Pin (Tupu)', 'pin|bronze|metal-ornaments'), + SearchData(800, 316975, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(1600, 316845, 'Kero', 'kero|wood (prosopis?), pigmented resin inlay|wood-containers'), + SearchData(1500, 309760, 'Painted Aryballus Jar', 'bottle|ceramic, pigment, slip|ceramics-containers'), + SearchData(600, 315117, 'Disk with Figure', 'disk|gilded copper, silvered copper, shell, turquoise|metal-ornaments'), + SearchData(1367, 313223, 'Ceremonial digging stick', + 'tomb post|wood, metal, paint, silver, gold (?), cinnabar|wood-sculpture'), + SearchData(1600, 316844, 'Kero', 'kero|wood, pigmented resin inlay|wood-containers'), + SearchData(750, 316967, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(1500, 315804, 'Copper Tumi with Figure', 'knife|copper|metal-implements'), + SearchData(1500, 315617, 'Silver Pin', 'pin|silver (hammered)|metal-ornaments'), + SearchData(850, 314624, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(1500, 315338, 'Knife (?)', 'knife|copper|metal-implements'), + SearchData(650, 312940, 'Bird Pin or Spatula', 'lime spatula or pin|gold|metal-implements'), + SearchData(1500, 315701, 'Vessel, Leg', 'vessel|ceramic, pigment|ceramics-containers'), + SearchData(850, 309503, 'Double-chambered bottle', 'bottle|ceramic, slip|ceramics-containers'), + SearchData(1410, 316437, 'Earflare with ritual procession', 'earflare|gold|metal-ornaments'), + SearchData(1467, 314955, 'Paccha (ritual vessel)', 'vessel|ceramic, slip|ceramics-containers'), + SearchData(1350, 318771, 'Bag with fringe', 'bag|camelid hair|textiles-woven'), + SearchData(16, 309229, 'Tupu (pin)', 'pin|silver|metal-ornaments'), + SearchData(1385, 312796, 'Hanging', 'hanging|cotton|textiles-woven'), + SearchData(750, 833953, 'Tapestry Tunic', 'tunic|camelid wool|textiles-woven'), + SearchData(1500, 315616, 'Pin', 'pin|silver (hammered)|metal-ornaments'), + SearchData(600, 315135, 'Profile Warrior Ornament', 'ornament|copper, shell|metal-ornaments'), + SearchData(1700, 316892, 'Woman\'s Mantle (lliclla)', 'mantle|camelid hair|textiles-woven'), + SearchData(750, 314622, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(1475, 309398, 'Miniature Jar with Two Handles', 'jar|ceramic|ceramics-containers'), + SearchData(1235, 310619, 'Stirrup-spout bottle with palace scene', 'vessel|silver|metal-containers'), + SearchData(1400, 318888, 'Headband', 'headband|camelid hair|textiles-woven'), + SearchData(1467, 310520, 'Urpu (jar)', 'bottle|ceramic, slip|ceramics-containers'), + SearchData(1500, 315638, 'Figure Lime Spoon', 'lime spoon|copper|metal-implements'), + SearchData(-1000, 310655, 'Bottle with leaf-nosed bat head', + 'bottle|ceramic, post-fire paint (cinnabar)|ceramics-containers'), + SearchData(1491, 316938, 'Serpent ornament', 'ornament|cotton, camelid hair|textiles-woven'), + SearchData(1300, 698331, 'Pair of Earflares with Multifigure Scenes', 'earflare|gold|metal-ornaments'), + SearchData( + 1700, 698427, 'Pair of Keros with Carved Feline Handles', 'kero|wood, pigmented resin inlays|wood-containers'), + SearchData(1600, 318145, 'Tunic', 'tunic|camelid hair|textiles-woven'), + SearchData(550, 309427, 'Ear Ornament, Winged Runner', 'earflare|gold, turquoise, sodalite, shell|metal-ornaments'), + SearchData(1500, 315612, 'Pin', 'pin|silver (hammered)|metal-ornaments'), + SearchData(1467, 315486, 'Tumi (knife) with a talon', 'knife|tin bronze|metal-implements'), + SearchData(600, 313398, 'Nose Ornament, Turbaned Head', 'ornament|gold (partially silvered), silver|metal-ornaments'), + SearchData(1500, 315251, 'Copper Lime Spoon with Bird Top', 'lime spoon|copper (cast)|metal-implements'), + SearchData(1467, 309944, 'Miniature female effigy', 'figure|gold-rich silver alloy|sculpture-sheet metal'), + SearchData(100, 314776, 'Ornamental Plume', 'ornament|gold|metal-ornaments'), + SearchData(1549, 751901, 'Tunic', 'tunic|camelid fiber|textiles-costumes'), + SearchData(1500, 312635, 'Bronze Tumi with Figures', 'knife|bronze|metal-implements'), + SearchData(1475, 316836, 'Kero', 'kero|wood (prosopis ?)|wood-containers'), + SearchData(550, 316983, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(750, 316989, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(450, 310601, 'Vessel with ritual scene', 'vessel|ceramic, slip|ceramics-containers'), + SearchData(1500, 315260, 'Pin', 'pin|silver (cast)|metal-ornaments'), + SearchData(325, 309145, 'Chisel or tupu (pin)', 'pin|copper|metal-implements'), + SearchData(1410, 316436, 'Earflare with ritual procession', 'earflare|gold|metal-ornaments'), + SearchData(1500, 307941, 'Bag Tassel', 'bag fragment|camelid hair, cotton|textiles-woven'), + SearchData(750, 312911, 'Four-Cornered Hat', 'hat|camelid hair, cotton|textiles-costumes'), + SearchData(1400, 310205, 'Bottle, Anthropomorphic Crab', 'bottle|ceramic, slip|ceramics-containers'), + SearchData(400, 308732, 'Figure of an Owl', 'figure|bone, cinnabar|bone/ivory-sculpture'), + SearchData(750, 316985, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(800, 315686, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(1467, 315363, 'Beaker with face', 'beaker|silver|metal-containers'), + SearchData(1700, 316851, 'Kero', 'kero|wood, metal stud and pigmented resin inlays|wood-containers'), + SearchData(1466, 315492, 'Male Figurine', 'figure|silver|sculpture-sheet metal'), + SearchData(1500, 315621, 'Silver Pin', 'pin|silver (hammered)|metal-ornaments'), + SearchData(600, 315133, 'Profile Warrior Ornament', 'ornament|gilded copper, shell turquoise|metal-ornaments'), + SearchData(400, 308535, 'Figure Jar', 'jar|ceramic, slip|ceramics-containers'), + SearchData(1475, 309390, 'Miniature Vessel', 'miniature dish|ceramic|ceramics-containers'), + SearchData(1466, 317753, 'Female figurine', 'figure|silver-gold alloy|sculpture-sheet metal'), + SearchData(1475, 316835, 'Paccha', 'paccha|wood|wood-containers'), + SearchData(1500, 315622, 'Silver Pin', 'pin|silver (hammered), gold|metal-ornaments'), + SearchData(1400, 315608, 'Pin', 'pin|silver (hammered)|metal-ornaments'), + SearchData(1500, 315268, 'Copper Lime Spoon with Bird Top', 'lime spoon|copper|metal-implements'), + SearchData(600, 315174, 'Disk Ornament', 'ornament|gilded copper|metal-ornaments'), + SearchData(1466, 315668, 'Tupu (pin)', 'pin|copper or alloy of copper|metal-ornaments'), + SearchData(600, 314705, 'Cutout Disk', 'ornament|gilded copper|metal-ornaments'), + SearchData(1450, 314614, 'Cap Woven with Human Hair', 'hat|camelid hair, human hair|textiles-woven'), + SearchData(750, 316340, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(500, 309439, 'Warrior Bottle', 'bottle|ceramic|ceramics-containers'), + SearchData(1500, 313205, 'Dish with Bird Head', 'dish|ceramic, pigment|ceramics-containers'), + SearchData(1500, 314618, 'Shirt', 'shirt|camelid hair, cotton|textiles-woven'), + SearchData(1500, 319536, 'Seated Figure Ornament with Dangles', 'ornament|silver and thread|metal-ornaments'), + SearchData(1543, 751900, 'Votive Checkerboard Tunic', 'tunic|camelid fiber|textiles-costumes'), + SearchData(1410, 310616, 'Double-chambered vessel with a monkey', 'vessel|silver|metal-containers'), + SearchData(1466, 315606, 'Tupu (pin)', 'pin|copper alloy|metal-ornaments'), + SearchData(1475, 316837, 'Kero', 'kero|wood (prosopis ?)|wood-containers'), + SearchData(1050, 316986, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(1350, 313268, 'Lime Spoon with Seated Figure', 'lime spoon|silver (cast)|metal-implements'), + SearchData(600, 314537, 'Disk', 'ornament|gilded copper, silvered copper, shell inlay|metal-ornaments'), + SearchData(1385, 312952, 'Standing male figure', 'male figure|wood|wood-sculpture'), + SearchData(1350, 307467, 'Tweezers', 'tweezers|silver|metal-implements'), + SearchData(1500, 315637, 'Figure Lime Spoon', 'lime spoon|copper (cast)|metal-implements'), + SearchData(1467, 313226, 'Funerary staff', 'staff|wood, paint, metal sheathing|wood-sculpture'), + SearchData(1500, 315773, 'Sling Shot', 'sling shot|camelid hair|textiles-woven'), + SearchData(1475, 316926, 'Feathered Bag', 'bag|cotton, feathers|textiles-featherwork'), + SearchData(1550, 316840, 'Kero', 'kero|wood, pigmented resin inlay|wood-containers'), + SearchData( + 250, 308539, 'Stirrup Spout Bottle with Sleeping Warrior', 'bottle|ceramic, slip, pigment|ceramics-containers'), + SearchData(1475, 316822, 'Feathered Tunic', 'tunic fragment|cotton, feathers|textiles-featherwork'), + SearchData(1500, 315667, 'Copper Atlatl Spear Thrower', 'spear thrower|copper (cast)|metal-implements'), + SearchData(1500, 315620, 'Copper Pin', 'pin|silver (hammered)|metal-ornaments'), + SearchData(1500, 315624, 'Ornamented Knife', 'knife|copper|metal-implements'), + SearchData(1450, 316928, 'Sling', 'sling|camelid hair|textiles-woven'), + SearchData(1849, 90286, 'Mantle pin (ttipqui)', 'stickpin|silver, paste|metal-ornaments'), + SearchData(1500, 315708, 'Band Fragment', 'textile fragment|cotton, camelid hair|textiles-woven'), + SearchData(1650, 316853, 'Kero', 'kero|wood (escallonia), pigmented resin inlay|wood-containers'), + SearchData(825, 307975, 'Tunic with Confronting Catfish', 'tunic|camelid hair, tapestry-weave|textiles-woven'), + SearchData(1500, 315242, 'Ceremonial Knife (Tumi)', 'knife|copper (cast)|metal-implements'), + SearchData(550, 319459, 'Pair of Ear Ornaments with Winged Runners', + 'earflare|gold, turquoise, sodalite, shell|metal-ornaments'), + SearchData(1500, 313152, 'Tunic', 'tunic|camelid hair|textiles-woven'), + SearchData(1650, 316841, 'Kero', 'kero|wood (escallonia), pigmented resin inlay|wood-containers'), + SearchData(1849, 126673, 'Pin (ttipqui)', 'pin|silver, glass|metal-ornaments'), + SearchData(1500, 315487, 'Ornamented Knife', 'knife|copper|metal-implements'), + SearchData(550, 316913, 'Coca Bag', 'bag|camelid hair, cotton|textiles-woven'), + SearchData(-50, 310550, 'Bottle, Trophy-Head', 'bottle|ceramic|ceramics-containers'), + SearchData(600, 315155, 'Stirrup Spout Bottle with Warrior', 'bottle|ceramic, slip|ceramics-containers'), + SearchData(1500, 315639, 'Silver Lime Spoon with Fish Top', 'lime spoon|silver (cast)|metal-implements'), + SearchData(1500, 315285, 'Copper Pin', 'pin|copper, gilt|metal-ornaments'), + SearchData(1515, 313324, 'Sleeveless Tunic', 'tunic|cotton, camelid hair|textiles-woven'), + SearchData(-400, 308487, 'Double Spouted Vessel with Snake', 'bottle|ceramic, post-fired paint|ceramics-containers'), + SearchData(550, 309428, 'Ear Ornament, Winged Runner', 'earflare|gold, turquoise, sodalite, shell|metal-ornaments'), + SearchData(75, 319223, 'Neck Emblem or Sash', 'emblem or sash|camelid and human hair|textiles-woven'), + SearchData(350, 308507, 'Bottle with Runners', 'bottle|ceramic, slip|ceramics-containers'), + SearchData(1466, 312558, 'Female Figurine', 'figure|silver|sculpture-sheet metal'), + SearchData(1600, 314617, 'Woven Sling Shot', 'sling shot|camelid hair|textiles-woven'), + SearchData(1000, 316431, 'Beaker with figure and Spondylus shell', 'beaker|gold|metal-containers'), + SearchData(1475, 309395, 'Miniature Vessel', 'miniature bowl|ceramic|ceramics-containers'), + SearchData(1600, 316843, 'Kero', 'kero|wood, pigmented resin inlay|wood-containers'), + SearchData(750, 314621, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(750, 316988, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(-250, 308491, 'Miniature Effigy Vessel', 'bottle|ceramic, post-fired paint|ceramics-containers'), + SearchData(550, 308383, 'Spectacled Bear Bottle', 'bottle|ceramic, slip|ceramics-containers'), + SearchData(1500, 315290, 'Knife (Tumi)', 'knife|copper (cast)|metal-implements'), + SearchData(1550, 316923, 'Bag', 'bag|cotton, camelid hair|textiles-woven'), + SearchData(1467, 313053, 'Funerary staff', 'tomb staff|wood, paint, metal|wood-sculpture'), + SearchData(1500, 315426, 'Copper Lime Spoon in Snake Form', 'lime spoon|copper (cast)|metal-ornaments'), + SearchData(600, 313414, 'Nose Ornament', 'nose ornament|gold|metal-ornaments'), + SearchData(1650, 318607, 'Double-chambered bottle', 'bottle|ceramic, glaze|ceramics-containers'), + SearchData(1500, 308120, 'Tunic', 'tunic|camelid hair, cotton|textiles-woven'), + SearchData(1500, 315249, 'Copper Lime Spoon with Bird Top', 'lime spoon|copper (cast)|metal-implements'), + SearchData(500, 309438, 'Bird Warrior Bottle', 'bottle|ceramic, pigment|ceramics-containers'), + SearchData(1500, 307846, 'Panel with Birds', 'panel|camelid hair|textiles-woven'), + SearchData(750, 312672, 'Mantle', 'mantle|cotton, camelid hair|textiles-woven'), + SearchData(750, 316342, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(1500, 315634, 'Figure Lime Spoon', 'lime spoon|copper|metal-implements'), + SearchData(1467, 319487, 'Kero (beaker)', 'kero|wood|wood-containers'), + SearchData(1367, 313225, 'Ceremonial digging stick', 'tomb post|wood, silver, nails|wood-sculpture'), + SearchData(1500, 315653, 'Copper Tumi with Figure', 'knife|copper|metal-implements'), + SearchData(1235, 319053, 'Collar', 'collar|spondylus shell and black stone beads, cotton|beads-costumes'), + SearchData(1500, 315618, 'Silver Pin', 'pin|silver (hammered)|metal-ornaments'), + SearchData(650, 308528, 'Bottle with portrait head', 'bottle|ceramic, slip|ceramics-containers'), + SearchData(600, 315147, 'Profile Warrior Ornament', 'ornament|gilded copper, shell|metal-ornaments'), + SearchData(850, 316976, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(750, 316981, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(1500, 315254, 'Copper Lime Spoon with Bird Top', 'lime spoon|copper (cast)|metal-implements'), + SearchData(500, 308415, 'Architectural Vessel', 'vessel|ceramic|ceramics-containers'), + SearchData(-200, 308298, 'Bottle, Falcon', 'bottle|ceramic, pigment|ceramics-containers'), + SearchData(600, 315191, 'Disc', 'ornament|gilded copper|metal-ornaments'), + SearchData(850, 316974, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(750, 312244, 'Feathered Panel', 'panel|feathers, cotton, camelid hair|textiles-featherwork'), + SearchData(1500, 313275, 'Vessel', 'bottle|ceramic|ceramics-containers'), + SearchData(1500, 315490, 'Copper Tumi with Figure', 'knife|copper (cast)|metal-implements'), + SearchData(750, 308121, 'Four-Cornered Hat', 'hat|camelid hair, cotton|textiles-woven'), + SearchData(700, 314623, 'Four-Cornered Hat', 'hat|camelid fiber|textiles-costumes'), + SearchData(1500, 315354, 'Ceremonial Knife (Tumi)', 'knife|copper (cast), silver (?)|metal-implements'), + SearchData(825, 310308, 'Lime container in the shape of a captive', + 'lime container|wood, bone inlay, paint, fiber|wood-containers'), + SearchData(1400, 308555, 'Double Chambered Bottle', 'bottle|ceramic|ceramics-containers'), + SearchData(1500, 315770, 'Votive Container (Canopa)', 'container|stone|stone-containers'), + SearchData(1700, 316849, 'Kero', 'kero|wood (prosopis?)|wood-containers'), + SearchData(1500, 315307, 'Ball', 'ball|brass (cast), copper|metal-implements'), + SearchData( + 1575, 316842, 'Kero (beaker)', 'kero|wood (escallonia ?), pigmented resin inlay, metal (tin?)|wood-containers'), + SearchData(1000, 309123, 'Crown', 'crown|gold|metal-ornaments'), + SearchData(1475, 316838, 'Kero', 'kero|wood|wood-containers'), + SearchData(250, 308537, 'Stirrup Spout Bottle with Warrior Figure', 'bottle|ceramic, slip|ceramics-containers'), + SearchData(1500, 315283, 'Pin', 'pin|copper, gilt|metal-ornaments'), + SearchData(350, 308510, 'Bottle, Warriors', 'bottle|ceramic, slip, pigment|ceramics-containers'), + SearchData(1467, 317752, 'Lime spoon with parrot and corn plant', 'lime spoon|copper alloy (cast)|metal-implements'), + SearchData(1475, 309394, 'Storage Jar (Aryballus)', 'bottle|ceramic|ceramics-containers'), + SearchData(500, 309304, 'Stirrup Spout Bottle with Cat', 'bottle|ceramic, slip|ceramics-containers'), + SearchData(650, 315136, 'Profile Warrior Ornament', 'ornament|silvered copper, shell|metal-ornaments'), + SearchData(750, 316339, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(1500, 315332, 'Lime Spoon, Bird', 'lime spoon|copper (cast)|metal-implements'), + SearchData(1467, 313289, 'Hand with beaker', 'kero|ceramic, pigment, slip|ceramics-containers'), + SearchData(1500, 315248, 'Copper Pin', 'pin|copper (cast)|metal-ornaments'), + SearchData(1462, 319524, 'Fragmentary Woman\'s Dress', 'dress fragment|camelid fiber|textiles-woven'), + SearchData(1450, 309753, 'Stirrup Spout Bottle with Fish', 'bottle|ceramic|ceramics-containers'), + SearchData(1467, 315771, 'Conopa (votive effigy)', 'container|stone|stone-containers'), + SearchData(1000, 309959, 'Funerary mask', 'mask|gold, silver-copper alloy, cinnabar paint|metal-musical instruments'), + SearchData(750, 316343, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(1500, 317593, 'Votive Container (Canopa)', 'container|stone|stone-containers'), + SearchData(1467, 313054, 'Funerary staff', 'tomb staff|wood, paint|wood-sculpture'), + SearchData(1467, 309960, 'Miniature camelid effigy', 'figure|alloys of silver, gold and copper|metalwork-sculpture'), + SearchData(650, 307472, 'Bottle with portrait head', 'bottle|ceramic, slip|ceramics-containers'), + SearchData(1500, 315228, 'Bronze Mace Head in Feline Form', 'mace head|bronze (cast)|metal-implements'), + SearchData(300, 316270, 'Corn stalk-shaped vessel', 'bottle|ceramic, slip|ceramics-containers'), + SearchData(650, 316979, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(750, 316971, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(1500, 315476, 'Axe', 'axe|bronze|metal-implements'), + SearchData(500, 314681, 'Prisoner jar', 'jar|ceramic, slip|ceramics-containers'), + SearchData(1475, 309399, 'Miniature Jar', 'jar|ceramic|ceramics-containers'), + SearchData(1467, 309943, 'Miniature male effigy', 'figure|gold-silver alloy|sculpture-sheet metal'), + SearchData(1500, 312726, 'Ornamental Knife', 'knife|copper|metal-implements'), + SearchData(1500, 315255, 'Copper Lime Spoon with Bird Top', 'lime spoon|copper (cast)|metal-implements'), + SearchData(1700, 316855, 'Kero', 'kero|wood, pigmented resin inlay|wood-containers'), + SearchData(1500, 315265, 'Copper Lime Spoon', 'lime spoon|copper (cast)|metal-implements'), + SearchData(500, 309447, 'Spotted Feline Bottle', 'bottle|ceramic, pigment|ceramics-containers'), + SearchData(1410, 312568, 'Standing female figure', 'figure|wood, pigment|wood-sculpture'), + SearchData(1500, 317592, 'Votive Container (Canopa)', 'vessel|stone|stone-containers'), + SearchData(1500, 315636, 'Lime Spoon, Figure', 'lime spoon|copper|metal-implements'), + SearchData(1500, 315294, 'Mace Head', 'mace head|silver (cast)|metal-implements'), + SearchData(1475, 309396, 'Miniature Jar with Two Handles', 'jar|ceramic|ceramics-containers'), + SearchData(1500, 308079, 'Tapestry Panel with Stars', 'panel|camelid hair, cotton|textiles-woven'), + SearchData(1500, 310667, 'Tomb Post', 'tomb post|wood, silver sheathing, feathers|metal-sculpture'), + SearchData(1505, 502538, 'Whistling Jar', 'whistling jar|clay|aerophone-blow hole-vessel flute'), + SearchData(1450, 308770, 'Ceremonial Knife (Tumi)', 'knife|copper|metal-implements'), + SearchData(800, 316982, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(1650, 307469, 'Knife, Figures', 'knife|bronze|metal-implements'), + SearchData(1425, 317736, 'Woman\'s Dress', 'dress|camelid hair|textiles-woven'), + SearchData(750, 316968, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(1500, 317751, 'Paccha', 'paccha|ceramic, pigment|ceramics-containers'), + SearchData(1500, 315267, 'Copper Lime Spoon with Bird Top', 'lime spoon|copper (cast)|metal-implements'), + SearchData(750, 316972, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(1500, 315623, 'Silver Pin', 'pin|silver|metal-ornaments'), + SearchData(650, 308410, 'Stirrup spout bottle with warrior', 'bottle|ceramic, slip|ceramics-containers'), + SearchData(1385, 315748, 'Miniature slingshot', 'sling shot|silver (hammered), feathers, wood|metal-implements'), + SearchData(1400, 315609, 'Pin', 'pin|silver (hammered)|metal-ornaments'), + SearchData(650, 308408, 'Bottle with fox head', 'bottle|ceramic, slip|ceramics-containers'), + SearchData(450, 314679, 'Fox Warrior Bottle', 'bottle|ceramic, slip, pigment|ceramics-containers'), + SearchData(1466, 313251, 'Female figurine', 'figure|gold|sculpture-sheet metal'), + SearchData(1475, 317726, 'Tumi with Figure', 'knife|copper|metal-implements'), + SearchData(1250, 313148, 'Weaving Basket', + 'basket with weaving implements|cane, shell, bone, fiber, camelid hair, wood, pigment, metal, stone|textiles-implements'), + SearchData(1600, 314616, 'Woven Sling Shot', 'sling shot|camelid hair|textiles-woven'), + SearchData(1475, 309393, 'Miniature Vessel', 'miniature dish|ceramic|ceramics-containers'), + SearchData(750, 316962, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(1500, 315266, 'Copper Lime Spoon with Bird Top', 'lime spoon|copper (cast)|metal-implements'), + SearchData(1500, 313206, 'Dish with Bird Head', 'dish|ceramic, pigment|ceramics-containers'), + SearchData(50, 313364, 'Nose Ornament with Spiders', 'nose ornament|gold|metal-ornaments'), + SearchData(1750, 316852, 'Kero', 'kero|wood (escallonia?), pigmented resin inlay|wood-containers'), + SearchData(1500, 310668, 'Tomb Post', 'tomb post|wood, silver sheathing, feathers|metal-sculpture'), + SearchData(750, 313010, 'Standing figure', 'male figure|stone|stone-sculpture'), + SearchData(1500, 315333, 'Copper Lime Spoon with Feline Top', 'lime spoon|copper (cast)|metal-implements'), + SearchData(1000, 309414, 'Beaker with figure and Spondylus shell', 'beaker|gold|metal-containers'), + SearchData(1150, 320329, 'Monkey Pendant', 'pendant|gold|metal-ornaments'), + SearchData(1467, 313295, 'Beaker with face', 'beaker|silver|metal-containers'), + SearchData(1367, 313224, 'Ceremonial digging stick', 'tomb post|wood, paint, metal|wood-sculpture'), + SearchData(400, 308540, 'Stirrup Spout Bottle with Seated Figure', 'bottle|ceramic, slip|ceramics-containers'), + SearchData(1500, 315613, 'Silver Pin', 'pin|silver (hammered)|metal-ornaments'), + SearchData(600, 312933, 'Headband', 'headdress|camelid fiber|textiles-woven'), + SearchData(550, 316984, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(1467, 313267, 'Kero (beaker)', 'kero|wood|wood-containers'), + SearchData(750, 316970, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(1550, 316920, 'Bag', 'bag|camelid hair|textiles-woven'), + SearchData(1250, 312669, 'Panel', 'panel|cotton, paint|textiles-woven'), + SearchData(1200, 312826, 'Miniature Dress', 'miniature dress|cotton, feathers|textiles-featherwork'), + SearchData(750, 316977, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(1500, 315252, 'Copper Lime Spoon with Bird Top', 'lime spoon|copper (cast)|metal-implements'), + SearchData(1467, 314954, 'Paccha (ritual vessel)', 'vessel|ceramic, slip|ceramics-containers'), + SearchData(600, 314872, 'Cutout Disk', 'ornament|gilded copper|metal-ornaments'), + SearchData(-1000, 310662, 'Feline-shaped stirrup-spout bottle', 'bottle|ceramic|ceramics-containers'), + SearchData(1367, 313222, 'Ceremonial digging stick', 'implement|wood, resin paint, metal|wood-implements'), + SearchData(1500, 313310, 'Single Spout Bottle', 'bottle|ceramic|ceramics-containers'), + SearchData(1500, 315227, 'Ceremonial Knife (Tumi)', 'knife|bronze (cast)|metal-implements'), + SearchData(550, 308508, 'Owl Warrior Bottle', 'bottle|ceramic|ceramics-containers'), + SearchData(450, 318746, 'Belt', 'belt|camelid fiber|textiles-woven'), + SearchData(1500, 313274, 'Male Effigy Vessel', 'vessel|ceramic, pigment|ceramics-containers'), + SearchData(1500, 313227, 'Funerary Staffs', 'tomb staff|wood|wood-sculpture'), + SearchData(1475, 316839, 'Kero', 'kero|wood (escallonia ?)|wood-containers'), + SearchData(1500, 313271, 'Headband', 'head ornament|gold (hammered)|metal-ornaments'), + SearchData(650, 315700, 'Embroidered bag with fringe', 'bag|camelid hair|textiles-woven'), + SearchData(1499, 308287, 'Feathered Tabard', 'tabard|cotton, feathers|feathers-costumes'), + SearchData(500, 309436, 'Stirrup Spout Bottle with Felines', 'bottle|ceramic, pigment|ceramics-containers'), + SearchData(1467, 313341, 'Double bowl', 'bowl|ceramic, slip|ceramics-containers'), + SearchData(1500, 315615, 'Silver Pin', 'pin|silver (hammered)|metal-ornaments'), + SearchData(-250, 307617, 'Bowl', 'bowl|ceramic, post-fired paint|ceramics-containers'), + SearchData(1500, 315306, 'Ball', 'ball|brass (cast)|metal-implements'), + SearchData(600, 318644, 'Profile Warrior Ornament', 'ornament|gilded copper, shell, turquoise|metal-ornaments'), + SearchData(600, 315148, 'Profile Warrior Ornament', 'ornament|gilded copper, shell, turquoise|metal-ornaments'), + SearchData(750, 316963, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(1462, 318529, 'Tunic', 'tunic|camelid hair, feathers|textiles-woven'), + SearchData(1550, 316922, 'Bag', 'bag|cotton, camelid hair|textiles-woven'), + SearchData(1650, 320054, 'Miniature Tabard', 'tunic|cotton, camelid hair, silk, metal|textiles-woven'), + SearchData(1475, 309392, 'Miniature Dish with Handle', 'dish|ceramic|ceramics-containers'), + SearchData(1200, 307471, 'Border Fragment', 'border fragment|camelid hair, cotton|textiles-woven'), + SearchData(1500, 319319, 'Kero', 'kero|ceramic|ceramics-containers'), + SearchData(750, 314625, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(1650, 316847, 'Kero (beaker)', 'kero|wood, tin inlay, red pigment, resin|wood-containers'), + SearchData(600, 314878, 'Cutout Disk', 'ornament|gilded copper|metal-ornaments'), + SearchData(1420, 316939, 'Miniature Tunic', 'miniature tunic|cotton, camelid hair|textiles-woven'), + SearchData(1475, 310233, 'Blackware Paccha with Feline', 'paccha|ceramic|ceramics-containers'), + SearchData(1650, 318164, 'Poncho', 'poncho|wool|textiles-woven'), + SearchData(1500, 317591, 'Votive Container (Canopa)', 'vessel|stone|stone-containers'), + SearchData(1300, 310476, 'Feathered Tabard', 'tunic|cotton, feathers|feathers-costumes'), + SearchData(1530, 313273, 'Ear Spool', 'ear spool|gold, silver|metal-ornaments'), + SearchData(1400, 315610, 'Group of pins', 'pin|silver (hammered)|metal-ornaments'), + SearchData(1475, 309401, 'Single Spout Bottle with Strap Handles', 'bottle|ceramic, pigment|ceramics-containers'), + SearchData(650, 315119, 'Shield with owl figure', + 'ornament|gilded copper, silvered copper, shell, beads, fibers|metal-ornaments'), + SearchData(600, 315161, 'Disk Ornament', 'ornament|gilded copper|metal-ornaments'), + SearchData(1500, 315425, 'Lime Spoon', 'lime spoon|silver (cast)|metal-ornaments'), + SearchData(1500, 315619, 'Silver Pin', 'pin|silver (hammered)|metal-ornaments'), + SearchData(1500, 317594, 'Votive Container (Canopa)', 'container|stone|stone-containers'), + SearchData(750, 316965, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(-550, 307622, 'Double Spout and Bridge Bottle', 'bottle|ceramic, pigment|ceramics-containers'), + SearchData(1500, 315690, 'Bag', 'bag|camelid hair, cotton|textiles-woven'), + SearchData(1500, 310656, 'Hunchback Paccha', 'paccha|wood, beads|wood-containers'), + SearchData(1650, 316854, 'Kero', 'kero|wood (escallonia), pigmented resin inlay|wood-containers'), + SearchData(1600, 698417, 'Pair of Keros', 'kero|wood, pigmented resin inlay|wood-containers'), + SearchData(1500, 315633, 'Figure Lime Spoon', 'lime spoon|copper|metal-implements'), + SearchData(1450, 314615, 'Woven Sling Shot', 'sling shot|camelid hair|textiles-woven'), + SearchData(600, 315134, 'Profile Warrior Ornament', 'ornament|gilded copper, shell|metal-ornaments'), + SearchData(1467, 309227, 'Tupu (pin)', 'pin|copper alloy|metal-ornaments'), + SearchData(550, 314874, 'Shield with crab and fish figures', 'disk|gilded copper|metal-ornaments'), + SearchData(1491, 316929, 'Sling', 'sling|camelid hair|textiles-woven'), + SearchData(1500, 315253, 'Copper Lime Spoon with Bird Top', 'lime spoon|copper (cast)|metal-implements'), + SearchData(-250, 308498, 'Bowl', 'bowl|ceramic, post-fired paint|ceramics-containers'), + SearchData(750, 316966, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(1500, 308083, 'Tapestry Fragment', 'textile fragment|camelid hair|textiles-woven'), + SearchData(750, 314620, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(1500, 315635, 'Figure Lime Spoon', 'lime spoon|copper|metal-implements'), + SearchData(650, 308022, 'Embroidered bag with fringe', 'bag|camelid hair|textiles-woven'), + SearchData(1500, 315250, 'Copper Lime Spoon with Bird Top', 'lime spoon|copper (cast)|metal-implements'), + SearchData(1467, 313055, 'Funerary staff', 'tomb staff|wood, paint, metal, copper|wood-sculpture'), + SearchData(1500, 313056, 'Funerary Staffs', 'tomb staff|wood, paint|wood-sculpture'), + SearchData(1500, 308123, 'Beaker with scroll ornamentation', 'beaker|silver, gold|metal-containers'), + SearchData(800, 309106, 'Tupu (pin)', 'pin|copper and gold|metal-ornaments'), + SearchData(1500, 315303, 'Lime Spoon, Bird', 'lime spoon|silver (hammered)|metal-implements'), + SearchData(400, 309411, 'Headdress Ornament', 'headdress ornament|gold|metal-ornaments'), + SearchData(1238, 646249, 'Man\'s Tunic', 'tunic|camelid and cotton fibers|textiles-costumes'), + SearchData(1500, 315284, 'Copper Pin', 'pin|copper, gilt|metal-ornaments'), + SearchData(1500, 315286, 'Ceremonial Knife (Tumi)', 'knife|copper (cast)|metal-implements'), + SearchData(1420, 317727, 'Feline Bowl', 'bowl|stone|stone-containers'), + SearchData(1500, 313204, 'Dish with Bird Head', 'dish|ceramic, pigment|ceramics-containers'), + SearchData(1500, 315479, 'Knife', 'knife|copper|metal-implements'), + SearchData(1467, 314823, 'Conopa (votive effigy)', 'container|stone|stone-containers'), + SearchData(-350, 308590, 'Double Spout and Bridge Bottle with Snake', 'bottle|ceramic, pigment|ceramics-containers'), + SearchData(1475, 317791, 'Kero', 'kero|wood (prosopis?)|wood-containers'), + SearchData(800, 309104, 'Tupu (pin)', 'pin|copper and gold|metal-ornaments'), + SearchData(750, 316973, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(1500, 313269, 'Deer Stick', 'staff|wood, paint|wood-sculpture'), + SearchData(1140, 309105, 'Tupu (pin)', 'pin|copper|metal-ornaments'), + SearchData(500, 309441, 'Raptorial Bird Bottle', 'bottle|ceramic, pigment|ceramics-containers'), + SearchData(1466, 315651, 'Tupu (pin)', 'pin|copper|metal-ornaments'), + SearchData(1700, 316850, 'Kero', 'kero|wood, tin studs, and pigmented resin inlays|wood-containers'), + SearchData(1150, 312801, 'Plume', 'plume|gold|metal-ornaments'), + SearchData(750, 316341, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(1475, 316834, 'Paccha', 'paccha|wood|wood-containers'), + SearchData(-50, 308455, 'Double-spout bottle with monkey', 'bottle|ceramic, slip|ceramics-containers'), + SearchData(1550, 316930, 'Sling', 'sling|camelid hair|textiles-woven'), + SearchData(750, 316980, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), + SearchData(1500, 307449, 'Bag', 'bag|cotton|textiles-woven'), + SearchData(1500, 315614, 'Silver Pin', 'pin|silver (hammered)|metal-ornaments'), + SearchData(1250, 316723, 'Serpent (tunjo)', 'figure|gold|metal-ornaments'), + SearchData(600, 313411, 'Nose Ornament with Shrimp', 'nose ornament|gold, silver, stone|metal-ornaments'), + SearchData(1500, 309528, 'Band', 'band|camelid hair|textiles-woven'), + SearchData(550, 308526, 'Stirrup Spout Bottle with Bird and Snake', 'bottle|ceramic, slip|ceramics-containers'), + SearchData(1600, 320804, 'Hanging (?) Fragment', 'tapestry fragment|camelid hair, cotton|textiles-woven'), + SearchData(750, 316964, 'Four-Cornered Hat', 'hat|camelid hair|textiles-costumes'), +]; diff --git a/lib/logic/data/wonders_data/search/petra_search_data.dart b/lib/logic/data/wonders_data/search/petra_search_data.dart index ba9a35ae..516ca894 100644 --- a/lib/logic/data/wonders_data/search/petra_search_data.dart +++ b/lib/logic/data/wonders_data/search/petra_search_data.dart @@ -1,344 +1,481 @@ part of '../petra_data.dart'; -// Search suggestions (67) -List _searchSuggestions = const ['stamp', 'canaanite', 'figure', 'membranophone', 'seal', 'copper', 'molded', 'brass', 'dagger', 'alloy', 'silver', 'slip', 'animal', 'stone', 'sculpture', 'opaque', 'earthenware', 'incised', 'ink', 'jambiya', 'paper', 'ceramics', 'jasper', 'metal', 'unguentarium', 'stonepaste', 'ceramic', 'leather', 'green', 'folio', 'glazed', 'sherd', 'vessel', 'white', 'chordophone', 'fragment', 'book', 'lute', 'decoration', 'headed', 'female', 'codices', 'illustrated', 'scaraboid', 'drum', 'shahnama', 'jewelry', 'bronze', 'steatite', 'porcelain', 'plucked', 'wood', 'cultic', 'kings', 'painted', 'gold', 'watercolor', 'quartz', 'scarab', 'steel', 'manuscript', 'daggers', 'splash', 'head', 'sheath', 'bowl', 'scene', ]; +// Search suggestions (70) +List _searchSuggestions = const [ + 'stamp', + 'figure', + 'cylinder', + 'membranophone', + 'seal', + 'copper', + 'molded', + 'brass', + 'dagger', + 'alloy', + 'silver', + 'slip', + 'animal', + 'stone', + 'opaque', + 'sculpture', + 'earthenware', + 'incised', + 'ink', + 'jambiya', + 'paper', + 'ceramics', + 'jasper', + 'metal', + 'unguentarium', + 'ceramic', + 'stonepaste', + 'leather', + 'green', + 'nude', + 'folio', + 'glazed', + 'sherd', + 'vessel', + 'white', + 'chordophone', + 'fragment', + 'book', + 'lute', + 'decoration', + 'headed', + 'female', + 'codices', + 'illustrated', + 'scaraboid', + 'drum', + 'shahnama', + 'jewelry', + 'bronze', + 'steatite', + 'porcelain', + 'plucked', + 'wood', + 'cultic', + 'kings', + 'painted', + 'gold', + 'watercolor', + 'quartz', + 'scarab', + 'steel', + 'lamp', + 'manuscript', + 'daggers', + 'splash', + 'head', + 'sheath', + 'jug', + 'bowl', + 'scene', +]; -// Petra (336) +// Petra (342) List _searchData = const [ - SearchData(-1630, 324559, 'Scarab seal', 'stamp seal|stone, white|', 'an/mobile-large/ss56_152_5.jpg', 1.39), - SearchData(899, 451503, 'Fragment of a Bowl', 'bowl fragment|earthenware; glazed|ceramics', 'is/mobile-large/sf60-23-6b.jpg', 1.22), - SearchData(50, 325916, 'Plate', 'plate|ceramic|', 'an/mobile-large/ME67_246_35.jpg', 1.54), - SearchData(-1450, 328935, 'Canaanite jar', 'jar|ceramic|', 'an/mobile-large/DP-16796-001.jpg', 0.77), - SearchData(1850, 31539, 'Dagger (Jambiya) with Sheath', 'dagger (jambiya) with sheath|steel, wood, brass, silver, gold, copper, brass wire|daggers', 'aa/mobile-large/36.25.947ab_002july2014.jpg', 0.67), - SearchData(849, 451547, 'Fragment', 'fragment|earthenware; slip painted, glazed|ceramics', 'is/mobile-large/sf60-23-52a.jpg', 1.63), - SearchData(1750, 31745, 'Dagger (Jambiya)', 'dagger (jambiya)|steel, wood, silver, copper, brass|daggers', 'aa/mobile-large/36.25.765_001june2014.jpg', 0.56), - SearchData(849, 451535, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics', 'is/mobile-large/sf60-23-39.jpg', 0.76), - SearchData(-1500, 325125, 'Adze head', 'adze|bronze|', 'an/mobile-large/ME61_73_2.jpg', 1.63), - SearchData(1049, 451602, 'Fragment', 'fragment|earthenware; incised and glazed|ceramics', 'is/mobile-large/sf60-23-109a.jpg', 0.81), - SearchData(899, 451533, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics', 'is/mobile-large/sf60-23-37a.jpg', 1.60), - SearchData(1199, 451513, 'Fragment', 'fragment|stonepaste; underglaze painted|ceramics', 'is/mobile-large/sf60-23-16a.jpg', 1.62), - SearchData(937, 451509, 'Fragment', 'fragment|earthenware; glazed|ceramics', 'is/mobile-large/sf60-23-12.jpg', 1.26), - SearchData(1399, 451554, 'Fragment', 'fragment|stonepaste; slip painted and glazed|ceramics', 'is/mobile-large/sf60-23-59a.jpg', 1.74), - SearchData(849, 455152, 'Fragment', 'fragment|earthenware; glazed|ceramics', 'is/mobile-large/sf60-23-25a.jpg', 1.13), - SearchData(1849, 443096, 'Headband', 'headband|silk, metal thread; wrapped and braided|textiles-costumes', 'is/mobile-large/DP18737.jpg', 0.40), - SearchData(1649, 448587, 'Panel from a Tent Lining (Qanat)', 'panel|cotton; plain weave, mordant dyed and painted, resist-dyed|textiles-painted and/or printed', 'is/mobile-large/DP212659.jpg', 0.49), - SearchData(-650, 321648, 'Stamp seal (conoid) with cultic scene', 'stamp seal|brown chalcedony (quartz), possibly etched to produce yellow mottling|', 'an/mobile-large/ss86_11_28gp.jpg', 1.01), - SearchData(-650, 326247, 'Inlay', 'inlay|bone|', 'an/mobile-large/ME1977_234_16.jpg', 1.10), - SearchData(899, 451594, 'Fragment', 'fragment|earthenware; glazed|ceramics', 'is/mobile-large/sf60-23-101.jpg', 1.07), - SearchData(-650, 327043, 'Palette with a sculpted female head and incised decoration', 'palette|calcite|', 'an/mobile-large/vs1984_453_9.jpg', 0.79), - SearchData(1525, 446603, '"Laila and Majnun in School", Folio 129 from a Khamsa (Quintet) of Nizami of Ganja', 'folio from an illustrated manuscript|ink, opaque watercolor, and gold on paper|codices', 'is/mobile-large/DT232547.jpg', 0.62), - SearchData(1875, 500993, 'Stringed Instrument', 'stringed instrument|turtle shell and wood, 4 strings.|chordophone-lute-plucked-fretted', 'mi/mobile-large/midp89.4.371.jpg', 1.60), - SearchData(-750, 323748, 'Stamp seal (scarab) with anthropomorphic figure', 'stamp seal|mottled green glass|', 'an/mobile-large/ss41_160_166.jpg', 1.65), - SearchData(50, 325899, 'Unguentarium', 'vessel|ceramic|', 'an/mobile-large/ME67_246_18.jpg', 0.71), - SearchData(-2500, 325836, 'Spouted vessel', 'vessel|ceramic|', 'an/mobile-large/ME66_183.jpg', 1.35), - SearchData(-50, 325075, 'Fragment of a grave stele', 'relief|alabaster (gypsum)|', 'an/mobile-large/frieze.jpg', 3.23), - SearchData(50, 325914, 'Vessel', 'vessel|ceramic|', 'an/mobile-large/hb67_246_33.jpg', 1.94), - SearchData(50, 325897, 'Unguentarium', 'vessel|ceramic|', 'an/mobile-large/ME67_246_16.jpg', 0.71), - SearchData(1299, 451584, 'Fragment', 'fragment|porcelain|ceramics', 'is/mobile-large/sf-60-23-91b.jpg', 1.66), - SearchData(849, 451544, 'Fragment', 'fragment|earthenware; glazed|ceramics', 'is/mobile-large/sf60-23-49a.jpg', 1.35), - SearchData(-450, 323936, 'Stamp seal', 'stamp seal|agate|', 'an/mobile-large/ss41_160_661.jpg', 1.42), - SearchData(50, 325892, 'Cup', 'cup|ceramic|', 'an/mobile-large/ME67_246_11.jpg', 1.37), - SearchData(-1630, 324560, 'Scarab seal', 'stamp seal|steatite, white pink|', 'an/mobile-large/ss56_152_6.jpg', 0.72), - SearchData(1341, 451414, '"Siyavush Displays his Skill at Polo before Afrasiyab," Folio from a Shahnama (Book of Kings)', 'folio from an illustrated manuscript|ink, opaque watercolor, and gold on paper|codices', 'is/mobile-large/sf57-51-35r.jpg', 0.83), - SearchData(50, 325883, 'Small bowl', 'bowl|ceramic|', 'an/mobile-large/ME67_246_2.jpg', 1.47), - SearchData(-1630, 326991, 'Scarab seal', 'stamp seal|faience, white (?)|', 'an/mobile-large/ss1984_383_30.jpg', 1.38), - SearchData(1200, 451379, 'Bowl with Courtly and Astrological Motifs', 'bowl|stonepaste; polychrome inglaze and overglaze painted and gilded on opaque monochrome glaze (mina\'i)|ceramics', 'is/mobile-large/DP170379.jpg', 0.75), - SearchData(-750, 323750, 'Stamp seal (oval bezel) with cultic scene', 'stamp seal|carnelian (quartz)|', 'an/mobile-large/ss41_160_168.jpg', 1.67), - SearchData(899, 451590, 'Fragment', 'fragment|earthenware; glazed|ceramics', 'is/mobile-large/sf60-23-97a.jpg', 1.55), - SearchData(50, 325891, 'Male figurine', 'sculpture|ceramic|', 'an/mobile-large/ME67_246_10.jpg', 0.78), - SearchData(1649, 646829, 'Filigree Casket with Sliding Top', 'box|silver filigree; parcel-gilt|metal', 'is/mobile-large/DP340529.jpg', 0.78), - SearchData(1049, 451599, 'Fragment', 'fragment|earthenware; glazed|ceramics', 'is/mobile-large/sf60-23-106a.jpg', 1.08), - SearchData(1675, 24298, 'Dagger with Sheath', 'dagger with sheath|steel, nephrite, gold, rubies, emeralds, silver-gilt, leather|daggers', 'aa/mobile-large/DP157696.jpg', 0.73), - SearchData(-550, 323933, 'Stamp seal', 'stamp seal|carnelian|', 'an/mobile-large/ss41_160_560.jpg', 1.88), - SearchData(899, 451565, 'Fragment', 'fragment|stoneware|ceramics', 'is/mobile-large/sf60-23-72b.jpg', 2.02), - SearchData(1687, 453279, 'Calligraphic Plaque', 'plaque|steel; forged and pierced|metal', 'is/mobile-large/DP170397.jpg', 1.71), - SearchData(-1597, 544660, 'Scarab with a Crocodile Headed Figure Holding a Flower', 'scarab, crocodile figure, flower|glazed steatite|', 'eg/mobile-large/M_398_bottom.jpg', 0.78), - SearchData(1649, 446546, 'Shahnama (Book of Kings) of Firdausi', 'illustrated manuscript|ink, opaque watercolor, and gold on paper|codices', 'is/mobile-large/DP215296.jpg', 0.70), - SearchData(-1673, 324558, 'Scarab seal', 'stamp seal|stone, white|', 'an/mobile-large/ss56_152_4.jpg', 0.75), - SearchData(-750, 324012, 'Stamp seal (scarab) with animal', 'stamp seal|hematite|', 'an/mobile-large/ss45_4_18.jpg', 0.75), - SearchData(-600, 321633, 'Stamp seal (scaraboid) with animal', 'stamp seal|neutral chalcedony (quartz)|', 'an/mobile-large/ss86_11_9gp.jpg', 1.20), - SearchData(1399, 451553, 'Fragment', 'fragment|earthenware; slip painted and glazed|ceramics', 'is/mobile-large/sf60-23-58a.jpg', 1.60), - SearchData(899, 451595, 'Fragment', 'fragment|earthenware; glazed|ceramics', 'is/mobile-large/sf60-23-102a.jpg', 1.44), - SearchData(50, 324247, 'Sherd', 'sherd|ceramic|', 'an/mobile-large/ME52_129_4.jpg', 0.94), - SearchData(50, 325902, 'Cooking pot', 'pot|ceramic|', 'an/mobile-large/ME67_246_21.jpg', 1.13), - SearchData(50, 324252, 'Sherd', 'sherd|ceramic|', 'an/mobile-large/ME52_129_9.jpg', 1.64), - SearchData(1540, 452413, 'Velvet Panel with Hunting Scene', 'tent panel|silk, flat metal thread; cut and voided velvet|textiles', 'is/mobile-large/DP267484.jpg', 0.97), - SearchData(1399, 451556, 'Fragment', 'fragment|stonepaste; slip painted and glazed|ceramics', 'is/mobile-large/sf60-23-61a.jpg', 1.55), - SearchData(1187, 446860, 'Luster Bowl with Winged Horse', 'bowl|stonepaste; luster-painted on opaque monochrome glaze|ceramics', 'is/mobile-large/DP212285.jpg', 0.75), - SearchData(-600, 323924, 'Stamp seal (loaf-shaped hemispheroid) with animal', 'stamp seal|banded carnelian (quartz)|', 'an/mobile-large/seal1.jpg', 1.42), - SearchData(0, 326243, 'Open bowl', 'bowl|ceramic, paint|', 'an/mobile-large/DT904.jpg', 1.71), - SearchData(1049, 451606, 'Fragment', 'fragment|earthenware; glazed|ceramics', 'is/mobile-large/sf60-23-113a.jpg', 0.87), - SearchData(-1630, 324567, 'Scarab seal', 'stamp seal|jasper, green (?)|', 'an/mobile-large/ss56_152_13.jpg', 0.66), - SearchData(1199, 451564, 'Fragment', 'fragment|stonepaste; slip painted and glazed|ceramics', 'is/mobile-large/sf60-23-71b.jpg', 0.75), - SearchData(-850, 326010, 'Cylinder seal with chariot hunting scene', 'cylinder seal|egyptian blue|', 'an/mobile-large/SS1970_183_2.jpg', 2.08), - SearchData(-1300, 322598, 'Enthroned deity', 'sculpture|bronze, gold foil|', 'an/mobile-large/hb32_18_3.jpg', 0.53), - SearchData(50, 324250, 'Sherd', 'sherd|ceramic|', 'an/mobile-large/ME52_129_7.jpg', 0.65), - SearchData(1800, 30999, 'Sword (Saif) with Scabbard', 'sword (saif) with scabbard|steel, silver, leather|swords', 'aa/mobile-large/36.25.1547ab_001_Aug2015.jpg', 1.50), - SearchData(787, 327822, 'Stamp seal', 'stamp seal|sandstone or siltstone ?|', 'an/mobile-large/vsz1999_325_226.jpg', 1.11), - SearchData(1399, 451555, 'Fragment', 'fragment|stonepaste; slip painted and glazed|ceramics', 'is/mobile-large/sf60-23-60a.jpg', 1.10), - SearchData(-1750, 322913, 'Nude female figure', 'sculpture|ceramic|', 'an/mobile-large/hb33_47_1.jpg', 0.37), - SearchData(1199, 451511, 'Fragment', 'fragment|stonepaste; underglaze painted|ceramics', 'is/mobile-large/sf60-23-14a.jpg', 2.14), - SearchData(1527, 452142, '"Kai Khusrau Rides Bihzad for the First Time", Folio 212r from the Shahnama (Book of Kings) of Shah Tahmasp', 'folio from an illustrated manuscript|opaque watercolor, ink, silver, and gold on paper|codices', 'is/mobile-large/DP107149.jpg', 0.68), - SearchData(1199, 451558, 'Fragment', 'fragment|earthenware; slip painted and glazed|ceramics', 'is/mobile-large/sf60-23-63a.jpg', 1.30), - SearchData(-750, 326250, 'Fragments of animal figurines', 'sculpture|ceramic, paint|', 'an/mobile-large/ME1977_234_19.jpg', 1.55), - SearchData(849, 451526, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics', 'is/mobile-large/sf60-23-30a.jpg', 1.36), - SearchData(899, 451581, 'Fragment', 'fragment|earthenware; incised|ceramics', 'is/mobile-large/sf60-23-88b.jpg', 0.88), - SearchData(50, 324251, 'Fragment of painted ware', 'sherd|ceramic|', 'an/mobile-large/ME52_129_8.jpg', 0.88), - SearchData(50, 325915, 'Cup', 'cup|ceramic|', 'an/mobile-large/ME67_246_34.jpg', 1.42), - SearchData(1875, 500988, 'Naqqāra', 'naqqāra|metal|membranophone-single-headed / kettle drum', 'mi/mobile-large/midp89.4.366-368.jpg', 1.65), - SearchData(50, 325918, 'Vessel', 'vessel|ceramic|', 'an/mobile-large/hb67_246_37.jpg', 0.73), - SearchData(-1630, 324566, 'Scaraboid seal', 'stamp seal|rock crystal (?)|', 'an/mobile-large/ss56_152_12.jpg', 1.29), - SearchData(849, 451520, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics', 'is/mobile-large/sf60-23-23a.jpg', 1.65), - SearchData(1892, 32370, 'Dagger (Jambiya) with Scabbard and Fitted Storage Case', 'dagger (jambiya) with scabbard and fitted storage case|steel, silver, wood, textile, gold|daggers', 'aa/mobile-large/DP157410.jpg', 0.82), - SearchData(899, 451500, 'Fragment', 'fragment|earthenware; unglazed|ceramics', 'is/mobile-large/sf60-23-3a.jpg', 0.80), - SearchData(-1500, 323559, 'Cylinder seal', 'cylinder seal|stone|', 'an/mobile-large/ss36_106_1.jpg', 1.74), - SearchData(-750, 322309, 'Stamp seal (scaraboid) with cultic scene', 'stamp seal|black limestone|', 'an/mobile-large/ss99_22_40gp.jpg', 0.83), - SearchData(899, 451592, 'Fragment', 'fragment|earthenware; glazed|ceramics', 'is/mobile-large/sf60-23-99a.jpg', 1.63), - SearchData(-700, 324013, 'Stamp seal (scarab) with monster', 'stamp seal|hematite|', 'an/mobile-large/ss45_4_19.jpg', 1.31), - SearchData(-1750, 322916, 'Nude female figure', 'sculpture|ceramic|', 'an/mobile-large/hb33_47_4.jpg', 0.43), - SearchData(-750, 326011, 'Stamp seal (scarab) with monster', 'stamp seal|lapis lazuli|', 'an/mobile-large/ss1970_183_3.jpg', 1.14), - SearchData(-1630, 327099, 'Scarab seal', 'stamp seal|faience, white|', 'an/mobile-large/ss1985_192_30.jpg', 1.39), - SearchData(1449, 451552, 'Fragment', 'fragment|stonepaste; slip and underglaze painted|ceramics', 'is/mobile-large/sf60-23-57a.jpg', 1.57), - SearchData(899, 451576, 'Fragment', 'fragment|earthenware; incised|ceramics', 'is/mobile-large/sf60-23-83b.jpg', 1.23), - SearchData(-1630, 322528, 'Elliptical ring bezel seal', 'stamp seal|rock crystal|', 'an/mobile-large/me23_10_9.jpg', 1.40), - SearchData(1532, 452170, '"Bahrum Gur Before His Father, Yazdigird I", Folio 551v from the Shahnama (Book of Kings) of Shah Tahmasp', 'folio from an illustrated manuscript|opaque watercolor, ink, silver, and gold on paper|codices', 'is/mobile-large/DP107205.jpg', 0.67), - SearchData(1887, 500569, 'Gumuri', 'gumuri|wood, parchment, hide|chordophone-lute-plucked-unfretted', 'mi/mobile-large/MUS2027.jpg', 0.23), - SearchData(1850, 31773, 'Dagger (Jambiya) with Sheath and Belt', 'dagger (jambiya) with sheath and belt|steel, wood, gold, silver, textile, leather, brass|daggers', 'aa/mobile-large/36.25.793ab_001July2014.jpg', 1.50), - SearchData(1799, 444633, 'Powder Horn', 'powder horn|brass and silver|arms and armor', 'is/mobile-large/sf91-1-1082a.jpg', 0.60), - SearchData(1800, 30761, 'Spear', 'spear|steel, brass|shafted weapons', 'aa/mobile-large/36.25.1949_001jan2015.jpg', 0.56), - SearchData(899, 451574, 'Fragment', 'fragment|earthenware; incised|ceramics', 'is/mobile-large/sf60-23-81b.jpg', 1.24), - SearchData(50, 325913, 'Unguentarium', 'vessel|ceramic|', 'an/mobile-large/ME67_246_32.jpg', 0.66), - SearchData(-1630, 324561, 'Scarab seal', 'stamp seal|steatite, bone colored|', 'an/mobile-large/ss56_152_7.jpg', 0.78), - SearchData(-1750, 322915, 'Nude female figure', 'sculpture|ceramic|', 'an/mobile-large/me33_47_3.jpg', 0.64), - SearchData(-750, 321638, 'Stamp seal (scaraboid) with animals', 'stamp seal|variegated brown jasper (quartz)|', 'an/mobile-large/ss86_11_14gp.jpg', 0.87), - SearchData(1850, 31703, 'Dagger (Jambiya) with Sheath and Belt', 'dagger (jambiya) with sheath and belt|steel, silver, wood, leather, iron|daggers', 'aa/mobile-large/36.25.723ab_002june2014.jpg', 0.56), - SearchData(-750, 327771, 'Stamp seal (ovoid) with deity (?)', 'stamp seal|steatite|', 'an/mobile-large/vsz1999_325_175.jpg', 0.85), - SearchData(1882, 73632, 'Mirror of National Costumes of All Nations (Bankoku ishō kagami)', 'print|triptych of woodblock prints (nishiki-e); ink and color on paper|prints', 'as/mobile-large/DP148176.jpg', 1.89), - SearchData(-125, 327483, 'Votive plaque inscribed with Sabaean dedication', 'relief|copper alloy|', 'an/mobile-large/DP368662.jpg', 0.75), - SearchData(899, 451588, 'Fragment', 'fragment|earthenware; glazed|ceramics', 'is/mobile-large/sf60-23-95a.jpg', 1.60), - SearchData(-500, 324027, 'Standing bull', 'sculpture|bronze|', 'an/mobile-large/DT895.jpg', 0.85), - SearchData(150, 324317, 'Head-shaped flask', 'flask|glass|', 'an/mobile-large/ME54_101_2.jpg', 0.74), - SearchData(-550, 323747, 'Scarab seal', 'stamp seal|jasper, green|', 'an/mobile-large/ss41_160_165.jpg', 0.99), - SearchData(1299, 451585, 'Fragment', 'fragment|porcelain|ceramics', 'is/mobile-large/sf60-23-92a.jpg', 0.73), - SearchData(999, 451567, 'Fragment', 'fragment|celadon|ceramics', 'is/mobile-large/sf60-23-74a.jpg', 1.25), - SearchData(50, 325903, 'Lamp', 'lamp|ceramic|', 'an/mobile-large/ME67_246_22.jpg', 1.46), - SearchData(-1630, 324555, 'Scarab seal', 'stamp seal|stone, white|', 'an/mobile-large/ss56_152_1.jpg', 0.74), - SearchData(-700, 323163, 'Nude female figure', 'sculpture|ceramic|', 'an/mobile-large/an34.126.53.jpg', 0.66), - SearchData(1875, 500981, 'Junuk', 'junuk|wood|chordophone-harp', 'mi/mobile-large/Mus196A.jpg', 0.65), - SearchData(937, 451505, 'Fragment of a Bowl', 'fragment of a bowl|earthenware; glazed|ceramics', 'is/mobile-large/sf60-23-8.jpg', 1.37), - SearchData(-700, 326238, 'Weight', 'weight|hematite|', 'an/mobile-large/ME1977_234_6.jpg', 1.08), - SearchData(1149, 451068, 'Earring, One of a Pair', 'earring|gold wire with filigree|jewelry', 'is/mobile-large/LC-52_4_3.jpg', 1.00), - SearchData(-500, 326993, 'Stamp seal (scaraboid) with cartouche', 'stamp seal|limestone|', 'an/mobile-large/ss1984_383_32.jpg', 1.18), - SearchData(1556, 444864, 'Hawk Coin of the Emperor Akbar', 'coin|gold|coins', 'is/mobile-large/LC-99_35_7400.jpg', 1.50), - SearchData(1199, 449159, 'Roundel with a Mounted Falconer and Hare', 'roundel|gypsum plaster; modeled, painted, and gilded|sculpture', 'is/mobile-large/DP373033.jpg', 1.05), - SearchData(-1650, 325690, 'Seven-cup offering bowl', 'bowl|ceramic|', 'an/mobile-large/180468.jpg', 1.25), - SearchData(50, 325894, 'Unguentarium', 'vessel|ceramic|', 'an/mobile-large/ME67_246_13.jpg', 0.78), - SearchData(1199, 451550, 'Fragment', 'fragment|stonepaste; slip painted, glazed|ceramics', 'is/mobile-large/sf60-23-55a.jpg', 1.05), - SearchData(-750, 326997, 'Stamp seal (scaraboid) with animal', 'stamp seal|steatite, gray (?)|', 'an/mobile-large/ss1984_383_36.jpg', 0.94), - SearchData(-1800, 330882, 'Standing figure', 'sculpture|copper alloy|', 'an/mobile-large/2006_511.jpg', 0.75), - SearchData(-1630, 324562, 'Scarab seal', 'stamp seal|steatite, white|', 'an/mobile-large/ss56_152_8.jpg', 1.37), - SearchData(50, 324248, 'Fragment of painted ware', 'sherd|ceramic|', 'an/mobile-large/ME52_129_5.jpg', 1.26), - SearchData(937, 451504, 'Fragment of a Bowl', 'fragment of a bowl|earthenware; glazed|ceramics', 'is/mobile-large/sf60-23-7.jpg', 1.24), - SearchData(849, 451527, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics', 'is/mobile-large/sf60-23-31a.jpg', 1.06), - SearchData(-750, 325519, 'Head of bull', 'sculpture|ceramic|', 'an/mobile-large/ME62_116_2.jpg', 0.91), - SearchData(50, 325889, 'Bowl', 'bowl|ceramic|', 'an/mobile-large/ME67_246_7.jpg', 1.42), - SearchData(50, 325909, 'Unguentarium', 'vessel|ceramic|', 'an/mobile-large/ME67_246_28.jpg', 0.65), - SearchData(1875, 500962, 'Darabukka', 'darabukka|clay, polychrome|membranophone-single-headed / goblet drum', 'mi/mobile-large/C2589 89.4.335.jpg', 0.67), - SearchData(899, 451596, 'Fragment', 'fragment|earthenware; glazed|ceramics', 'is/mobile-large/sf60-23-103.jpg', 1.09), - SearchData(-700, 326255, 'Arrowhead', 'arrowhead|bronze|', 'an/mobile-large/ME1977_234_24.jpg', 0.80), - SearchData(-750, 326995, 'Stamp seal (scaraboid) with divine symbol', 'stamp seal|limestone (?)|', 'an/mobile-large/ss1984_383_34.jpg', 1.07), - SearchData(1299, 451582, 'Fragment', 'fragment|porcelain|ceramics', 'is/mobile-large/sf60-23-89a.jpg', 0.94), - SearchData(849, 451518, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics', 'is/mobile-large/sf60-23-21a.jpg', 1.11), - SearchData(899, 451498, 'Fragment of a Cup', 'fragment of a cup|earthenware; unglazed|ceramics', 'is/mobile-large/sf60-23-1a.jpg', 1.35), - SearchData(-700, 323823, 'Stamp seal (duck-shaped) with cultic scene', 'stamp seal|variegated pink and white chalcedony (quartz)|', 'an/mobile-large/ss41_160_232.jpg', 1.55), - SearchData(1887, 500570, 'Guenbri', 'gunibri|tortoise shell and wood. floral design in white, yellow, and pink.|chordophone-lute-plucked-unfretted', 'mi/mobile-large/MUS2015.jpg', 0.27), - SearchData(899, 451589, 'Fragment', 'fragment|earthenware; glazed|ceramics', 'is/mobile-large/sf60-23-96a.jpg', 0.89), - SearchData(937, 451508, 'Fragment', 'fragment|earthenware; glazed|ceramics', 'is/mobile-large/sf60-23-11a.jpg', 1.81), - SearchData(50, 325890, 'Bowl', 'bowl|ceramic|', 'an/mobile-large/ME67_246_9.jpg', 1.40), - SearchData(899, 451578, 'Fragment', 'fragment|earthenware; glazed|ceramics', 'is/mobile-large/sf60-23-85a.jpg', 1.47), - SearchData(-662, 323177, 'Jar handle with a seal impression', 'jar handle|ceramic|', 'an/mobile-large/DP-16934-003.jpg', 1.43), - SearchData(849, 451529, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics', 'is/mobile-large/sf60-23-33a.jpg', 1.24), - SearchData(-750, 322302, 'Stamp seal (scaraboid) with geometric design', 'stamp seal|steatite, black|', 'an/mobile-large/ss99_22_33gp.jpg', 0.72), - SearchData(-750, 322307, 'Stamp seal (scaraboid) with cultic banquet scene', 'stamp seal|mottled orange jasper (quartz)|', 'an/mobile-large/ss99_22_38gp.jpg', 1.19), - SearchData(-1630, 324565, 'Scarab seal ring with Hyksos-period an-ra inscription', 'stamp seal ring|steatite, cream colored, bronze (?)|', 'an/mobile-large/ss56_152_11.jpg', 0.95), - SearchData(-500, 323745, 'Scarab seal with Bes dominating two lions below a winged sun disc', 'stamp seal|jasper, green|', 'an/mobile-large/ss41_160_163.jpg', 1.74), - SearchData(-2000, 327544, 'Standing female figure wearing a strap and a necklace', 'sculpture|sandstone, quartzite|', 'an/mobile-large/DT868.jpg', 0.76), - SearchData(937, 451506, 'Fragment', 'fragment|earthenware; glazed|ceramics', 'is/mobile-large/sf60-23-9.jpg', 1.52), - SearchData(-1875, 322521, 'Fenestrated axe blade', 'axe|bronze|', 'an/mobile-large/hb23_10_2.jpg', 0.89), - SearchData(899, 451501, 'Fragment', 'fragment|earthenware; unglazed|ceramics', 'is/mobile-large/sf60-23-4a.jpg', 0.92), - SearchData(899, 451531, 'Fragment', 'fragment|earthenware; incised decoration, glazed|ceramics', 'is/mobile-large/sf60-23-35a.jpg', 0.95), - SearchData(799, 451571, 'Fragment', 'fragment|earthenware; glazed|ceramics', 'is/mobile-large/sf60-23-78b.jpg', 1.48), - SearchData(1299, 451583, 'Fragment', 'fragment|porcelain|ceramics', 'is/mobile-large/sf60-23-90a.jpg', 1.30), - SearchData(-2323, 544034, 'Head of a monkey from an ointment vessel', 'ointment jar fragment, monkey head|serpentinite|', 'eg/mobile-large/1970.184.3_EGDP010831.jpg', 1.02), - SearchData(899, 451591, 'Fragment', 'fragment|earthenware; glazed|ceramics', 'is/mobile-large/sf60-23-98a.jpg', 1.00), - SearchData(50, 325919, 'Lamp', 'lamp|ceramic|', 'an/mobile-large/ME67_246_38.jpg', 1.42), - SearchData(1489, 30812, 'Axe (Berdiche)', 'axe (berdiche)|steel, wood, silver|shafted weapons', 'aa/mobile-large/DP165529.jpg', 0.68), - SearchData(849, 451563, 'Fragment', 'fragment|earthenware; slip painted and glazed|ceramics', 'is/mobile-large/sf60-23-70a.jpg', 1.08), - SearchData(1199, 451510, 'Fragment', 'fragment|stonepaste; underglaze painted|ceramics', 'is/mobile-large/sf60-23-13a.jpg', 1.23), - SearchData(11, 442859, 'Basket Earring', 'earring|gold, silver (?); decorated with filigree and granulation|jewelry', 'is/mobile-large/74.51.3607.jpg', 1.08), - SearchData(899, 451537, 'Fragment', 'fragment|earthenware; splash glazed decoration|ceramics', 'is/mobile-large/60-23-41.jpg', 1.67), - SearchData(50, 325907, 'Bowl', 'bowl|ceramic|', 'an/mobile-large/ME67_246_26.jpg', 1.34), - SearchData(849, 451561, 'Fragment', 'fragment|earthenware; slip painted and glazed|ceramics', 'is/mobile-large/sf60-23-66a.jpg', 1.01), - SearchData(1099, 451566, 'Fragment', 'fragment|celadon|ceramics', 'is/mobile-large/sf60-23-73a.jpg', 0.88), - SearchData(1124, 446283, 'Ewer with Molded Inscriptions and Figures on Horseback', 'ewer|stonepaste; molded, monochrome glazed|ceramics', 'is/mobile-large/LC-13_93_3.jpg', 0.67), - SearchData(1149, 451069, 'Earring, One of a Pair', 'earring|gold wire with filigree|jewelry', 'is/mobile-large/52.4.3-4.jpg', 0.70), - SearchData(-700, 326252, 'Fragment of animal figurine', 'sculpture|ceramic|', 'an/mobile-large/ME1977_234_21.jpg', 0.87), - SearchData(-2500, 327596, 'Rectangular mortar', 'mortar|veined marble|', 'an/mobile-large/vs1999_324.jpg', 1.08), - SearchData(-1600, 556377, 'Canaanite Cowroid Seal Amulet with Falcon Headed Deity', 'cowroid seal amulet, falcon headed deity|steatite|', 'eg/mobile-large/05.3.32_bottom.jpg', 1.07), - SearchData(50, 325884, 'Bowl', 'bowl|ceramic|', 'an/mobile-large/ME67_246_3.jpg', 1.27), - SearchData(-1500, 325126, 'Staff (?)', 'staff|bronze|', 'an/mobile-large/ME61_73_3.jpg', 0.56), - SearchData(849, 451543, 'Fragment', 'fragment|earthenware; splash glazed|ceramics', 'is/mobile-large/sf60-23-48a.jpg', 1.44), - SearchData(50, 324249, 'Sherd', 'sherd|ceramic|', 'an/mobile-large/ME52_129_6.jpg', 0.94), - SearchData(899, 451499, 'Fragment', 'fragment|earthenware; unglazed|ceramics', 'is/mobile-large/sf60-23-2a.jpg', 1.07), - SearchData(899, 451539, 'Fragment', 'fragment|earthenware; painted splash glazed decoration|ceramics', 'is/mobile-large/sf60-23-43.jpg', 1.19), - SearchData(-250, 328941, 'Standing bull', 'sculpture|copper alloy, shell|', 'an/mobile-large/2002.34.jpg', 0.79), - SearchData(50, 325917, 'Bowl', 'bowl|ceramic|', 'an/mobile-large/ME67_246_36.jpg', 1.39), - SearchData(999, 455153, 'Fragment', 'fragment|earthenware; luster-painted|ceramics', 'is/mobile-large/sf60-23-46a.jpg', 1.24), - SearchData(849, 451560, 'Fragment', 'fragment|earthenware; slip painted and glazed|ceramics', 'is/mobile-large/sf60-23-65a.jpg', 1.35), - SearchData(849, 455173, 'Fragment', 'fragment|earthenware; painted and glazed|ceramics', 'is/mobile-large/sf60-23-68a.jpg', 1.64), - SearchData(1849, 444669, 'Necklace', 'necklace|silver and cloth|jewelry', 'is/mobile-large/LC-91_1_1132.jpg', 1.50), - SearchData(849, 451530, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics', 'is/mobile-large/sf60-23-34a.jpg', 1.07), - SearchData(1875, 500989, 'Naqqareh', 'naqqareh|wood|membranophone-single-headed / kettle drum', 'mi/mobile-large/C2589 89.4.367.jpg', 1.50), - SearchData(50, 325910, 'Unguentarium', 'vessel|ceramic|', 'an/mobile-large/ME67_246_29.jpg', 0.65), - SearchData(937, 451507, 'Fragment', 'fragment|earthenware; glazed|ceramics', 'is/mobile-large/sf60-23-10a.jpg', 0.85), - SearchData(849, 451568, 'Fragment', 'fragment|stonepaste; slip painted and glazed|ceramics', 'is/mobile-large/sf60-23-75a.jpg', 1.00), - SearchData(-1892, 322525, 'Fish amulet', 'amulet|stone|', 'an/mobile-large/me23_10_6.jpg', 1.38), - SearchData(899, 451532, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics', 'is/mobile-large/sf60-23-36a.jpg', 1.44), - SearchData(-125, 326695, 'Standing male figure', 'sculpture|alabaster (gypsum)|', 'an/mobile-large/an1982.317.3.jpg', 0.72), - SearchData(50, 325901, 'Lamp', 'lamp|ceramic|', 'an/mobile-large/ME67_246_20.jpg', 1.57), - SearchData(849, 451528, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics', 'is/mobile-large/sf60-23-32a.jpg', 1.53), - SearchData(1849, 817059, 'Tapis, ceremonial skirt with squid pattern (cumi-cumi) iconography', 'ceremonial skirt (tapis)|cotton, silk, mica, dyes|textiles-costumes', 'ao/mobile-large/Squid_textile_Confino.jpg', 1.28), - SearchData(899, 451577, 'Fragment', 'fragment|earthenware; incised|ceramics', 'is/mobile-large/sf60-23-84a.jpg', 0.98), - SearchData(1049, 452939, 'Pair of Earrings', 'earrings|gold; filigree and granulation|jewelry', 'is/mobile-large/DP233260.jpg', 1.34), - SearchData(1875, 500990, 'Naqqāra', 'naqqāra|metal|membranophone-single-headed / kettle drum', 'mi/mobile-large/MUS687A1.jpg', 1.03), - SearchData(-1875, 325093, 'Fenestrated axe blade', 'axe|bronze|', 'an/mobile-large/HB61_29.jpg', 1.81), - SearchData(50, 325886, 'Juglet', 'juglet|ceramic|', 'an/mobile-large/ME67_246_5.jpg', 0.78), - SearchData(50, 325908, 'Unguentarium', 'vessel|ceramic|', 'an/mobile-large/ME67_246_27.jpg', 0.63), - SearchData(849, 451522, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics', 'is/mobile-large/sf60-23-26a.jpg', 1.19), - SearchData(1875, 500998, 'Kamānja agūz (old fiddle)', 'kamānja agūz (old fiddle)|wood, coconut shell, skin|chordophone-lute-bowed-unfretted', 'mi/mobile-large/MUS195Aright.jpg', 0.23), - SearchData(1602, 453336, 'A Stallion', 'illustrated album leaf|ink, opaque watercolor, and gold on paper|codices', 'is/mobile-large/DP234078.jpg', 1.48), - SearchData(-1750, 322914, 'Nude female figure', 'sculpture|ceramic|', 'an/mobile-large/me33_47_2.jpg', 0.54), - SearchData(899, 451540, 'Fragment', 'fragment|earthenware|ceramics', 'is/mobile-large/sf60-23-44ab.jpg', 1.81), - SearchData(1315, 451412, '"Yazdegird I Kicked to Death by the Water Horse", Folio from a Shahnama (Book of Kings)', 'folio from an illustrated manuscript|ink, opaque watercolor, silver, and gold on paper|codices', 'is/mobile-large/DP159355.jpg', 0.79), - SearchData(1399, 451557, 'Fragment', 'fragment|stonepaste; slip painted and glazed|ceramics', 'is/mobile-large/sf60-23-62a.jpg', 1.28), - SearchData(1800, 31772, 'Dagger (Jambiya) with Sheath', 'dagger (jambiya) with sheath|steel, brass, wood, textile|daggers', 'aa/mobile-large/36.25.792ab_001Mar2015.jpg', 0.71), - SearchData(849, 451521, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics', 'is/mobile-large/sf60-23-24a.jpg', 1.36), - SearchData(-1892, 322526, 'Pendant', 'pendant|stone|', 'an/mobile-large/me23_10_7.jpg', 0.91), - SearchData(-500, 324075, 'Incense burner', 'incense burner|bronze|', 'an/mobile-large/DT893.jpg', 0.88), - SearchData(899, 451538, 'Fragment', 'fragment|earthenware; splash glazed decoration|ceramics', 'is/mobile-large/sf60-23-42.jpg', 1.08), - SearchData(50, 324246, 'Sherd', 'sherd|ceramic|', 'an/mobile-large/ME52_129_3.jpg', 1.64), - SearchData(-750, 326998, 'Stamp seal (scarab) with animal', 'stamp seal|mottled greenstone|', 'an/mobile-large/ss1984_383_37.jpg', 1.13), - SearchData(1149, 450930, 'Jar', 'jar|earthenware; glazed|ceramics', 'is/mobile-large/LC-48_113_2.jpg', 0.80), - SearchData(849, 451515, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics', 'is/mobile-large/sf60-23-18a.jpg', 1.24), - SearchData(50, 325906, 'Juglet', 'juglet|ceramic|', 'an/mobile-large/ME67_246_25.jpg', 0.79), - SearchData(50, 325896, 'Unguentarium', 'vessel|ceramic|', 'an/mobile-large/ME67_246_15.jpg', 0.73), - SearchData(-500, 323925, 'Scarab seal with human head', 'stamp seal|stone, mottled red and white|', 'an/mobile-large/ss41_160_459.jpg', 1.51), - SearchData(1049, 451603, 'Fragment', 'fragment|earthenware; glazed|ceramics', 'is/mobile-large/sf60-23-110a.jpg', 1.19), - SearchData(1049, 451605, 'Fragment', 'fragment|earthenware; glazed|ceramics', 'is/mobile-large/sf60-23-112a.jpg', 0.87), - SearchData(50, 325905, 'Vessel', 'vessel|ceramic|', 'an/mobile-large/ME67_246_24.jpg', 0.80), - SearchData(849, 451542, 'Fragment', 'fragment|earthenware; splash glazed|ceramics', 'is/mobile-large/sf60-23-47a.jpg', 1.18), - SearchData(1875, 501012, 'Daff', 'daff|wood and parchment.|membranophone-double-headed / frame drum', 'mi/mobile-large/midp89.4.392.jpg', 1.78), - SearchData(50, 325911, 'Unguentarium', 'vessel|ceramic|', 'an/mobile-large/ME67_246_30.jpg', 0.72), - SearchData(50, 325882, 'Small bowl', 'bowl|ceramic|', 'an/mobile-large/ME67_246_1.jpg', 1.47), - SearchData(-750, 322308, 'Stamp seal (scaraboid) with cultic scene', 'stamp seal|green-black serpentine|', 'an/mobile-large/ss99_22_39gp.jpg', 0.85), - SearchData(899, 451579, 'Fragment', 'fragment|earthenware; glazed|ceramics', 'is/mobile-large/sf60-23-86b.jpg', 0.94), - SearchData(849, 451562, 'Fragment', 'fragment|earthenware; slip painted and glazed|ceramics', 'is/mobile-large/sf60-23-67a.jpg', 1.60), - SearchData(-1892, 322522, 'Pin', 'pin|bronze|', 'an/mobile-large/me23_10_3.jpg', 1.78), - SearchData(50, 324245, 'Fragment of painted ware', 'sherd|ceramic|', 'an/mobile-large/ME52_129_2.jpg', 1.29), - SearchData(1199, 451570, 'Fragment', 'fragment|stonepaste; slip painted and glazed|ceramics', 'is/mobile-large/sf60-23-77a.jpg', 1.13), - SearchData(1849, 503640, 'Daraboukkeh', 'daraboukkeh|pottery|membranophone-single-headed / goblet drum', 'mi/mobile-large/C2589 89.4.364.jpg', 0.67), - SearchData(-1300, 327319, 'Smiting weather god or warrior with horned headgear', 'sculpture|bronze|', 'an/mobile-large/242307.jpg', 0.80), - SearchData(-300, 329093, 'Figure of a lion', 'sculpture|copper alloy|', 'an/mobile-large/DT2856.jpg', 1.26), - SearchData(-750, 326251, 'Fragment of animal figurine', 'sculpture|ceramic|', 'an/mobile-large/ME1977_234_20.jpg', 0.83), - SearchData(1875, 500984, 'Stringed Instrument (Qanbus)', 'stringed instrument (qanbus)|wood, hide|chordophone-lute-plucked-fretted', 'mi/mobile-large/Mus214A middle.jpg', 0.73), - SearchData(-1600, 544670, 'Canaanite Scarab with a Lion over a Crocodile', 'scarab, lion, crocodile|steatite|', 'eg/mobile-large/D_767_bottom.jpg', 1.18), - SearchData(50, 325885, 'Ribbed juglet', 'juglet|ceramic|', 'an/mobile-large/hb67_246_4.jpg', 0.83), - SearchData(-1892, 322523, 'Bracelet', 'bracelet|bronze|', 'an/mobile-large/me23_10_4.jpg', 1.22), - SearchData(50, 325895, 'Unguentarium', 'vessel|ceramic|', 'an/mobile-large/ME67_246_14.jpg', 0.70), - SearchData(1049, 451601, 'Fragment', 'fragment|earthenware; incised|ceramics', 'is/mobile-large/sf60-23-108a.jpg', 1.34), - SearchData(-650, 326240, 'Cosmetic palette', 'cosmetic palette|stone|', 'an/mobile-large/ME1977_234_9.jpg', 1.64), - SearchData(-1888, 322527, 'Hemispheroid seal with addorsed Egyptianizing human heads', 'stamp seal|steatite, white|', 'an/mobile-large/ss23_10_8a.jpg', 1.49), - SearchData(-550, 323941, 'Scarab seal', 'stamp seal|rock crystal|', 'an/mobile-large/ss42_8.jpg', 0.81), - SearchData(-500, 327499, 'Vessel with a lid', 'vessel and lid|calcite alabaster|', 'an/mobile-large/jarxx.jpg', 0.76), - SearchData(1887, 500568, 'Guenbri', 'guenbri|gourd, wood, parchment decorated with floral designs|chordophone-lute-plucked-unfretted', 'mi/mobile-large/MUS2014.jpg', 0.29), - SearchData(849, 451516, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics', 'is/mobile-large/sf60-23-19a.jpg', 1.22), - SearchData(50, 325887, 'Small lamp', 'lamp|ceramic|', 'an/mobile-large/ME67_246_6.jpg', 1.54), - SearchData(-1648, 544664, 'Canaanite Scarab with Two Men and a Lion', 'scarab, men, lion|steatite (glazed)|', 'eg/mobile-large/D_764_bottom.jpg', 1.46), - SearchData(1049, 451607, 'Fragment', 'fragment|earthenware; incised|ceramics', 'is/mobile-large/sf60-23-114a.jpg', 1.20), - SearchData(150, 324319, 'Pitcher', 'pitcher|glass|', 'an/mobile-large/ME54_101_4.jpg', 0.67), - SearchData(1600, 451725, '"The Concourse of the Birds", Folio 11r from a Mantiq al-Tayr (Language of the Birds)', 'folio from an illustrated manuscript|ink, opaque watercolor, gold, and silver on paper|codices', 'is/mobile-large/DP234083.jpg', 0.67), - SearchData(-900, 326249, 'Bead', 'bead|stone|', 'an/mobile-large/ME1977_234_18.jpg', 1.03), - SearchData(849, 451514, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics', 'is/mobile-large/sf60-23-17a.jpg', 1.17), - SearchData(50, 324288, 'Vessel', 'vessel|ceramic|', 'an/mobile-large/hb53_208.jpg', 0.40), - SearchData(899, 451580, 'Fragment', 'fragment|earthenware; incised|ceramics', 'is/mobile-large/sf60-23-87a.jpg', 1.22), - SearchData(-1630, 324556, 'Scarab seal', 'stamp seal|stone, white|', 'an/mobile-large/ss56_152_2.jpg', 1.43), - SearchData(150, 324318, 'Vessel', 'vessel|glass|', 'an/mobile-large/ME54_101_3.jpg', 0.66), - SearchData(-1500, 325124, 'Axe head', 'axe|bronze|', 'an/mobile-large/ME61_73_1.jpg', 1.45), - SearchData(849, 451523, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics', 'is/mobile-large/sf60-23-27b.jpg', 1.30), - SearchData(50, 325893, 'Unguentarium', 'vessel|ceramic|', 'an/mobile-large/ME67_246_12.jpg', 0.65), - SearchData(849, 451519, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics', 'is/mobile-large/sf60-23-22a.jpg', 1.12), - SearchData(1330, 448938, '"The Funeral of Isfandiyar," Folio from a Shahnama (Book of Kings)', 'folio from an illustrated manuscript|ink, opaque watercolor, and gold on paper|codices', 'is/mobile-large/DP238058.jpg', 0.73), - SearchData(-1981, 552927, 'Middle Kingdom statuette, reinscribed for Harsiese High Priest of Memphis in the Third Intermediate Period', 'statuette, man, reinscribed for harsiese|greywacke|', 'eg/mobile-large/LC-68_101_EGDP026382.jpg', 0.67), - SearchData(1882, 500567, 'Rebab', 'rebab|wood, leather, shells|chordophone-lute-bowed-unfretted', 'mi/mobile-large/MUS2019.jpg', 0.55), - SearchData(-1630, 324564, 'Scarab seal', 'stamp seal|steatite, white|', 'an/mobile-large/ss56_152_10.jpg', 0.77), - SearchData(1049, 451604, 'Fragment', 'fragment|earthenware; glazed|ceramics', 'is/mobile-large/sf60-23-111a.jpg', 0.85), - SearchData(1049, 451598, 'Fragment', 'fragment|earthenware; glazed|ceramics', 'is/mobile-large/sf60-23-105a.jpg', 1.65), - SearchData(-1600, 544669, 'Canaanite Scarab with a Roaring Lion', 'scarab, lion|steatite|', 'eg/mobile-large/D_769_bottom.jpg', 1.39), - SearchData(-1500, 327792, 'Cylinder seal', 'cylinder seal|copper alloy (leaded bronze)|', 'an/mobile-large/1999,325,196.jpg', 5.56), - SearchData(1850, 31572, 'Dagger (Jambiya) with Sheath and Belt', 'dagger (jambiya) with sheath and belt|steel, wood, silver, silver wire, textile, silk, leather|daggers', 'aa/mobile-large/36.25.982ab_003july2014.jpg', 0.56), - SearchData(-1900, 325342, 'Oil lamp', 'lamp|ceramic|', 'an/mobile-large/ME61_150_1.jpg', 1.42), - SearchData(150, 324316, 'Head-shaped flask', 'flask|glass|', 'an/mobile-large/ME54_101_1.jpg', 0.68), - SearchData(1299, 451587, 'Fragment', 'fragment|porcelain|ceramics', 'is/mobile-large/sf60-23-94b.jpg', 1.02), - SearchData(1299, 451586, 'Fragment', 'fragment|porcelain|ceramics', 'is/mobile-large/sf60-23-93a.jpg', 1.13), - SearchData(-1300, 322889, 'Enthroned deity', 'sculpture|bronze, gold foil|', 'an/mobile-large/DP137934.jpg', 0.70), - SearchData(-1966, 545105, 'Head of a sphinx, possibly of Amenemhat I', 'head, sphinx; 12th-dyn-king|dolomitic marble|', 'eg/mobile-large/66.99.4_EGDP017910.jpg', 0.80), - SearchData(50, 325912, 'Unguentarium', 'vessel|ceramic|', 'an/mobile-large/ME67_246_31.jpg', 0.62), - SearchData(1149, 453615, 'Basket Earring, One of a Pair', 'earring|gold|jewelry', 'is/mobile-large/35.29.5_6.jpg', 1.03), - SearchData(849, 451524, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics', 'is/mobile-large/sf60-23-28a.jpg', 1.47), - SearchData(849, 455174, 'Fragment', 'fragment|earthenware; glazed|ceramics', 'is/mobile-large/sf60-23-69a.jpg', 1.55), - SearchData(1049, 451597, 'Fragment', 'fragment|earthenware; glazed|ceramics', 'is/mobile-large/sf60-23-104a.jpg', 0.81), - SearchData(849, 451545, 'Fragment', 'fragment|earthenware; slip painted, glazed|ceramics', 'is/mobile-large/sf60-23-50a.jpg', 1.59), - SearchData(1249, 451551, 'Fragment', 'fragment|stonepaste; slip painted, incised, and splash glazed|ceramics', 'is/mobile-large/sf60-23-56a.jpg', 1.36), - SearchData(899, 451534, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics', 'is/mobile-large/sf60-23-38a.jpg', 1.23), - SearchData(-700, 326244, 'Tridacna shell', 'shell|shell (tridacna squamosa)|', 'an/mobile-large/ME1977_234_13.jpg', 1.46), - SearchData(-1500, 322524, 'Pendant', 'pendant|silver|', 'an/mobile-large/me23_10_5.jpg', 1.09), - SearchData(899, 451575, 'Fragment', 'fragment|earthenware; incised|ceramics', 'is/mobile-large/sf60-23-82a.jpg', 1.49), - SearchData(1199, 451512, 'Fragment', 'fragment|stonepaste; underglaze painted|ceramics', 'is/mobile-large/sf60-23-15a.jpg', 0.92), - SearchData(899, 451536, 'Fragment', 'fragment|earthenware; painted decoration|ceramics', 'is/mobile-large/sf60-23-40.jpg', 1.20), - SearchData(1550, 451092, 'Safavid Courtiers Leading Georgian Captives', 'panel|silk, metal wrapped thread; lampas|textiles-woven', 'is/mobile-large/DP230052.jpg', 0.56), - SearchData(1850, 31573, 'Dagger (Jambiya) with Sheath', 'dagger (jambiya) with sheath|steel, wood, silver, gold, copper foil, pigment, paper, glue|daggers', 'aa/mobile-large/36.25.983ab_003july2014.jpg', 0.67), - SearchData(4, 323749, 'Stamp seal (scaraboid) with animals', 'stamp seal|variegated red and neutral carnelian (quartz)|', 'an/mobile-large/ss41_160_167.jpg', 1.74), - SearchData(1738, 446556, 'Shahnama (Book of Kings) of Firdausi', 'illustrated manuscript|ink, opaque watercolor, silver, and gold on paper|codices', 'is/mobile-large/sf13-228-22-64r.jpg', 0.59), - SearchData(899, 451502, 'Fragment', 'fragment|earthenware; glazed|ceramics', 'is/mobile-large/sf60-23-5a.jpg', 0.86), - SearchData(1249, 450578, 'Dish with Horse and Rider', 'dish|stonepaste; incised decoration through a black slip ground under a turquoise glaze (silhouette ware)|ceramics', 'is/mobile-large/sf45-153-2b.jpg', 1.00), - SearchData(-500, 326422, 'Stamp seal (duck-shaped) with geometric design', 'stamp seal|stone|', 'an/mobile-large/ss1986_311_5a.jpg', 1.19), - SearchData(849, 451525, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics', 'is/mobile-large/sf60-23-29a.jpg', 0.97), - SearchData(-1400, 327231, 'Smiting god, wearing an Egyptian atef crown', 'sculpture|bronze|', 'an/mobile-large/DP370818.jpg', 0.70), - SearchData(-900, 326245, 'Object', 'object|stone|', 'an/mobile-large/ME1977_234_14.jpg', 1.03), - SearchData(50, 325888, 'Unguentarium', 'vessel|ceramic|', 'an/mobile-large/ME67_246_8.jpg', 0.63), - SearchData(-450, 324255, 'Figure of ibex', 'sculpture|bronze|', 'an/mobile-large/IBEX.JPG', 0.66), - SearchData(300, 326693, 'Head of a man', 'sculpture|alabaster (gypsum)|', 'an/mobile-large/DT6598.jpg', 0.80), - SearchData(-550, 323746, 'Scarab seal', 'stamp seal|jasper, green|', 'an/mobile-large/ss41_160_164.jpg', 0.87), - SearchData(1049, 451600, 'Fragment', 'fragment|earthenware; incised and glazed|ceramics', 'is/mobile-large/sf60-23-107a.jpg', 1.50), - SearchData(50, 325898, 'Vessel', 'vessel|ceramic|', 'an/mobile-large/ME67_246_17.jpg', 1.12), - SearchData(-1594, 556437, 'Scarab with a Crocodile Headed Deity', 'scarab, sebek|glazed steatite|', 'eg/mobile-large/c_456_bottom.jpg', 1.29), - SearchData(-550, 323931, 'Scaraboid seal', 'stamp seal|serpentine, green|', 'an/mobile-large/ss41_160_548.jpg', 1.63), - SearchData(-1, 322592, 'Camel and riders', 'sculpture|silver|', 'an/mobile-large/DP-14352-001.jpg', 0.77), - SearchData(-1630, 324563, 'Scarab seal', 'stamp seal|stone, cream colored|', 'an/mobile-large/ss56_152_9.jpg', 0.87), - SearchData(50, 325904, 'Juglet', 'juglet|ceramic|', 'an/mobile-large/ME67_246_23.jpg', 0.80), - SearchData(899, 451541, 'Fragment', 'fragment|earthenware; slip painted, incised, and splash glazed|ceramics', 'is/mobile-large/sf60-23-45a.jpg', 1.28), - SearchData(1199, 451569, 'Fragment', 'fragment|stonepaste; slip painted and glazed|ceramics', 'is/mobile-large/sf60-23-76a.jpg', 1.41), - SearchData(1875, 500985, 'Stringed Instrument', 'stringed instrument|wood|chordophone-lute-plucked-fretted', 'mi/mobile-large/MUS251A.jpg', 0.31), - SearchData(-1630, 324557, 'Scarab seal ring', 'stamp seal ring|stone, white, copper alloy mount|', 'an/mobile-large/ss56_152_3.jpg', 0.56), - SearchData(-750, 327024, 'Stamp seal (scaraboid) with animal', 'stamp seal|serpentine, black (?)|', 'an/mobile-large/ss1984_383_63.jpg', 1.16), - SearchData(-2500, 327496, 'Head of a bull', 'sculpture|ivory (hippopotamus)|', 'an/mobile-large/sd1994_81.jpg', 0.84), - SearchData(-600, 321452, 'Stamp seal (grooved oval base with ribbed handle) with cultic scene', 'stamp seal|neutral chalcedony (quartz)|', 'an/mobile-large/ss74_51_4364.jpg', 0.67), - SearchData(50, 324244, 'Fragment of painted ware', 'sherd|ceramic, pigment|', 'an/mobile-large/ME52_129_1.jpg', 1.58), - SearchData(849, 451517, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics', 'is/mobile-large/sf60-23-20a.jpg', 1.40), - SearchData(849, 451546, 'Fragment', 'fragment|earthenware; slip painted, glazed|ceramics', 'is/mobile-large/sf60-23-51a.jpg', 1.53), - SearchData(-1648, 556529, 'Canaanite Scarab of the "Anra" Type', 'scarab, "anra"|steatite|', 'eg/mobile-large/30.8.896_bottom.jpg', 0.78), - SearchData(1355, 449537, 'Mihrab (Prayer Niche)', 'mihrab|mosaic of polychrome-glazed cut tiles on stonepaste body; set into mortar|ceramics', 'is/mobile-large/DP235035.jpg', 0.67), - SearchData(899, 451593, 'Fragment', 'fragment|earthenware; splash glazed|ceramics', 'is/mobile-large/sf60-23-100.jpg', 1.52), - SearchData(-125, 326694, 'Votive or funerary stele', 'stele|alabaster (gypsum)|', 'an/mobile-large/DT959.jpg', 0.78), - SearchData(50, 325900, 'Unguentarium', 'vessel|ceramic|', 'an/mobile-large/ME67_246_19.jpg', 0.73), -]; \ No newline at end of file + SearchData(1199, 451550, 'Fragment', 'fragment|stonepaste; slip painted, glazed|ceramics'), + SearchData(-450, 324255, 'Figure of ibex', 'sculpture|bronze|'), + SearchData(50, 325897, 'Unguentarium', 'vessel|ceramic|'), + SearchData(-750, 323750, 'Stamp seal (oval bezel) with cultic scene', 'stamp seal|carnelian (quartz)|'), + SearchData(1315, 451412, '"Yazdegird I Kicked to Death by the Water Horse", Folio from a Shahnama (Book of Kings)', + 'folio from an illustrated manuscript|ink, opaque watercolor, silver, and gold on paper|codices'), + SearchData(-500, 327499, 'Vessel with a lid', 'vessel and lid|calcite alabaster|'), + SearchData(-500, 323925, 'Scarab seal with human head', 'stamp seal|stone, mottled red and white|'), + SearchData(1849, 443096, 'Headband', 'headband|silk, metal thread; wrapped and braided|textiles-costumes'), + SearchData(-1750, 322914, 'Nude female figure', 'sculpture|ceramic|'), + SearchData(-662, 323164, 'Openwork rattle', 'rattle|ceramic|'), + SearchData(1299, 451583, 'Fragment', 'fragment|porcelain|ceramics'), + SearchData(849, 455174, 'Fragment', 'fragment|earthenware; glazed|ceramics'), + SearchData(-650, 327043, 'Palette with a sculpted female head and incised decoration', 'palette|calcite|'), + SearchData(1249, 451551, 'Fragment', 'fragment|stonepaste; slip painted, incised, and splash glazed|ceramics'), + SearchData(50, 324246, 'Sherd', 'sherd|ceramic|'), + SearchData(50, 325919, 'Lamp', 'lamp|ceramic|'), + SearchData(50, 325894, 'Unguentarium', 'vessel|ceramic|'), + SearchData(849, 451515, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics'), + SearchData(50, 325911, 'Unguentarium', 'vessel|ceramic|'), + SearchData(899, 451501, 'Fragment', 'fragment|earthenware; unglazed|ceramics'), + SearchData(50, 325898, 'Vessel', 'vessel|ceramic|'), + SearchData(1149, 450930, 'Jar', 'jar|earthenware; glazed|ceramics'), + SearchData(1892, 32370, 'Dagger (Jambiya) with Scabbard and Fitted Storage Case', + 'dagger (jambiya) with scabbard and fitted storage case|steel, silver, wood, textile, gold|daggers'), + SearchData(1049, 451597, 'Fragment', 'fragment|earthenware; glazed|ceramics'), + SearchData(-1750, 322916, 'Nude female figure', 'sculpture|ceramic|'), + SearchData(1149, 451069, 'Earring, One of a Pair', 'earring|gold wire with filigree|jewelry'), + SearchData(1049, 451603, 'Fragment', 'fragment|earthenware; glazed|ceramics'), + SearchData(50, 325889, 'Bowl', 'bowl|ceramic|'), + SearchData(-1600, 556377, 'Canaanite Cowroid Seal Amulet with Falcon Headed Deity', + 'cowroid seal amulet, falcon headed deity|steatite|'), + SearchData(899, 451540, 'Fragment', 'fragment|earthenware|ceramics'), + SearchData(1299, 451585, 'Fragment', 'fragment|porcelain|ceramics'), + SearchData(50, 324251, 'Fragment of painted ware', 'sherd|ceramic|'), + SearchData(300, 326693, 'Head of a man', 'sculpture|alabaster (gypsum)|'), + SearchData(1875, 501012, 'Daff', 'daff|wood and parchment.|membranophone-double-headed / frame drum'), + SearchData(899, 451592, 'Fragment', 'fragment|earthenware; glazed|ceramics'), + SearchData(50, 325913, 'Unguentarium', 'vessel|ceramic|'), + SearchData(1299, 451582, 'Fragment', 'fragment|porcelain|ceramics'), + SearchData(-1500, 325125, 'Adze head', 'adze|bronze|'), + SearchData(-500, 326993, 'Stamp seal (scaraboid) with cartouche', 'stamp seal|limestone|'), + SearchData(-1597, 544660, 'Scarab with a Crocodile Headed Figure Holding a Flower', + 'scarab, crocodile figure, flower|glazed steatite|'), + SearchData(-750, 325519, 'Head of bull', 'sculpture|ceramic|'), + SearchData(150, 324318, 'Vessel', 'vessel|glass|'), + SearchData(50, 325906, 'Juglet', 'juglet|ceramic|'), + SearchData(1799, 444633, 'Powder Horn', 'powder horn|brass and silver|arms and armor'), + SearchData(-1680, 323115, 'Inlay', 'inlay|bone|'), + SearchData(1800, 30761, 'Spear', 'spear|steel, brass|shafted weapons'), + SearchData(-662, 323144, 'Bottle', 'bottle|ceramic|'), + SearchData(1875, 500962, 'Darabukka', 'darabukka|clay, polychrome|membranophone-single-headed / goblet drum'), + SearchData(849, 451523, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics'), + SearchData(-1500, 325126, 'Staff (?)', 'staff|bronze|'), + SearchData(50, 324288, 'Vessel', 'vessel|ceramic|'), + SearchData(899, 451532, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics'), + SearchData(50, 325909, 'Unguentarium', 'vessel|ceramic|'), + SearchData(1875, 500984, 'Stringed Instrument (Qanbus)', + 'stringed instrument (qanbus)|wood, hide|chordophone-lute-plucked-fretted'), + SearchData(937, 451504, 'Fragment of a Bowl', 'fragment of a bowl|earthenware; glazed|ceramics'), + SearchData(-750, 322308, 'Stamp seal (scaraboid) with cultic scene', 'stamp seal|green-black serpentine|'), + SearchData(-1500, 325124, 'Axe head', 'axe|bronze|'), + SearchData(50, 325885, 'Ribbed juglet', 'juglet|ceramic|'), + SearchData(0, 326243, 'Open bowl', 'bowl|ceramic, paint|'), + SearchData(849, 451546, 'Fragment', 'fragment|earthenware; slip painted, glazed|ceramics'), + SearchData(-450, 323936, 'Stamp seal', 'stamp seal|agate|'), + SearchData(-1594, 556437, 'Scarab with a Crocodile Headed Deity', 'scarab, sebek|glazed steatite|'), + SearchData(1355, 449537, 'Mihrab (Prayer Niche)', + 'mihrab|mosaic of polychrome-glazed cut tiles on stonepaste body; set into mortar|ceramics'), + SearchData(1849, 503639, 'Ney-Anbān/Habbān', 'tulum|wood, cane, goat or kidskin|aerophone-reed vibrated-bagpipe'), + SearchData(-750, 326992, 'Stamp seal (ovoid, in grooved mount with loop handle) with cartouches', + 'stamp seal|steatite, white; copper alloy mount|'), + SearchData(-1680, 323122, 'Bowl', 'bowl|ceramic, paint|'), + SearchData(1649, 646829, 'Filigree Casket with Sliding Top', 'box|silver filigree; parcel-gilt|metal'), + SearchData(999, 455153, 'Fragment', 'fragment|earthenware; luster-painted|ceramics'), + SearchData(-662, 323155, 'Jug', 'jug|ceramic|'), + SearchData(-700, 326994, 'Stamp seal (scaraboid) with monster', 'stamp seal|calcite|'), + SearchData(-1630, 323118, 'Scarab seal ring', 'stamp seal ring|jasper, green with gold mount and copper alloy ring|'), + SearchData(50, 325892, 'Cup', 'cup|ceramic|'), + SearchData(899, 451577, 'Fragment', 'fragment|earthenware; incised|ceramics'), + SearchData(150, 324316, 'Head-shaped flask', 'flask|glass|'), + SearchData(849, 451524, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics'), + SearchData( + -2323, 544034, 'Head of a monkey from an ointment vessel', 'ointment jar fragment, monkey head|serpentinite|'), + SearchData(-750, 322302, 'Stamp seal (scaraboid) with geometric design', 'stamp seal|steatite, black|'), + SearchData(-750, 326995, 'Stamp seal (scaraboid) with divine symbol', 'stamp seal|limestone (?)|'), + SearchData(50, 324250, 'Sherd', 'sherd|ceramic|'), + SearchData(-1648, 544664, 'Canaanite Scarab with Two Men and a Lion', 'scarab, men, lion|steatite (glazed)|'), + SearchData(50, 324248, 'Fragment of painted ware', 'sherd|ceramic|'), + SearchData(-125, 327483, 'Votive plaque inscribed with Sabaean dedication', 'relief|copper alloy|'), + SearchData(849, 451530, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics'), + SearchData(899, 451499, 'Fragment', 'fragment|earthenware; unglazed|ceramics'), + SearchData(-500, 326422, 'Stamp seal (duck-shaped) with geometric design', 'stamp seal|stone|'), + SearchData(899, 451591, 'Fragment', 'fragment|earthenware; glazed|ceramics'), + SearchData(-662, 323166, 'Bowl', 'bowl|ceramic|'), + SearchData(-650, 321648, 'Stamp seal (conoid) with cultic scene', + 'stamp seal|brown chalcedony (quartz), possibly etched to produce yellow mottling|'), + SearchData(1399, 451553, 'Fragment', 'fragment|earthenware; slip painted and glazed|ceramics'), + SearchData(1687, 453279, 'Calligraphic Plaque', 'plaque|steel; forged and pierced|metal'), + SearchData(1649, 448587, 'Panel from a Tent Lining (Qanat)', + 'panel|cotton; plain weave, mordant dyed and painted, resist-dyed|textiles-painted and/or printed'), + SearchData(1199, 451558, 'Fragment', 'fragment|earthenware; slip painted and glazed|ceramics'), + SearchData(899, 451500, 'Fragment', 'fragment|earthenware; unglazed|ceramics'), + SearchData(-1630, 324567, 'Scarab seal', 'stamp seal|jasper, green (?)|'), + SearchData(849, 451568, 'Fragment', 'fragment|stonepaste; slip painted and glazed|ceramics'), + SearchData(1199, 451512, 'Fragment', 'fragment|stonepaste; underglaze painted|ceramics'), + SearchData(1299, 451584, 'Fragment', 'fragment|porcelain|ceramics'), + SearchData(1875, 500981, 'Junuk', 'junuk|wood|chordophone-harp'), + SearchData(50, 325908, 'Unguentarium', 'vessel|ceramic|'), + SearchData(1850, 31572, 'Dagger (Jambiya) with Sheath and Belt', + 'dagger (jambiya) with sheath and belt|steel, wood, silver, silver wire, textile, silk, leather|daggers'), + SearchData(50, 325904, 'Juglet', 'juglet|ceramic|'), + SearchData(1875, 500998, 'Kamānja agūz (old fiddle)', + 'kamānja agūz (old fiddle)|wood, coconut shell, skin|chordophone-lute-bowed-unfretted'), + SearchData(899, 451580, 'Fragment', 'fragment|earthenware; incised|ceramics'), + SearchData(1849, 817059, 'Tapis, ceremonial skirt with squid pattern (cumi-cumi) iconography', + 'ceremonial skirt (tapis)|cotton, silk, mica, dyes|textiles-costumes'), + SearchData(-700, 324013, 'Stamp seal (scarab) with monster', 'stamp seal|hematite|'), + SearchData(787, 327822, 'Stamp seal', 'stamp seal|sandstone or siltstone ?|'), + SearchData(849, 451562, 'Fragment', 'fragment|earthenware; slip painted and glazed|ceramics'), + SearchData(937, 451508, 'Fragment', 'fragment|earthenware; glazed|ceramics'), + SearchData( + -750, 322307, 'Stamp seal (scaraboid) with cultic banquet scene', 'stamp seal|mottled orange jasper (quartz)|'), + SearchData(-600, 321452, 'Stamp seal (grooved oval base with ribbed handle) with cultic scene', + 'stamp seal|neutral chalcedony (quartz)|'), + SearchData(50, 325918, 'Vessel', 'vessel|ceramic|'), + SearchData(899, 451498, 'Fragment of a Cup', 'fragment of a cup|earthenware; unglazed|ceramics'), + SearchData(899, 451588, 'Fragment', 'fragment|earthenware; glazed|ceramics'), + SearchData(849, 451543, 'Fragment', 'fragment|earthenware; splash glazed|ceramics'), + SearchData(899, 451533, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics'), + SearchData(50, 324252, 'Sherd', 'sherd|ceramic|'), + SearchData(937, 451505, 'Fragment of a Bowl', 'fragment of a bowl|earthenware; glazed|ceramics'), + SearchData( + 4, 323749, 'Stamp seal (scaraboid) with animals', 'stamp seal|variegated red and neutral carnelian (quartz)|'), + SearchData(1887, 500568, 'Guenbri', + 'guenbri|gourd, wood, parchment decorated with floral designs|chordophone-lute-plucked-unfretted'), + SearchData(-1680, 323124, 'Dish', 'dish|ceramic|'), + SearchData(1525, 446603, '"Laila and Majnun in School", Folio 129 from a Khamsa (Quintet) of Nizami of Ganja', + 'folio from an illustrated manuscript|ink, opaque watercolor, and gold on paper|codices'), + SearchData(1540, 452413, 'Velvet Panel with Hunting Scene', + 'tent panel|silk, flat metal thread; cut and voided velvet|textiles'), + SearchData(50, 325900, 'Unguentarium', 'vessel|ceramic|'), + SearchData(1875, 500989, 'Naqqareh', 'naqqareh|wood|membranophone-single-headed / kettle drum'), + SearchData(50, 325888, 'Unguentarium', 'vessel|ceramic|'), + SearchData(1649, 446546, 'Shahnama (Book of Kings) of Firdausi', + 'illustrated manuscript|ink, opaque watercolor, and gold on paper|codices'), + SearchData(1049, 451606, 'Fragment', 'fragment|earthenware; glazed|ceramics'), + SearchData(-1500, 323559, 'Cylinder seal', 'cylinder seal|stone|'), + SearchData(1049, 451601, 'Fragment', 'fragment|earthenware; incised|ceramics'), + SearchData(-662, 323169, 'Bowl', 'bowl|ceramic|'), + SearchData(1199, 451564, 'Fragment', 'fragment|stonepaste; slip painted and glazed|ceramics'), + SearchData(-1300, 322889, 'Enthroned deity', 'sculpture|bronze, gold foil|'), + SearchData(849, 451521, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics'), + SearchData(11, 442859, 'Basket Earring', 'earring|gold, silver (?); decorated with filigree and granulation|jewelry'), + SearchData(1850, 31573, 'Dagger (Jambiya) with Sheath', + 'dagger (jambiya) with sheath|steel, wood, silver, gold, copper foil, pigment, paper, glue|daggers'), + SearchData(-750, 327771, 'Stamp seal (ovoid) with deity (?)', 'stamp seal|steatite|'), + SearchData(-1900, 325342, 'Oil lamp', 'lamp|ceramic|'), + SearchData(-1300, 321407, 'Cylinder seal', 'cylinder seal|steatite|'), + SearchData(849, 451519, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics'), + SearchData(1149, 451068, 'Earring, One of a Pair', 'earring|gold wire with filigree|jewelry'), + SearchData(1849, 503640, 'Daraboukkeh', 'daraboukkeh|pottery|membranophone-single-headed / goblet drum'), + SearchData(-1875, 325093, 'Fenestrated axe blade', 'axe|bronze|'), + SearchData( + -700, 327102, 'Stamp seal (scaraboid) with cultic scene', 'stamp seal|veined neutral chalcedony (quartz)|'), + SearchData(-1680, 323126, 'Pin', 'pin|bronze|'), + SearchData(899, 451537, 'Fragment', 'fragment|earthenware; splash glazed decoration|ceramics'), + SearchData(1187, 446860, 'Luster Bowl with Winged Horse', + 'bowl|stonepaste; luster-painted on opaque monochrome glaze|ceramics'), + SearchData(899, 451538, 'Fragment', 'fragment|earthenware; splash glazed decoration|ceramics'), + SearchData(50, 325899, 'Unguentarium', 'vessel|ceramic|'), + SearchData(1556, 444864, 'Hawk Coin of the Emperor Akbar', 'coin|gold|coins'), + SearchData(50, 325887, 'Small lamp', 'lamp|ceramic|'), + SearchData(-1630, 324556, 'Scarab seal', 'stamp seal|stone, white|'), + SearchData(-1750, 322915, 'Nude female figure', 'sculpture|ceramic|'), + SearchData(50, 325907, 'Bowl', 'bowl|ceramic|'), + SearchData(-1630, 324562, 'Scarab seal', 'stamp seal|steatite, white|'), + SearchData(50, 325901, 'Lamp', 'lamp|ceramic|'), + SearchData(-750, 326997, 'Stamp seal (scaraboid) with animal', 'stamp seal|steatite, gray (?)|'), + SearchData(-1300, 327319, 'Smiting weather god or warrior with horned headgear', 'sculpture|bronze|'), + SearchData(50, 325895, 'Unguentarium', 'vessel|ceramic|'), + SearchData(-550, 323747, 'Scarab seal', 'stamp seal|jasper, green|'), + SearchData(1199, 449159, 'Roundel with a Mounted Falconer and Hare', + 'roundel|gypsum plaster; modeled, painted, and gilded|sculpture'), + SearchData(1049, 451600, 'Fragment', 'fragment|earthenware; incised and glazed|ceramics'), + SearchData(1675, 24298, 'Dagger with Sheath', + 'dagger with sheath|steel, nephrite, gold, rubies, emeralds, silver-gilt, leather|daggers'), + SearchData(1399, 451554, 'Fragment', 'fragment|stonepaste; slip painted and glazed|ceramics'), + SearchData(-550, 323933, 'Stamp seal', 'stamp seal|carnelian|'), + SearchData(-1775, 327285, 'Cylinder seal and modern impression: nude goddess before seated deity', + 'cylinder seal|hematite|'), + SearchData(50, 325893, 'Unguentarium', 'vessel|ceramic|'), + SearchData(899, 451503, 'Fragment of a Bowl', 'bowl fragment|earthenware; glazed|ceramics'), + SearchData(-750, 326011, 'Stamp seal (scarab) with monster', 'stamp seal|lapis lazuli|'), + SearchData(1875, 500990, 'Naqqāra', 'naqqāra|metal|membranophone-single-headed / kettle drum'), + SearchData(1850, 31539, 'Dagger (Jambiya) with Sheath', + 'dagger (jambiya) with sheath|steel, wood, brass, silver, gold, copper, brass wire|daggers'), + SearchData(1399, 451555, 'Fragment', 'fragment|stonepaste; slip painted and glazed|ceramics'), + SearchData(-550, 323941, 'Scarab seal', 'stamp seal|rock crystal|'), + SearchData(-1750, 322913, 'Nude female figure', 'sculpture|ceramic|'), + SearchData( + 1532, + 452170, + '"Bahrum Gur Before His Father, Yazdigird I", Folio 551v from the Shahnama (Book of Kings) of Shah Tahmasp', + 'folio from an illustrated manuscript|opaque watercolor, ink, silver, and gold on paper|codices'), + SearchData(-1630, 326991, 'Scarab seal', 'stamp seal|faience, white (?)|'), + SearchData(-2500, 325836, 'Spouted vessel', 'vessel|ceramic|'), + SearchData(849, 451518, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics'), + SearchData(999, 451567, 'Fragment', 'fragment|celadon|ceramics'), + SearchData(50, 325905, 'Vessel', 'vessel|ceramic|'), + SearchData(849, 451547, 'Fragment', 'fragment|earthenware; slip painted, glazed|ceramics'), + SearchData(899, 451574, 'Fragment', 'fragment|earthenware; incised|ceramics'), + SearchData(849, 451560, 'Fragment', 'fragment|earthenware; slip painted and glazed|ceramics'), + SearchData(-850, 326010, 'Cylinder seal with chariot hunting scene', 'cylinder seal|egyptian blue|'), + SearchData(1602, 453336, 'A Stallion', 'illustrated album leaf|ink, opaque watercolor, and gold on paper|codices'), + SearchData(1600, 451725, '"The Concourse of the Birds", Folio 11r from a Mantiq al-Tayr (Language of the Birds)', + 'folio from an illustrated manuscript|ink, opaque watercolor, gold, and silver on paper|codices'), + SearchData(-1680, 323114, 'Inlay', 'inlay|bone|'), + SearchData(-662, 323161, 'Jug', 'jug|ceramic|'), + SearchData(-1680, 323120, 'Jug', 'jug|ceramic|'), + SearchData(-500, 324075, 'Incense burner', 'incense burner|bronze|'), + SearchData(-1630, 324557, 'Scarab seal ring', 'stamp seal ring|stone, white, copper alloy mount|'), + SearchData(849, 451544, 'Fragment', 'fragment|earthenware; glazed|ceramics'), + SearchData(1800, 30999, 'Sword (Saif) with Scabbard', 'sword (saif) with scabbard|steel, silver, leather|swords'), + SearchData(50, 324247, 'Sherd', 'sherd|ceramic|'), + SearchData(1049, 452939, 'Pair of Earrings', 'earrings|gold; filigree and granulation|jewelry'), + SearchData(1199, 451513, 'Fragment', 'fragment|stonepaste; underglaze painted|ceramics'), + SearchData(50, 325896, 'Unguentarium', 'vessel|ceramic|'), + SearchData(-1630, 324560, 'Scarab seal', 'stamp seal|steatite, white pink|'), + SearchData(-750, 326998, 'Stamp seal (scarab) with animal', 'stamp seal|mottled greenstone|'), + SearchData(849, 451522, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics'), + SearchData(-1650, 325690, 'Seven-cup offering bowl', 'bowl|ceramic|'), + SearchData(50, 325883, 'Small bowl', 'bowl|ceramic|'), + SearchData(-250, 328941, 'Standing bull', 'sculpture|copper alloy, shell|'), + SearchData(-50, 325075, 'Fragment of a grave stele', 'relief|alabaster (gypsum)|'), + SearchData(-1400, 327231, 'Smiting god, wearing an Egyptian atef crown', 'sculpture|bronze|'), + SearchData(899, 451534, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics'), + SearchData( + -600, 323924, 'Stamp seal (loaf-shaped hemispheroid) with animal', 'stamp seal|banded carnelian (quartz)|'), + SearchData(50, 325886, 'Juglet', 'juglet|ceramic|'), + SearchData(1738, 446556, 'Shahnama (Book of Kings) of Firdausi', + 'illustrated manuscript|ink, opaque watercolor, silver, and gold on paper|codices'), + SearchData(899, 451595, 'Fragment', 'fragment|earthenware; glazed|ceramics'), + SearchData(-1680, 323123, 'Bowl', 'bowl|ceramic|'), + SearchData(-300, 329093, 'Figure of a lion', 'sculpture|copper alloy|'), + SearchData(50, 325884, 'Bowl', 'bowl|ceramic|'), + SearchData(849, 451529, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics'), + SearchData(150, 324319, 'Pitcher', 'pitcher|glass|'), + SearchData(-125, 326694, 'Votive or funerary stele', 'stele|alabaster (gypsum)|'), + SearchData(1330, 448938, '"The Funeral of Isfandiyar," Folio from a Shahnama (Book of Kings)', + 'folio from an illustrated manuscript|ink, opaque watercolor, and gold on paper|codices'), + SearchData(1849, 444669, 'Necklace', 'necklace|silver and cloth|jewelry'), + SearchData(1882, 73632, 'Mirror of National Costumes of All Nations (Bankoku ishō kagami)', + 'print|triptych of woodblock prints (nishiki-e); ink and color on paper|prints'), + SearchData(849, 451516, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics'), + SearchData(-750, 321638, 'Stamp seal (scaraboid) with animals', 'stamp seal|variegated brown jasper (quartz)|'), + SearchData(1750, 31745, 'Dagger (Jambiya)', 'dagger (jambiya)|steel, wood, silver, copper, brass|daggers'), + SearchData(1049, 451607, 'Fragment', 'fragment|earthenware; incised|ceramics'), + SearchData(1887, 500570, 'Guenbri', + 'gunibri|tortoise shell and wood. floral design in white, yellow, and pink.|chordophone-lute-plucked-unfretted'), + SearchData( + 1527, + 452142, + '"Kai Khusrau Rides Bihzad for the First Time", Folio 212r from the Shahnama (Book of Kings) of Shah Tahmasp', + 'folio from an illustrated manuscript|opaque watercolor, ink, silver, and gold on paper|codices'), + SearchData(-662, 323154, 'Oil jug', 'jug|ceramic|'), + SearchData(-1630, 324559, 'Scarab seal', 'stamp seal|stone, white|'), + SearchData(1049, 451604, 'Fragment', 'fragment|earthenware; glazed|ceramics'), + SearchData(150, 324317, 'Head-shaped flask', 'flask|glass|'), + SearchData(1299, 451587, 'Fragment', 'fragment|porcelain|ceramics'), + SearchData( + -1966, 545105, 'Head of a sphinx, possibly of Amenemhat I', 'head, sphinx; 12th-dyn-king|dolomitic marble|'), + SearchData(-750, 324012, 'Stamp seal (scarab) with animal', 'stamp seal|hematite|'), + SearchData(849, 451563, 'Fragment', 'fragment|earthenware; slip painted and glazed|ceramics'), + SearchData(-1630, 324555, 'Scarab seal', 'stamp seal|stone, white|'), + SearchData(899, 451593, 'Fragment', 'fragment|earthenware; splash glazed|ceramics'), + SearchData(1149, 453615, 'Basket Earring, One of a Pair', 'earring|gold|jewelry'), + SearchData(-1673, 324558, 'Scarab seal', 'stamp seal|stone, white|'), + SearchData(1049, 451598, 'Fragment', 'fragment|earthenware; glazed|ceramics'), + SearchData(1199, 451570, 'Fragment', 'fragment|stonepaste; slip painted and glazed|ceramics'), + SearchData(50, 324245, 'Fragment of painted ware', 'sherd|ceramic|'), + SearchData(50, 325903, 'Lamp', 'lamp|ceramic|'), + SearchData(849, 451517, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics'), + SearchData(-1648, 556529, 'Canaanite Scarab of the "Anra" Type', 'scarab, "anra"|steatite|'), + SearchData(-900, 327101, 'Stamp seal (grooved tabloid) with three-figure contest scene and geometric design', + 'stamp seal|glazed steatite|'), + SearchData(-1350, 321405, 'Cylinder seal', 'cylinder seal|stone|'), + SearchData(-662, 323172, 'Lamp', 'lamp|ceramic|'), + SearchData(849, 451542, 'Fragment', 'fragment|earthenware; splash glazed|ceramics'), + SearchData(1887, 500569, 'Gumuri', 'gumuri|wood, parchment, hide|chordophone-lute-plucked-unfretted'), + SearchData(-550, 323746, 'Scarab seal', 'stamp seal|jasper, green|'), + SearchData(937, 451506, 'Fragment', 'fragment|earthenware; glazed|ceramics'), + SearchData(1099, 451566, 'Fragment', 'fragment|celadon|ceramics'), + SearchData(1199, 451510, 'Fragment', 'fragment|stonepaste; underglaze painted|ceramics'), + SearchData(849, 451526, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics'), + SearchData(799, 451571, 'Fragment', 'fragment|earthenware; glazed|ceramics'), + SearchData(899, 451539, 'Fragment', 'fragment|earthenware; painted splash glazed decoration|ceramics'), + SearchData(899, 451565, 'Fragment', 'fragment|stoneware|ceramics'), + SearchData(849, 451535, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics'), + SearchData(50, 325915, 'Cup', 'cup|ceramic|'), + SearchData(899, 451590, 'Fragment', 'fragment|earthenware; glazed|ceramics'), + SearchData(50, 325902, 'Cooking pot', 'pot|ceramic|'), + SearchData(-1680, 323112, 'Pin', 'pin|bronze|'), + SearchData(849, 451545, 'Fragment', 'fragment|earthenware; slip painted, glazed|ceramics'), + SearchData(-662, 323158, 'Jug', 'jug|ceramic, paint|'), + SearchData(-1680, 323113, 'Pin', 'pin|bronze|'), + SearchData(849, 451514, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics'), + SearchData(899, 451536, 'Fragment', 'fragment|earthenware; painted decoration|ceramics'), + SearchData(1049, 451602, 'Fragment', 'fragment|earthenware; incised and glazed|ceramics'), + SearchData(849, 455152, 'Fragment', 'fragment|earthenware; glazed|ceramics'), + SearchData(937, 451507, 'Fragment', 'fragment|earthenware; glazed|ceramics'), + SearchData(1124, 446283, 'Ewer with Molded Inscriptions and Figures on Horseback', + 'ewer|stonepaste; molded, monochrome glazed|ceramics'), + SearchData(50, 325916, 'Plate', 'plate|ceramic|'), + SearchData(899, 451589, 'Fragment', 'fragment|earthenware; glazed|ceramics'), + SearchData(-1680, 323121, 'Jug', 'jug|ceramic|'), + SearchData(50, 325914, 'Vessel', 'vessel|ceramic|'), + SearchData(1875, 500993, 'Stringed Instrument', + 'stringed instrument|turtle shell and wood, 4 strings.|chordophone-lute-plucked-fretted'), + SearchData(-550, 323931, 'Scaraboid seal', 'stamp seal|serpentine, green|'), + SearchData(50, 325882, 'Small bowl', 'bowl|ceramic|'), + SearchData(899, 451596, 'Fragment', 'fragment|earthenware; glazed|ceramics'), + SearchData(50, 325912, 'Unguentarium', 'vessel|ceramic|'), + SearchData(1882, 500567, 'Rebab', 'rebab|wood, leather, shells|chordophone-lute-bowed-unfretted'), + SearchData(-2500, 327496, 'Head of a bull', 'sculpture|ivory (hippopotamus)|'), + SearchData(1049, 451599, 'Fragment', 'fragment|earthenware; glazed|ceramics'), + SearchData(50, 325910, 'Unguentarium', 'vessel|ceramic|'), + SearchData(1399, 451556, 'Fragment', 'fragment|stonepaste; slip painted and glazed|ceramics'), + SearchData(-662, 323159, 'Jug', 'jug|ceramic|'), + SearchData(50, 325890, 'Bowl', 'bowl|ceramic|'), + SearchData(1550, 451092, 'Safavid Courtiers Leading Georgian Captives', + 'panel|silk, metal wrapped thread; lampas|textiles-woven'), + SearchData(1875, 500988, 'Naqqāra', 'naqqāra|metal|membranophone-single-headed / kettle drum'), + SearchData(899, 451578, 'Fragment', 'fragment|earthenware; glazed|ceramics'), + SearchData(849, 451528, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics'), + SearchData(1850, 31773, 'Dagger (Jambiya) with Sheath and Belt', + 'dagger (jambiya) with sheath and belt|steel, wood, gold, silver, textile, leather, brass|daggers'), + SearchData(1199, 451569, 'Fragment', 'fragment|stonepaste; slip painted and glazed|ceramics'), + SearchData(899, 451576, 'Fragment', 'fragment|earthenware; incised|ceramics'), + SearchData(-1600, 544669, 'Canaanite Scarab with a Roaring Lion', 'scarab, lion|steatite|'), + SearchData( + -500, 323745, 'Scarab seal with Bes dominating two lions below a winged sun disc', 'stamp seal|jasper, green|'), + SearchData(849, 451525, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics'), + SearchData(-1630, 323129, 'Scarab seal', 'stamp seal|amethyst|'), + SearchData(-1630, 327099, 'Scarab seal', 'stamp seal|faience, white|'), + SearchData(-1630, 324564, 'Scarab seal', 'stamp seal|steatite, white|'), + SearchData(1489, 30812, 'Axe (Berdiche)', 'axe (berdiche)|steel, wood, silver|shafted weapons'), + SearchData( + -1981, + 552927, + 'Middle Kingdom statuette, reinscribed for Harsiese High Priest of Memphis in the Third Intermediate Period', + 'statuette, man, reinscribed for harsiese|greywacke|'), + SearchData(899, 451502, 'Fragment', 'fragment|earthenware; glazed|ceramics'), + SearchData(1850, 31703, 'Dagger (Jambiya) with Sheath and Belt', + 'dagger (jambiya) with sheath and belt|steel, silver, wood, leather, iron|daggers'), + SearchData(-750, 327024, 'Stamp seal (scaraboid) with animal', 'stamp seal|serpentine, black (?)|'), + SearchData(899, 451531, 'Fragment', 'fragment|earthenware; incised decoration, glazed|ceramics'), + SearchData(899, 451594, 'Fragment', 'fragment|earthenware; glazed|ceramics'), + SearchData(899, 451541, 'Fragment', 'fragment|earthenware; slip painted, incised, and splash glazed|ceramics'), + SearchData(-500, 324027, 'Standing bull', 'sculpture|bronze|'), + SearchData(-1630, 324561, 'Scarab seal', 'stamp seal|steatite, bone colored|'), + SearchData(-750, 323748, 'Stamp seal (scarab) with anthropomorphic figure', 'stamp seal|mottled green glass|'), + SearchData(-1800, 330882, 'Standing figure', 'sculpture|copper alloy|'), + SearchData(50, 325891, 'Male figurine', 'sculpture|ceramic|'), + SearchData(899, 451575, 'Fragment', 'fragment|earthenware; incised|ceramics'), + SearchData(-750, 322309, 'Stamp seal (scaraboid) with cultic scene', 'stamp seal|black limestone|'), + SearchData(-600, 321633, 'Stamp seal (scaraboid) with animal', 'stamp seal|neutral chalcedony (quartz)|'), + SearchData(1875, 500985, 'Stringed Instrument', 'stringed instrument|wood|chordophone-lute-plucked-fretted'), + SearchData(-700, 323163, 'Nude female figure', 'sculpture|ceramic|'), + SearchData( + 1341, + 451414, + '"Siyavush Displays his Skill at Polo before Afrasiyab," Folio from a Shahnama (Book of Kings)', + 'folio from an illustrated manuscript|ink, opaque watercolor, and gold on paper|codices'), + SearchData(1449, 451552, 'Fragment', 'fragment|stonepaste; slip and underglaze painted|ceramics'), + SearchData(1399, 451557, 'Fragment', 'fragment|stonepaste; slip painted and glazed|ceramics'), + SearchData(1049, 451605, 'Fragment', 'fragment|earthenware; glazed|ceramics'), + SearchData(-1600, 544670, 'Canaanite Scarab with a Lion over a Crocodile', 'scarab, lion, crocodile|steatite|'), + SearchData(1200, 451379, 'Bowl with Courtly and Astrological Motifs', + 'bowl|stonepaste; polychrome inglaze and overglaze painted and gilded on opaque monochrome glaze (mina\'i)|ceramics'), + SearchData(-700, 323823, 'Stamp seal (duck-shaped) with cultic scene', + 'stamp seal|variegated pink and white chalcedony (quartz)|'), + SearchData(849, 451527, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics'), + SearchData(1249, 450578, 'Dish with Horse and Rider', + 'dish|stonepaste; incised decoration through a black slip ground under a turquoise glaze (silhouette ware)|ceramics'), + SearchData(899, 451581, 'Fragment', 'fragment|earthenware; incised|ceramics'), + SearchData(-1630, 324563, 'Scarab seal', 'stamp seal|stone, cream colored|'), + SearchData(899, 451579, 'Fragment', 'fragment|earthenware; glazed|ceramics'), + SearchData(849, 451520, 'Fragment', 'fragment|earthenware; molded decoration, glazed|ceramics'), + SearchData( + 1800, 31772, 'Dagger (Jambiya) with Sheath', 'dagger (jambiya) with sheath|steel, brass, wood, textile|daggers'), + SearchData(937, 451509, 'Fragment', 'fragment|earthenware; glazed|ceramics'), + SearchData(-1500, 327792, 'Cylinder seal', 'cylinder seal|copper alloy (leaded bronze)|'), + SearchData(1199, 451511, 'Fragment', 'fragment|stonepaste; underglaze painted|ceramics'), + SearchData(50, 324244, 'Fragment of painted ware', 'sherd|ceramic, pigment|'), + SearchData(849, 455173, 'Fragment', 'fragment|earthenware; painted and glazed|ceramics'), + SearchData(-1, 322592, 'Camel and riders', 'sculpture|silver|'), + SearchData(1299, 451586, 'Fragment', 'fragment|porcelain|ceramics'), + SearchData(849, 451561, 'Fragment', 'fragment|earthenware; slip painted and glazed|ceramics'), + SearchData(50, 324249, 'Sherd', 'sherd|ceramic|'), + SearchData(50, 325917, 'Bowl', 'bowl|ceramic|'), + SearchData(-125, 326695, 'Standing male figure', 'sculpture|alabaster (gypsum)|'), +]; diff --git a/lib/logic/data/wonders_data/search/pyramids_giza_search_data.dart b/lib/logic/data/wonders_data/search/pyramids_giza_search_data.dart index 03694c58..36a94a54 100644 --- a/lib/logic/data/wonders_data/search/pyramids_giza_search_data.dart +++ b/lib/logic/data/wonders_data/search/pyramids_giza_search_data.dart @@ -1,381 +1,601 @@ part of '../pyramids_giza_data.dart'; -// Search suggestions (85) -List _searchSuggestions = const ['maatkare', 'cylinder', 'seal', 'iii', 'alloy', 'travertine', 'faience', 'jasper', 'impressed', 'stela', 'khasekhemwy', 'clay', 'royal', 'glass', 'fragment', 'bronzes', 'relief', 'red', 'cosmetic', 'bronze', 'steatite', 'egyptian', 'horus', 'black', 'lower', 'wood', 'inlay', 'isis', 'upper', 'scarab', 'jar', 'pendant', 'hatshepsut', 'statue', 'ptah', 'bowl', 'nesut', 'god', 'plaque', 'figure', 'man', 'amun', 'greywacke', 'model', 'leaf', 'copper', 'goddess', 'miscellaneous', 'lion', 'silver', 'king', 'linen', 'seker', 'standing', 'ivory', 'group', 'glazed', 'quartzite', 'funerary', 'dwarf', 'paint', 'limestone', 'sealing', 'statuette', 'amulet', 'woman', 'image', 'depicting', 'unfired', 'bity', 'alabaster', 'child', 'pottery', 'document', 'mud', 'egypt', 'gold', 'queen', 'name', 'carnelian', 'head', 'pataikos', 'block', 'pair', 'inscribed', ]; +// Search suggestions (91) +List _searchSuggestions = const [ + 'maatkare', + 'cylinder', + 'seal', + 'iii', + 'shabti', + 'alloy', + 'travertine', + 'faience', + 'jasper', + 'abumeh', + 'seneb', + 'impressed', + 'stela', + 'clay', + 'khasekhemwy', + 'abu', + 'royal', + 'glass', + 'fragment', + 'bronzes', + 'relief', + 'red', + 'bronze', + 'steatite', + 'egyptian', + 'horus', + 'black', + 'lower', + 'wood', + 'isis', + 'upper', + 'scarab', + 'jar', + 'pendant', + 'amenhotep', + 'psamtik', + 'statue', + 'ptah', + 'temple', + 'nesut', + 'god', + 'plaque', + 'figure', + 'man', + 'amun', + 'greywacke', + 'model', + 'leaf', + 'goddess', + 'copper', + 'miscellaneous', + 'lion', + 'silver', + 'meh', + 'king', + 'cone', + 'linen', + 'seker', + 'standing', + 'ivory', + 'group', + 'glazed', + 'quartzite', + 'dwarf', + 'funerary', + 'paint', + 'limestone', + 'sealing', + 'granite', + 'statuette', + 'amulet', + 'woman', + 'image', + 'depicting', + 'unfired', + 'bity', + 'alabaster', + 'treasurer', + 'pottery', + 'document', + 'mud', + 'egypt', + 'gold', + 'name', + 'bone', + 'carnelian', + 'head', + 'pataikos', + 'block', + 'pair', + 'inscribed', +]; // Pyramids of Giza (373) List _searchData = const [ - SearchData(-2650, 547434, 'Copper pin?', 'cosmetic pin (?)|copper alloy|', 'eg/mobile-large/01.4.41_EGDP011664.jpg', 1.78), - SearchData(-347, 243717, 'Red jasper amulet of the sun on the horizon', 'amulet, sun on horizon|jasper, red|gold and silver', 'gr/mobile-large/DP121805.jpg', 0.75), - SearchData(-2649, 543870, 'Figure of a male beer-maker', 'statuette, male beer-maker|limestone, paint|', 'eg/mobile-large/20.2.1.JPG', 0.73), - SearchData(-2649, 561720, 'Cylinder seal', 'cylinder seal|steatite|', 'eg/mobile-large/LC-10_130_1618_EGDP032392.jpg', 0.67), - SearchData(-2551, 543895, 'Archers', 'relief, archers|limestone, paint|', 'eg/mobile-large/DT259178.jpg', 1.25), - SearchData(650, 326230, 'Textile fragment: walking ram with a neckband and fluttering ribbons', 'textile|wool, cotton|', 'an/mobile-large/ra1977.232.R.jpg', 0.52), - SearchData(-347, 243760, 'Faience amulet in the form of a lion-headed deity', 'amulet, bast|clay, glazed|gold and silver', 'gr/mobile-large/DP121824.jpg', 0.75), - SearchData(-2475, 545826, 'Headless statue of Babaef as older man', 'statue, babaef as older man|limestone|', 'eg/mobile-large/64.66.2_EGDP014893.jpg', 0.50), - SearchData(-2520, 548547, 'Relief fragment showing fishing scene', 'relief, fishing scene|limestone|', 'eg/mobile-large/58.161.jpg', 1.95), - SearchData(-347, 243809, 'Faience button seal', 'button seal|clay, glazed|gold and silver', 'gr/mobile-large/DP121847.jpg', 1.33), - SearchData(-1249, 249678, 'Glass pendant ornament in the form of a pair of birds', 'ornament in the form of two ducks|glass|glass', 'gr/mobile-large/DP121789.jpg', 1.33), - SearchData(-664, 553106, 'Bottle', 'bottle|glass|', 'eg/mobile-large/DP-24757-001.jpg', 0.77), - SearchData(-2650, 570768, 'Clay jar sealing impressed faintly with name of Khasekhemwy', 'sealing, jar|clay (unfired)|', 'eg/mobile-large/01.4.102_EGDP012135.jpg', 1.40), - SearchData(-347, 243731, 'Faience amulet in the form of the dwarf god Pataikos', 'amulet, ptah-seker|clay, glazed|gold and silver', 'gr/mobile-large/DP121811.jpg', 0.75), - SearchData(-347, 244463, 'Bronze statuette of Osiris', 'statuette of osiris|bronze|bronzes', 'gr/mobile-large/DP20092.jpg', 0.92), - SearchData(-1465, 573652, 'Model Ax from the Foundation Deposit for Hatshepsut\'s Tomb', 'model ax|bronze or copper alloy, wood|', 'eg/mobile-large/30.8.3.jpg', 1.33), - SearchData(-2649, 543922, 'Ewer', 'vessel, ewer|copper|', 'eg/mobile-large/26-2-15.jpg', 1.63), - SearchData(-2465, 543929, 'Miniature ointment jar', 'ointment jar, miniature|gneiss|', 'eg/mobile-large/LC-07_228_91_EGDP033551.jpg', 0.67), - SearchData(-1250, 547899, 'Kneeling official', 'statuette, kneeling official|bronze|', 'eg/mobile-large/DP139142.jpg', 1.00), - SearchData(-2557, 545776, 'Ball', 'ball|clay or mud|', 'eg/mobile-large/20-2-49-50.jpg', 1.95), - SearchData(125, 547951, 'Portrait of the Boy Eutyches', 'panel painting, eutyches|encaustic on wood, paint|', 'eg/mobile-large/DT564.jpg', 0.47), - SearchData(-2650, 547428, 'Model harpoon', 'model harpoon|copper alloy|', 'eg/mobile-large/01.4.35_EGDP011631.jpg', 1.50), - SearchData(-1800, 544326, 'Coffin of Khnumnakht', 'coffin, khnumnakht|wood, paint|', 'eg/mobile-large/DP354909.jpg', 1.36), - SearchData(-1465, 549727, 'Scarab Inscribed for the King of Upper and Lower Egypt Maatkare (Hatshepsut)', 'scarab; maatkare, nesut bity, ankh; notched back|steatite (glazed)|', 'eg/mobile-large/27.3.247_bot.jpg', 1.01), - SearchData(-1390, 767349, 'Document Sealing', 'sealing, upper egypt, lower egypt, amun-re|mud|', 'eg/mobile-large/SC-PA_206.jpg', 1.27), - SearchData(-995, 243763, 'Faience Ushabti', 'amulet, ushabti|clay, glazed|gold and silver', 'gr/mobile-large/DP121826.jpg', 0.75), - SearchData(349, 464049, 'Gold Necklace with Amphora (Vase) Pendant', 'necklace|gold|metalwork-gold', 'md/mobile-large/LC_17_190_1643s01.jpg', 0.76), - SearchData(-2650, 547425, 'Model ax-head', 'model ax head|copper alloy|', 'eg/mobile-large/01.4.32_EGDP011629.jpg', 1.00), - SearchData(-2650, 547426, 'Model adze blade', 'model adze blade|copper alloy|', 'eg/mobile-large/01.4.33_EGDP011637.jpg', 1.50), - SearchData(-1390, 767353, 'Document Sealing', 'sealing, upper egypt, lower egypt, amun-re|mud|', 'eg/mobile-large/SC-PA_210.jpg', 1.12), - SearchData(-2650, 570767, 'Clay jar sealing impressed faintly with name of Khasekhemwy', 'sealing, jar|clay (unfired)|', 'eg/mobile-large/01.4.101_EGDP012122.jpg', 1.40), - SearchData(-2500, 543888, 'Large high-shouldered jar', 'jar|travertine (egyptian alabaster)|', 'eg/mobile-large/DT227156.jpg', 0.80), - SearchData(-2465, 543928, 'Miniature "nw" pot', 'pot, "nw" pot, miniature|gneiss|', 'eg/mobile-large/LC-07_228_92_EGDP033556.jpg', 0.67), - SearchData(-2650, 547430, 'Model chisel', 'model chisel|copper alloy|', 'eg/mobile-large/01.4.37_EGDP011641.jpg', 1.78), - SearchData(-100, 577944, 'King\'s Head with Egyptian Headdress but Greek Hair and Features', 'head, king, greek hair|gabbro|', 'eg/mobile-large/DP246577.jpg', 1.33), - SearchData(-1282, 547704, 'Head of a goddess', 'head, goddess|quartzite|', 'eg/mobile-large/DT4632.jpg', 0.80), - SearchData(-2520, 543896, 'Fragmentary Face of King Khafre', 'head fragment, king khafre|travertine (egyptian alabaster)|', 'eg/mobile-large/DT11751.jpg', 0.77), - SearchData(-2465, 543902, 'Statue of Demedji and Hennutsen', 'statue, seated pair, demedji, hennutsen|limestone, paint|', 'eg/mobile-large/DT521.jpg', 0.80), - SearchData(-2551, 543909, 'Reserve head', 'head, reserve|limestone|', 'eg/mobile-large/48.156(1).JPG', 0.66), - SearchData(-215, 549187, 'Hedgehog on box pendant', 'pendant, hedgehog on box|gold|', 'eg/mobile-large/DP356247.jpg', 0.87), - SearchData(-181, 548310, 'The Goddess Isis and her Son Horus', 'statuette of isis with the horus child|faience|', 'eg/mobile-large/DP241036.jpg', 0.75), - SearchData(-2649, 561722, 'Cylinder seal', 'cylinder seal|steatite|', 'eg/mobile-large/LC-10_130_1612_EGDP032319.jpg', 0.67), - SearchData(1250, 831188, 'Icon of the Virgin and Child, Hodegetria variant', '|tempera on wood|paintings-icons', 'md/mobile-large/DP-22753-001.jpg', 0.74), - SearchData(6, 330095, 'Pyx Fragments with the Multiplication of the Loaves and Fishes', 'pyx fragments|elephant ivory|ivories-elephant', 'md/mobile-large/kn314a.jpg', 1.20), - SearchData(-155, 243774, 'Faience amulet in the form of a tree frog', 'amulet, frog|faience|gold and silver', 'gr/mobile-large/DP121833.jpg', 0.75), - SearchData(-1344, 547692, 'Head of a princess from a group statue', 'head, amarna princess|quartzite|', 'eg/mobile-large/DP137930.jpg', 1.00), - SearchData(-664, 243713, 'Lapis lazuli heart amulet', 'amulet pendant, heart|lapis lazuli|gold and silver', 'gr/mobile-large/DP121803.jpg', 0.75), - SearchData(-664, 550945, 'Amulet: Crown of Upper Egypt', 'amulet, crown, upper egypt|faience|', 'eg/mobile-large/LC-24_4_4_EGDP028726.jpg', 0.67), - SearchData(-2650, 547440, 'Child\'s bracelet', 'bracelet, child\'s|gold|', 'eg/mobile-large/01.4.2_01-20-01.jpg', 1.69), - SearchData(-300, 587759, 'God\'s Wife Tagerem, daughter of the priest Imhotep', 'statue, lower half of a woman|limestone|', 'eg/mobile-large/DP224656.jpg', 0.75), - SearchData(-2650, 551834, 'Ivory label incised with an early hieroglyph that may be the image of a bundle of arrows', 'label, bundle of arrows|wood, ink|', 'eg/mobile-large/01.4.162_EGDP011678.jpg', 0.67), - SearchData(-347, 243770, 'Faience amulet in the form of a cat', 'amulet, cat|clay, glazed|gold and silver', 'gr/mobile-large/DP121831.jpg', 0.75), - SearchData(-2420, 543901, 'Nikare with his Wife and Daughter', 'statue group, nikare, wife, daughter|limestone, paint|', 'eg/mobile-large/DT242488.jpg', 0.80), - SearchData(-347, 243781, 'Faience djed-pillar amulet', 'amulet pendant, djed sign|clay, glazed|gold and silver', 'gr/mobile-large/DP121841.jpg', 0.75), - SearchData(-995, 243764, 'Faience Overseer Ushabti', 'amulet, ushabti|clay, glazed|gold and silver', 'gr/mobile-large/DP121827.jpg', 0.75), - SearchData(-182, 250532, 'Faience statuette of Aphrodite', 'amulet, aphrodite|faience|miscellaneous-faience', 'gr/mobile-large/DP121795.jpg', 0.75), - SearchData(-1425, 329799, 'Head with tripartite wig, probably from a shabti', 'head of a shabti|steatite or serpentinite|', 'eg/mobile-large/LC-2021_41_34_EGDP032381.jpg', 0.80), - SearchData(-2575, 561157, 'Relief Depicting Personified Estates from the Tomb of Akhtihotep', 'relief, akhtihotep|limestone, paint|', 'eg/mobile-large/58.44.2b.jpg', 0.75), - SearchData(-1981, 556559, 'Figure of a Female Dwarf', 'statuette, dwarf, female|faience|', 'eg/mobile-large/1972.48_front.jpg', 0.78), - SearchData(-2465, 552614, 'Statue, young boy', 'statue, young boy|limestone|', 'eg/mobile-large/66.195.jpg', 0.55), - SearchData(-2465, 552238, 'Oarsmen and an Official', 'relief, oarsmen|limestone, paint traces|', 'eg/mobile-large/DP251956.jpg', 0.57), - SearchData(-1295, 590955, 'Two Bottles in the Form of Pomegranates', 'bottle, pomegranate|glass, opaque|', 'eg/mobile-large/DP112594.jpg', 1.00), - SearchData(-995, 243734, 'Faience two-sided amulet in the form of the dwarf god Pataikos', 'amulet, ptah-seker|clay, glazed|gold and silver', 'gr/mobile-large/DP121814.jpg', 0.75), - SearchData(-349, 548360, 'Torso of a High General', 'statue, torso, striding general|meta-greywacke|', 'eg/mobile-large/DT3997.jpg', 0.80), - SearchData(-1452, 547772, 'Ritual Statuette of Thutmose III', 'statuette, kneeling king, thutmose iii|black bronze, gold inlay|', 'eg/mobile-large/DT537.jpg', 0.80), - SearchData(-1422, 560965, 'Goddess of Lower Egypt', 'statuette, standing goddess, lower egypt|ivory|', 'eg/mobile-large/LC-22_9_5_EGDP028548.jpg', 0.67), - SearchData(-1750, 544249, 'Model of a House', 'model, house, soul house|pottery|', 'eg/mobile-large/07.231.10.jpg', 1.02), - SearchData(-300, 551285, 'Plaque Depicting a Goddess or Queen, and on Opposite Side a King', 'sculptor\'s modeland/or votive, goddess or queen, king on other side|limestone, paint|', 'eg/mobile-large/DP243478.jpg', 0.74), - SearchData(-1371, 547777, 'Male god', 'statue, god|granodiorite|', 'eg/mobile-large/DP-24214-001.jpg', 0.61), - SearchData(-2649, 572178, 'Linen Cloth', 'linen cloth|linen|', 'eg/mobile-large/12.187.50_EGDP020601.jpg', 1.50), - SearchData(-1465, 559860, 'Scarab Inscribed King of Upper and Lower Egypt, Sobek Crocodile', 'scarab; two gods upper and lower egypt, crocodile; notched back|steatite (glazed)|', 'eg/mobile-large/27.3.291_bot.jpg', 1.04), - SearchData(-1961, 544185, 'Seated Statue of King Senwosret I', 'statue, senwosret i, seated|greywacke|', 'eg/mobile-large/25.6 front.jpg', 0.40), - SearchData(-2960, 547442, 'Bull\'s leg', 'furniture leg, bull\'s leg|ivory|', 'eg/mobile-large/LC-06_1162_2_EGDP033541.jpg', 0.72), - SearchData(-1360, 554751, 'Sealing from a Jar with the Name of a king Amenhotep', 'jar sealing, amenhotep iii|mud, pottery, paint|', 'eg/mobile-large/36.2.4_EGDP011892_1.jpg', 0.67), - SearchData(-1810, 560903, 'Tile inlay fragment', 'tile inlay fragment|faience|', 'eg/mobile-large/DP241474.jpg', 0.75), - SearchData(-2465, 543883, 'Relief with running troops', 'relief, running troops|limestone, paint|', 'eg/mobile-large/15.3.1163_EGDP015380.jpg', 1.49), - SearchData(-2575, 543903, 'Striding Figure', 'statue, striding man|quartzite, paint|', 'eg/mobile-large/DT206639.jpg', 0.68), - SearchData(-1371, 547775, 'Head of a Hippopotamus', 'head, hippopotamus|travertine (egyptian alabaster) with traces of gesso and red pigment|', 'eg/mobile-large/DT4210.jpg', 0.91), - SearchData(-1390, 767345, 'Document Sealing', 'sealing, amun-re, upper egypt, lower egypt|mud|', 'eg/mobile-large/SC-PA_202.jpg', 0.81), - SearchData(1285, 447000, 'Mosque Lamp for the Mausoleum of Amir Aydakin al-\'Ala\'i al-Bunduqdar', 'mosque lamp|glass; blown, folded foot, applied handles, enameled, and gilded|glass', 'is/mobile-large/DP170366.jpg', 0.75), - SearchData(-1344, 544680, 'Pair of Clappers', 'music, clapper, arm, hand|hippopotamus ivory|', 'eg/mobile-large/DT11781.jpg', 0.79), - SearchData(-266, 551786, 'Book of the Dead of the Priest of Horus, Imhotep (Imuthes)', 'papyrus, funerary, book of the dead, imouthes, imhotep, imuthes|papyrus, ink|', 'eg/mobile-large/2-35.9.20a–w_EGDP014589-4594.jpg', 4.12), - SearchData(-1991, 544024, 'Cosmetic jar', 'cosmetic jar|travertine (egyptian alabaster)|', 'eg/mobile-large/26.7.1435.jpg', 1.39), - SearchData(-6, 547804, 'Head of Augustus', 'head, augustus|faience|', 'eg/mobile-large/DP247261.jpg', 0.75), - SearchData(-1000, 551038, 'Amulet Plaque with Figure of Thoth', 'amulet, djedmutesankh, thoth|faience|', 'eg/mobile-large/62361.jpg', 1.21), - SearchData(-2649, 561726, 'Cylinder seal', 'cylinder seal|steatite|', 'eg/mobile-large/LC-10_130_1615_EGDP032340.jpg', 0.67), - SearchData(-2575, 543912, 'Corner of niche from the tomb of Akhtihotep', 'false door niche block, akhtihotep, corner|limestone, paint|', 'eg/mobile-large/58.123_01.jpg', 0.59), - SearchData(-1919, 590947, 'Coffins and Mummy of the Lady Nephthys', 'coffin, mummy, nephthys|painted wood, cartonnage, linen, human remains, mummification material|', 'eg/mobile-large/11.150.15a-b_0028.jpg', 1.50), - SearchData(-2649, 552016, 'Jar', 'jar|pottery|', 'eg/mobile-large/28.2.11_EGDP010293.jpg', 0.70), - SearchData(-2650, 547432, 'Model chisel', 'model chisel|copper alloy|', 'eg/mobile-large/01.4.39_EGDP011643.jpg', 1.78), - SearchData(-2458, 543882, 'King Sahure Accompanied by a Divine Figure', 'statue group, king sahure, nome god|gneiss|', 'eg/mobile-large/DP-1691-03.jpg', 0.73), - SearchData(-166, 559969, 'Funerary amulet depicting one of the Four Sons of Horus, Imsety', 'amulet, four sons of horus, imsety|glass|', 'eg/mobile-large/LC-30_8_283_EGDP027476.jpg', 0.67), - SearchData(-595, 546748, 'Statue of Harbes, called Psamtiknefer, son of Ptahhotep', 'statue, harbes|meta-greywacke|', 'eg/mobile-large/DP-14816-003.jpg', 0.75), - SearchData(-1371, 544853, 'Whip Handle in the Shape of a Horse', 'whip handle, horse|ivory, garnet, paint|', 'eg/mobile-large/DP-17703-001.jpg', 1.33), - SearchData(-2000, 545879, 'Head of a King, Possibly Seankhkare Mentuhotep III', 'head, royal, nemes, mentuhotep iii (?)|limestone|', 'eg/mobile-large/DP323866.jpg', 0.83), - SearchData(-2100, 555983, 'Blade inscribed for the Overseer of Upper Egypt Idi', 'blade|unalloyed copper|', 'eg/mobile-large/29.2.8_EGDP014604.jpg', 0.67), - SearchData(-1197, 544752, 'Head of King Seti II Wearing the Blue Crown', 'head, amenmesse, seti ii, blue crown|quartzite, paint|', 'eg/mobile-large/34.2.2_EGDP011841.jpg', 0.67), - SearchData(-1390, 767343, 'Document Sealing', 'sealing, amun-re, upper egypt, lower egypt|mud|', 'eg/mobile-large/SC-PA_200.jpg', 1.02), - SearchData(-1465, 559857, 'Scarab Inscribed King of Upper and Lower Egypt', 'scarab; nesut bity; simple back|steatite (glazed)|', 'eg/mobile-large/27.3.288_bot.jpg', 1.16), - SearchData(-995, 243801, 'Faience amulet plaque of Isis nourishing a pharaoh', 'amulet plaque, isis nourishing a king|clay, glazed|gold and silver', 'gr/mobile-large/DP121844.jpg', 0.75), - SearchData(-950, 243740, 'Faience amulet of Bes image', 'amulet, bes|clay, glazed|gold and silver', 'gr/mobile-large/DP121817.jpg', 0.75), - SearchData(-2575, 547737, 'Lintel block from the false door of Mery\'s chapel', 'false door, lintel block, mery\'s mastaba|limestone|', 'eg/mobile-large/67.50_EGDP015829.jpg', 2.09), - SearchData(-1537, 547950, 'Head of Ahmose I', 'head, king ahmose|limestone|', 'eg/mobile-large/DP140854.jpg', 0.75), - SearchData(-1891, 544319, 'Writing board', 'writing board|wood, gesso, paint|', 'eg/mobile-large/DP234742.jpg', 1.34), - SearchData(-2520, 552235, 'Sarcophagus of Mindjedef', 'sarcophagus, mindjedef|granite|', 'eg/mobile-large/54.80a-b_EGDP015827.jpg', 1.50), - SearchData(-2649, 568268, 'Inscribed seal impression', 'sealing|clay or mud|', 'eg/mobile-large/LC-10_130_978_EGDP033231.jpg', 1.25), - SearchData(-2650, 570770, 'Jar sealing', 'sealing|clay (unfired)|', 'eg/mobile-large/01.4.163_EGDP012148.jpg', 1.00), - SearchData(-182, 250531, 'Faience statuette of Aphrodite', 'amulet, aphrodite|faience|miscellaneous-faience', 'gr/mobile-large/DP132034.jpg', 0.75), - SearchData(-1182, 545919, 'Figure of an Asiatic captive', 'asiatic captive, furniture decoration|ivory, red and pink pigment, white ground|', 'eg/mobile-large/66.99.50_EGDP020841.jpg', 0.67), - SearchData(-1390, 767344, 'Document Sealing', 'sealing, amun-re, upper egypt, lower egypt|mud|', 'eg/mobile-large/SC-PA_201.jpg', 0.85), - SearchData(-2465, 548225, 'Foot Amulet', 'amulet, foot|carnelian|', 'eg/mobile-large/DP109378.jpg', 1.17), - SearchData(600, 473068, 'Necklace and Pendant Cross', 'necklace|rock crystal, silver mount|lapidary work-crystal', 'md/mobile-large/DP-14824-001.jpg', 0.72), - SearchData(-2575, 545820, 'Seated man', 'statue, seated man|limestone|', 'eg/mobile-large/62.201.1_01.jpg', 0.67), - SearchData(-1465, 547562, 'Carpenter\'s Adze from a Foundation Deposit for Hatshepsut\'s Temple', 'adze, carpenter, hatshepsut, maatkare|wood, bronze or copper alloy, leather|', 'eg/mobile-large/96.4.7.rp.jpg', 1.32), - SearchData(-1390, 767341, 'Document Sealing', 'sealing, amun-re, upper egypt, lower egypt|mud|', 'eg/mobile-large/SC-PA_198.jpg', 1.24), - SearchData(-181, 544118, 'Cat Statuette intended to contain a mummified cat', 'statuette, cat|leaded bronze|', 'eg/mobile-large/DP245141.jpg', 0.75), - SearchData(-1859, 544186, 'Senwosret III as a Sphinx', 'sphinx, senwosret iii; 12th-dyn-king|gneiss|', 'eg/mobile-large/DP247658.jpg', 1.33), - SearchData(-2512, 549541, 'Recumbent Lion', 'statue, lion recumbent|granite|', 'eg/mobile-large/DT2860.jpg', 1.66), - SearchData(-50, 547905, 'A child god, probably Harpokrates', 'statuette, standing harpokrates|leaded bronze, formerly gilded|', 'eg/mobile-large/DP139143.jpg', 1.00), - SearchData(-664, 545368, 'Amulet: Crown of Lower Egypt', 'amulet, crown of lower egypt|faience|', 'eg/mobile-large/LC-10_130_1822_EGDP028703.jpg', 0.67), - SearchData(-1550, 329943, 'Head of Ptah', '|egyptian blue, gold leaf|', 'eg/mobile-large/DP-21434-002.jpg', 0.74), - SearchData(-2650, 547399, 'Clay jar sealing Clay jar sealing impressed with name of Khasekhemwy', 'sealing, jar|clay (unfired)|', 'eg/mobile-large/01.4.99_EGDP012141.jpg', 1.00), - SearchData(165, 547698, 'Plaster Portrait Mask of a Youth', 'mask, youth portrait|plaster, linen, paint, lapis lazuli, glass|', 'eg/mobile-large/DT278928.jpg', 1.26), - SearchData(-1465, 559830, 'Scarab Inscribed for the King of Upper and Lower Egypt Maatkare (Hatshepsut)', 'scarab; maatkare, nesut bity; notched back|steatite (glazed)|', 'eg/mobile-large/27.3.245_bot.jpg', 0.97), - SearchData(-199, 246747, 'Terracotta head of a woman', 'head of a woman|terracotta|terracottas', 'gr/mobile-large/DP121878.jpg', 1.00), - SearchData(-2649, 570883, 'Linen Cloth', 'linen cloth|linen|', 'eg/mobile-large/12.187.47_EGDP020600.jpg', 1.50), - SearchData(-1371, 544068, 'Gazelle', 'figurine, gazelle|ivory (elephant), wood, blue-pigment inlay|', 'eg/mobile-large/DP-17702-001.jpg', 1.07), - SearchData(-1344, 545756, 'Goblet Inscribed with the Names of King Amenhotep IV and Queen Nefertiti', 'cup, amenhotep iv, nefertiti. goblet|travertine (egyptian alabaster)|', 'eg/mobile-large/DT11826.jpg', 0.80), - SearchData(-1353, 544683, 'Statue of two men and a boy that served as a domestic icon', 'statue group, two men, boy|limestone, paint|', 'eg/mobile-large/DP206147.jpg', 0.75), - SearchData(-1390, 767352, 'Document Sealing', 'sealing, upper egypt, lower egypt, amun-re|mud|', 'eg/mobile-large/SC-PA_209.jpg', 1.42), - SearchData(-347, 243726, 'Jasper amulet of headrest', 'amulet, pillow charm|jasper|gold and silver', 'gr/mobile-large/DP121808.jpg', 1.33), - SearchData(-828, 544874, 'Statuette of Amun', 'statuette, amun, standing, god|gold|', 'eg/mobile-large/DT553.jpg', 0.80), - SearchData(-2649, 561718, 'Cylinder seal', 'cylinder seal|gray stone|', 'eg/mobile-large/26-7-12.jpg', 0.68), - SearchData(-167, 243747, 'Faience amulet of Mut with double crown', 'amulet, mut with double crown|clay, glazed|gold and silver', 'gr/mobile-large/DP121820.jpg', 0.75), - SearchData(-2649, 561721, 'Cylinder seal', 'cylinder seal|steatite|', 'eg/mobile-large/LC-10_130_1617_EGDP032354.jpg', 0.67), - SearchData(-1368, 249682, 'Glass pendant in the form of crescent horns', 'pendant in the form of a crescent|glass|glass', 'gr/mobile-large/DP121031.jpg', 0.75), - SearchData(-1412, 554920, 'Funerary Cone of the Fourth Prophet of Amun Kaemamun', 'cone, circular impression, kaemamun, seal-bearer, lower egypt, prophet, amun|pottery|', 'eg/mobile-large/30.6.50-acc.jpg', 1.06), - SearchData(-1981, 546288, 'Flail of Hapiankhtifi', 'scepter, hapiankhtifi|wood, gold leaf, carnelian, faience|', 'eg/mobile-large/DP354266.jpg', 0.74), - SearchData(-1295, 330125, 'Bald-headed Man Wearing Gold Collars', '|steatite or schist|', 'eg/mobile-large/DP-20855-002.jpg', 0.75), - SearchData(549, 446236, 'Pendant Cross', 'pendant|bone|ivories and bone', 'is/mobile-large/sf12-182-109s1.jpg', 0.80), - SearchData(-2630, 543904, 'Wall tiles from the funerary apartments of king Djoser', 'tile, apartments of king djoser|faience|', 'eg/mobile-large/DT258569.jpg', 0.67), - SearchData(300, 466583, 'Sarcophagus Lid with Last Judgement', 'sarcophagus lid|marble|sculpture-stone', 'md/mobile-large/DT271481.jpg', 5.41), - SearchData(-1452, 544860, 'Drinking Cup', 'cup, nuzi, mitanni, button-base|glassy faience, gold|', 'eg/mobile-large/1228_3B_01BBr2.jpg', 0.75), - SearchData(-2649, 574279, 'Shell Amulet', 'amulet, shell|carnelian|', 'eg/mobile-large/10.130.2436_EGDP021795.jpg', 1.00), - SearchData(-1990, 544039, 'Cosmetic Vessel in the Shape of a Cat', 'vessel, cat|travertine (egyptian alabaster), copper, quartz crystal, paint|', 'eg/mobile-large/DT532.jpg', 0.80), - SearchData(449, 466266, 'Dionysos', 'plaque|bone|bone', 'md/mobile-large/sf1993-516-1s1.jpg', 0.46), - SearchData(-594, 590745, 'Barque Sphinx', 'barque sphinx|leaded bronze|', 'eg/mobile-large/DP247004.jpg', 1.33), - SearchData(-181, 544864, 'Statuette of the Goddess Taweret', 'statuette of taweret|glassy faience|', 'eg/mobile-large/DP243443.jpg', 0.75), - SearchData(-1745, 556561, 'Magic Wand', 'magic wand|ivory|', 'eg/mobile-large/86.1.91_EGDP011957.jpg', 1.78), - SearchData(-202, 329895, 'Statuette of a flutist', 'bronze, non-royal, private, flutist|copper alloy|', 'eg/mobile-large/LC-2021_41_117_EGDP032491.jpg', 0.67), - SearchData(-2557, 545777, 'Ball', 'ball|clay or mud|', 'eg/mobile-large/20-2-49-50.jpg', 1.95), - SearchData(-1465, 559831, 'Scarab Inscribed King of Upper and Lower Egypt Maatkare, Having Dominion', 'scarab; maatkare, nesut bity, wasti; detailed back|steatite (glazed)|', 'eg/mobile-large/27.3.249_bot.jpg', 0.85), - SearchData(-1390, 544794, 'Stela of Senu', 'stela, senu, imsety, hapy|limestone|', 'eg/mobile-large/LC-12_182_39_EGDP029823.jpg', 0.67), - SearchData(-1367, 244340, 'Bronze handle of a jug', 'handle of a jug|bronze|bronzes', 'gr/mobile-large/DP2297.jpg', 1.00), - SearchData(-2417, 577367, 'Tomb chapel of Raemkai: South wall of the entrance corridor', 'relief, tomb chapel, raemkai, offering bearers, statute, slaughtering cattle|limestone, paint|', 'eg/mobile-large/EG599.jpg', 0.99), - SearchData(-1465, 549730, 'Scarab Inscribed King of Upper and Lower Egypt Maatkare, Having Dominion', 'scarab; maatkare, nesut bity, wasti; detailed back|steatite (glazed)|', 'eg/mobile-large/27.3.248_bot.jpg', 0.85), - SearchData(-867, 561047, 'Wedjat Eye Amulet', 'amulet, wedjat eye|faience, aragonite|', 'eg/mobile-large/26.7.1032_EGDP011735.jpg', 1.50), - SearchData(-1339, 544689, 'Canopic Jar (07.226.1) with a Lid Depicting a Queen (30.8.54)', 'canopic jar lid to the jar 07.226.1 of kiya, secondary queen of akhenaten|travertine (egyptian alabaster), blue glass, obsidian, unidentified stone|', 'eg/mobile-large/DT227703.jpg', 0.68), - SearchData(-2465, 543894, 'Relief Fragment with a Ship Under Sail', 'relief, ship under sail|limestone, paint traces|', 'eg/mobile-large/DT256967.jpg', 1.25), - SearchData(-1390, 767348, 'Document Sealing', 'sealing, upper egypt, lower egypt, amun-re|mud|', 'eg/mobile-large/SC-PA_205.jpg', 1.27), - SearchData(-1981, 546286, 'Model Broad Collar of Hapiankhtifi', 'broad collar, hapiankhtifi|faience, blue green and black|', 'eg/mobile-large/12.183.12_0013.jpg', 1.55), - SearchData(-2649, 570882, 'Linen Cloth', 'linen cloth|linen|', 'eg/mobile-large/12.187.46_EGDP020594.jpg', 1.50), - SearchData(-347, 243780, 'Faience djed-pillar amulet', 'amulet pendant, djed sign|clay, glazed|gold and silver', 'gr/mobile-large/DP121839.jpg', 0.75), - SearchData(-995, 243730, 'Faience amulet in the form of the dwarf god Pataikos', 'amulet, ptah-seker|clay, glazed|gold and silver', 'gr/mobile-large/DP121810.jpg', 0.75), - SearchData(1750, 31890, 'Pair of Stirrups', 'stirrups|iron, gold|equestrian equipment-stirrups', 'aa/mobile-large/LC-36_25_534a_b-002.jpg', 1.78), - SearchData(-2649, 547738, 'Relief Fragment depicting offering bearers from the mastaba of Idut, daughter of King Unas (?)', 'relief, offering bearers|limestone|', 'eg/mobile-large/66-99-80.jpg', 1.98), - SearchData(-2539, 551091, 'False door niche block of Merykhufu', 'false door niche block, merykhufu|limestone|', 'eg/mobile-large/68.13a-b_EGDP015343.jpg', 1.41), - SearchData(-700, 587591, 'Head of a goddess, probably Mut, for attachment to a processional barque (?)', 'head, goddess mut, protome|cupreous alloy, gold leaf, formerly inlaid|', 'eg/mobile-large/DP206149.jpg', 0.75), - SearchData(-2649, 545798, 'Jar sealing', 'sealing, jar|mud or clay|', 'eg/mobile-large/LC-60_95_EGDP033245.jpg', 1.00), - SearchData(-347, 243761, 'Faience amulet in the form of a lion-headed deity', 'amulet, bast|clay, glazed|gold and silver', 'gr/mobile-large/DP231279.jpg', 0.75), - SearchData(-1353, 545907, 'Funerary Figure of Isis, Singer of the Aten', 'funerary figure, shabti, isis, singer, aten|limestone|', 'eg/mobile-large/66.99.38_EGDP013435.jpg', 0.67), - SearchData(-351, 544888, 'Nectanebo II Offers to Osiris Hemag', 'relief, nectanebo ii|granodiorite|', 'eg/mobile-large/12.182.4c_EGDP011900.jpg', 1.50), - SearchData(-1350, 239937, 'Glass krateriskos (unguent jar)', 'krateriskos|glass|glass', 'gr/mobile-large/DP153938.jpg', 1.00), - SearchData(-2649, 561727, 'Cylinder seal', 'cylinder seal|steatite|', 'eg/mobile-large/LC-10_130_1614_EGDP032333.jpg', 0.67), - SearchData(-167, 243729, 'Faience amulet in the form of the dwarf god Pataikos', 'amulet, ptah-seker|clay, glazed|gold and silver', 'gr/mobile-large/DP121809.jpg', 0.75), - SearchData(-289, 547900, 'Miniature broad collar', 'necklace, broad collar, miniature|gold, carnelian, turquoise, lapis lazuli|', 'eg/mobile-large/DP139141.jpg', 1.00), - SearchData(-3000, 543866, 'Libation Dish Depicting Ka-Arms Presenting an Ankh-Sign', 'dish, libation|greywacke|', 'eg/mobile-large/DP249937.jpg', 0.75), - SearchData(167, 245500, 'Bronze statuette of a horseman', 'statuette of a horseman|bronze|bronzes', 'gr/mobile-large/DP20160.jpg', 1.00), - SearchData(-249, 246749, 'Terracotta head of a woman', 'head of a woman|terracotta|terracottas', 'gr/mobile-large/DP121879.jpg', 1.00), - SearchData(-2649, 544001, 'Offering slab for seven oils of Ankhwadjes', 'offering slab, seven oils|travertine (egyptian alabaster)|', 'eg/mobile-large/11-150-1a.jpg', 2.42), - SearchData(-2551, 569692, 'Specimen of mortar from the Great Pyramid', 'mortar fragment, giza pyramid|mortar (shell, quartz, bricks)|', 'eg/mobile-large/23.187_EGDP017918.jpg', 1.33), - SearchData(-995, 243733, 'Faience amulet in the form of the dwarf god Pataikos', 'amulet, ptah-seker|clay, glazed|gold and silver', 'gr/mobile-large/DP121813.jpg', 0.75), - SearchData(-2394, 561064, 'Ewer, from basin and ewer set', 'ewer|arsenical copper, surface enriched in arsenic|', 'eg/mobile-large/LC-26_9_13_EGDP029546.jpg', 1.50), - SearchData(-181, 590939, 'Statuette of Anubis', 'anubis, jackal-headed|plastered and painted wood|', 'eg/mobile-large/38.5_EGDP022863.jpg', 0.67), - SearchData(-347, 243798, 'Faience Wedjat-eye amulet', 'amulet, eye, udjati|clay, glazed|gold and silver', 'gr/mobile-large/DP121843.jpg', 1.33), - SearchData(-349, 547556, 'Inlay Depicting "Horus of Gold"', 'inlay, falcon, golden horus|faience|', 'eg/mobile-large/DP240847.jpg', 0.74), - SearchData(-2650, 547431, 'Model adze blade', 'model adze blade|copper alloy|', 'eg/mobile-large/01.4.38_EGDP011640.jpg', 1.78), - SearchData(-484, 243719, 'Red jasper amulet of tyet', 'amulet, girdle tie|jasper, red|gold and silver', 'gr/mobile-large/DP121807.jpg', 0.75), - SearchData(-167, 253575, 'Wood statuette of Hekate', 'statuette of hekate|wood, juniper|miscellaneous-wood', 'gr/mobile-large/DP145604.jpg', 1.00), - SearchData(-3000, 544077, 'Lion Cub', 'statuette, animal, lion|quartzite|', 'eg/mobile-large/DP244929.jpg', 0.74), - SearchData(-350, 548439, 'Inlay Depicting a Falcon with Spread Wings', 'inlay, falcon|faience|', 'eg/mobile-large/DP243445.jpg', 1.33), - SearchData(-274, 547699, 'Head Attributed to Arsinoe II', 'head of a statue of arsinoe ii|limestone (indurated)|', 'eg/mobile-large/DT10849.jpg', 0.80), - SearchData(-265, 548230, 'Face attributed to Ptolemy II Philadelphos or a contemporary', 'head fragment, ptolemy ii|greywacke|', 'eg/mobile-large/DP-24213-001.jpg', 0.75), - SearchData(-347, 244461, 'Bronze statuette of Isis with infant Horus', 'statuette of isis and horus|bronze|bronzes', 'gr/mobile-large/DP20096.jpg', 0.92), - SearchData(350, 473395, 'Lute', 'lute|wood with traces of paint|woodwork-miscellany', 'md/mobile-large/DP302641.jpg', 1.33), - SearchData(-2465, 688030, 'Hand and Foot Amulets', 'amulet, foot|carnelian|', 'eg/mobile-large/DP109378.jpg', 1.17), - SearchData(-2649, 552017, 'Jar with flat base', 'jar, flat base|pottery|', 'eg/mobile-large/28.2.6_EGDP010303.jpg', 0.91), - SearchData(-347, 243768, 'Faience amulet in the form of a lion', 'amulet, lion|clay, glazed|gold and silver', 'gr/mobile-large/DP121830.jpg', 1.33), - SearchData(-2462, 545827, 'Head of male statue, perhaps Babaef', 'head, male statue, perhaps babaef|granite|', 'eg/mobile-large/64.66.3_01.jpg', 0.72), - SearchData(-2551, 543891, 'Relief with the head of a female personification of an estate', 'relief, female personification of an estate|limestone|', 'eg/mobile-large/DT259179.jpg', 0.80), - SearchData(-1109, 329785, 'Two-Sided Plaque with Gazelles', '|faience|', 'eg/mobile-large/LC-2021_41_20_EGDP032448.jpg', 1.50), - SearchData(-1272, 554769, 'Stelophorous Statue of Bay', 'bay, stela, stelephorous|limestone|', 'eg/mobile-large/DP231293.jpg', 0.75), - SearchData(-2551, 543892, 'Relief with a billy goat', 'relief, billy goat|limestone|', 'eg/mobile-large/DT212583.jpg', 1.25), - SearchData(-484, 243718, 'Red jasper amulet of tyet', 'amulet, girdle tie|jasper, red|gold and silver', 'gr/mobile-large/DP121806.jpg', 0.75), - SearchData(-2650, 547395, 'Tweezers', 'tweezers|copper alloy|', 'eg/mobile-large/01.4.31_EGDP011693.jpg', 1.78), - SearchData(-2649, 570919, 'Amulet, leg', 'amulet, leg|carnelian|', 'eg/mobile-large/15-43-336.jpg', 0.61), - SearchData(-2575, 543899, 'The King\'s Acquaintances Memi and Sabu', 'statue, standing pair, memi, sabu|limestone, paint|', 'eg/mobile-large/DT8836.jpg', 0.80), - SearchData(-167, 244503, 'Bronze statuette of Horus', 'statuette of horus as an infant|bronze|bronzes', 'gr/mobile-large/DP20109.jpg', 0.96), - SearchData(-347, 243744, 'Faience amulet of Isis and Horus', 'amulet, isis|clay, glazed|gold and silver', 'gr/mobile-large/DP121819.jpg', 0.75), - SearchData(-347, 243766, 'Faience amulet of Ra Horakhty', 'amulet, hawk|clay, glazed|gold and silver', 'gr/mobile-large/DP121829.jpg', 0.75), - SearchData(-262, 249622, 'Glass mosaic relief fragment', 'mosaic inlay|glass|glass', 'gr/mobile-large/DP121782.jpg', 0.75), - SearchData(-2550, 558193, 'Speciman of Mortar from the Great Pyramid', 'mortar, giza pyramid|mortar|', 'eg/mobile-large/17.6.143_EGDP017920.jpg', 1.33), - SearchData(-1514, 587532, 'Relief with the Head of Amenhotep I', 'relief, head, king, amenhotep i|limestone|', 'eg/mobile-large/45.2.7_EGDP011785.jpg', 1.00), - SearchData(1000, 451717, 'Bowl with Eagle', 'bowl|earthenware; luster-painted on opaque white glaze|ceramics', 'is/mobile-large/DP221332.jpg', 0.75), - SearchData(-1882, 544232, 'Pectoral and Necklace of Sithathoryunet with the Name of Senwosret II', 'necklace, pectoral, sithathoryunet-view-jewelry, senwosret ii|gold, carnelian, lapis lazuli, turquoise, garnet (pectoral) gold, carnelian, lapis lazuli, turquoise, green feldspar (necklace)|', 'eg/mobile-large/DT531.jpg', 1.25), - SearchData(-712, 587760, 'Kushite priest wearing garment with leopard\'s head and tassels, subsequently adapted for a king', 'statue, priest|leaded bronze, gold leaf|', 'eg/mobile-large/DP236108.jpg', 0.75), - SearchData(-995, 243778, 'Faience amulet', 'amulet pendant|clay, glazed|gold and silver', 'gr/mobile-large/DP121838.jpg', 0.75), - SearchData(-2649, 561725, 'Cylinder seal', 'cylinder seal|steatite|', 'eg/mobile-large/26-7-8.jpg', 0.85), - SearchData(1287, 450409, 'Enameled and Gilded Bottle', 'bottle|glass, greenish; blown, folded foot; enameled and gilded|glass', 'is/mobile-large/DP170374.jpg', 0.75), - SearchData(-1492, 548731, 'Cosmetic Jar Sealed with Linen', 'jar|pottery, linen|', 'eg/mobile-large/LC-36_3_68_EGDP026072.jpg', 1.25), - SearchData(-2520, 543910, 'Stand for an Offering Basin with the Name of King Khafre', 'offering stand, king khafre|gneiss|', 'eg/mobile-large/2833.jpg', 0.55), - SearchData(-2575, 545821, 'Group statue', 'statue group, lower section|limestone|', 'eg/mobile-large/62.201.2_01.jpg', 1.20), - SearchData(-167, 243802, 'Faience amulet plaque with a group of deities', 'amulet plaque, group of deities|clay, glazed|gold and silver', 'gr/mobile-large/DP121845.jpg', 1.33), - SearchData(-1878, 544184, 'Face of Senwosret III', 'head, senwosret iii; 12th-dyn-king|red quartzite|', 'eg/mobile-large/DP323868.jpg', 0.80), - SearchData(-1391, 544478, 'Standing figure of Amenhotep III', 'statuette, standing king, amenhotep iii|chlorite schist|', 'eg/mobile-large/DP-17706-001.jpg', 0.71), - SearchData(-2650, 547429, 'Model harpoon', 'model harpoon|copper alloy|', 'eg/mobile-large/01.4.36_EGDP011633.jpg', 1.78), - SearchData(-1331, 544690, 'Head of Tutankhamun', 'head, tutankhamun, god\'s hand|indurated limestone|', 'eg/mobile-large/DT546.jpg', 0.80), - SearchData(-249, 547904, 'Bes-image of the god Hor-Asha-Khet', 'statuette, bes-image, hor-asha-khet|bronze; gold, electrum, auriferous-silver, copper and copper-alloy inlays|', 'eg/mobile-large/DP139129.jpg', 1.00), - SearchData(-1465, 559832, 'Scarab Inscribed King of Upper and Lower Egypt Maatkare, Having Dominion', 'scarab; maatkare, nesut bity, wasti; detailed back|steatite (glazed)|', 'eg/mobile-large/27.3.250_bot.jpg', 0.84), - SearchData(-361, 546751, 'Bust of an Official', 'bust, official|greywacke|', 'eg/mobile-large/25.2.1_EGDP017888.jpg', 0.67), - SearchData(-1353, 544060, 'Attendants in a Procession', 'talatat, attendants, foreigners|limestone, paint|', 'eg/mobile-large/DT8198.jpg', 1.58), - SearchData(-924, 553738, 'Statue of the God Reshef', 'statue, reshef, reshep, foreign, mace, shield, war|limestone|', 'eg/mobile-large/89.2.215_EGDP011775.jpg', 0.67), - SearchData(-2649, 561719, 'Cylinder seal', 'cylinder seal|steatite|', 'eg/mobile-large/LC-10_130_1613_EGDP032327.jpg', 0.67), - SearchData(149, 544919, 'Figure of Isis-Aphrodite', 'statuette, standing goddess, isis-aphrodite|terracotta painted brown, black, red, and pink on white engobe|', 'eg/mobile-large/DT6643.jpg', 0.60), - SearchData(-2465, 548367, 'Hand Amulet', 'amulet, hand|carnelian|', 'eg/mobile-large/chrDP109378.jpg', 1.17), - SearchData(-589, 547705, 'Relief from the Palace of Apries in Memphis', 'relief, wall, apries|limestone|', 'eg/mobile-large/09.183.1a_EGDP011859.jpg', 0.92), - SearchData(-2649, 570914, 'Shell Amulet', 'amulet, shell|carnelian|', 'eg/mobile-large/10.130.2435_EGDP021796.jpg', 1.00), - SearchData(-1311, 544776, 'Votive stela of Userhat', 'stela, userhat|limestone, paint|', 'eg/mobile-large/DP226728.jpg', 1.13), - SearchData(-867, 546227, 'Bastet on a throne decorated with the decans', 'statuette, bastet|faience|', 'eg/mobile-large/LC-44_4_19_EGDP030618.jpg', 0.67), - SearchData(-2650, 547427, 'Model chisel', 'model chisel|copper alloy|', 'eg/mobile-large/01.4.34_EGDP011635.jpg', 1.78), - SearchData(1482, 702966, 'Shirt of Mail and Plate of Al-Ashraf Sayf ad-Din Qaitbay (ca. 1416/18–1496), 18th Burji Mamluk Sultan of Egypt', 'shirt of mail and plate|steel, iron, copper alloy, gold|mail', 'aa/mobile-large/DP-891-001.jpg', 0.75), - SearchData(-2650, 547400, 'Clay jar sealing Clay jar sealing impressed with name of Khasekhemwy', 'sealing, jar|clay (unfired)|', 'eg/mobile-large/01.4.100_EGDP012137.jpg', 1.25), - SearchData(-2465, 551279, 'Bowl', 'bowl|red polished pottery|', 'eg/mobile-large/MMA28.2.7.jpg', 1.55), - SearchData(-2557, 551049, 'Box Coffin and Rope', 'coffin, rope|wood (tamarisk), pigment, fiber|', 'eg/mobile-large/12.187.54_EGDP015378.jpg', 1.18), - SearchData(-1371, 544519, 'Mechanical Dog', 'figurine, dog|ivory (elephant)|', 'eg/mobile-large/0227r2_SEC501K.jpg', 1.27), - SearchData(-1344, 544695, 'Amarna letter: Royal Letter from Ashur-uballit, the king of Assyria, to the king of Egypt', 'tablet, amarna letter|clay|', 'eg/mobile-large/24.2.11_EGDP021806.jpg', 0.75), - SearchData(-1700, 548325, 'Double "Tell el-Yahudiya" Vase with Incised Lotus Flowers, probably manufactured in Egypt', 'vase, double, yahudiya ware|pottery, smoke blackening, white gypsum|', 'eg/mobile-large/23.3.39.jpg', 1.09), - SearchData(-690, 549533, 'Block Statue of Ankhwennefer', 'block statue, ankhwennefer|limestone|', 'eg/mobile-large/DT7022.jpg', 0.80), - SearchData(-175, 259138, 'Plaster cast of a metal emblema of Isis-Tyche', 'cast|plaster|miscellaneous-plaster', 'gr/mobile-large/sftr236ab2012.jpg', 0.93), - SearchData(-234, 547773, 'Head of Ptolemy II or III', 'head, ptolemy ii or iii|black bronze|', 'eg/mobile-large/DP-24219-001.jpg', 0.81), - SearchData(-945, 549169, 'Cult Image of the God Ptah', 'statuette, ptah|lapis lazuli|', 'eg/mobile-large/DP142956.jpg', 0.75), - SearchData(-1390, 767346, 'Document Sealing', 'sealing, amun-re, upper egypt, lower egypt|mud|', 'eg/mobile-large/SC-PA_203.jpg', 1.35), - SearchData(-2524, 543998, 'Statue of Kaipunesut', 'statue, kaipunesut|wood, paint|', 'eg/mobile-large/268829.jpg', 0.48), - SearchData(-995, 243741, 'Faience amulet of Bes image', 'amulet, bes|clay, glazed|gold and silver', 'gr/mobile-large/DP121815.jpg', 0.75), - SearchData(-347, 243775, 'Faience snake amulet', 'amulet, snake|clay, glazed|gold and silver', 'gr/mobile-large/DP121835.jpg', 0.75), - SearchData(-1344, 544693, 'Face from a Composite Statue, probably Queen Tiye', 'head, queen tiye|quartzite|', 'eg/mobile-large/DT11514.jpg', 0.77), - SearchData(774, 449211, 'Panel', 'panel|wood (fig); mosaic with bone and four different types of wood|wood', 'is/mobile-large/DP160115.jpg', 3.32), - SearchData(-2490, 543935, 'Seated Statue of King Menkaure', 'statue, menkaure seated|indurated limestone|', 'eg/mobile-large/DP109397.jpg', 0.65), - SearchData(-199, 246746, 'Terracotta head of a woman', 'head of a woman|terracotta|terracottas', 'gr/mobile-large/DP121877.jpg', 1.00), - SearchData(-1344, 544861, 'Spindle Bottle with Handle', 'bottle, spindle, handle|glass|', 'eg/mobile-large/DT2547.jpg', 0.78), - SearchData(-2650, 547439, 'Squat jar', 'jar|magnesite|', 'eg/mobile-large/01.4.85_EGDP011686.jpg', 1.33), - SearchData(-347, 243753, 'Faience amulet of Taweret', 'amulet, thueris|clay, glazed|gold and silver', 'gr/mobile-large/DP121822.jpg', 0.75), - SearchData(-1994, 545393, 'Stela of the Overseer of the Fortress Intef', 'stela, intef, iti|limestone|', 'eg/mobile-large/DP322110.jpg', 1.72), - SearchData(-347, 243765, 'Faience amulet of Ra Horakhty', 'amulet, hawk|clay, glazed|gold and silver', 'gr/mobile-large/DP121828.jpg', 0.75), - SearchData(-2575, 544531, 'Facsimile Painting of Geese, Tomb of Nefermaat and Itet', 'facsimile, nefermaat and itet, meidum geese|tempera on paper|', 'eg/mobile-large/DT226227.jpg', 5.70), - SearchData(-2040, 544207, 'Sarcophagus of the Hathor Priestess Henhenet', 'sarcophagus, henhenet|limestone, sandstone, paint|', 'eg/mobile-large/07.230.1a-b_EGDP011903.jpg', 1.30), - SearchData(-347, 243749, 'Faience amulet of Thoth', 'amulet, khnum|clay, glazed|gold and silver', 'gr/mobile-large/DP121821.jpg', 0.75), - SearchData(-1422, 554490, 'Goddess of Upper Egypt', 'statuette, standing goddess, upper egypt|ivory|', 'eg/mobile-large/LC-22_9_4_EGDP028554.jpg', 0.67), - SearchData(-347, 243776, 'Faience snake amulet', 'amulet, snake|clay, glazed|gold and silver', 'gr/mobile-large/DP121836.jpg', 0.75), - SearchData(-361, 551898, 'Composite Papyrus Capital', 'column capital, papyrus|sandstone, paint|', 'eg/mobile-large/10.177.2_EGDP018080.jpg', 1.28), - SearchData(-2649, 552018, 'Jar with pointed base and intact seal', 'jar, sealed|pottery|', 'eg/mobile-large/28.2.20_EGDP010302.jpg', 0.67), - SearchData(-2650, 570769, 'Clay jar sealing impressed faintly with name of Khasekhemwy', 'sealing, jar|clay (unfired)|', 'eg/mobile-large/01.4.103_EGDP012117.jpg', 1.00), - SearchData(-2649, 569690, 'Stake?', 'stake (?)|wood|', 'eg/mobile-large/97-4-1.jpg', 5.41), - SearchData(-1353, 566533, 'Head of Akhenaten or Nefertiti', 'head, king, queen|gypsum plaster|', 'eg/mobile-large/DP261897.jpg', 0.84), - SearchData(-1304, 545870, 'Statuette of Kary', 'statue, kary|wood|', 'eg/mobile-large/LC-65_114_EGDP030140.jpg', 0.67), - SearchData(-1390, 767356, 'Document Sealing', 'sealing, amun-re, upper egypt, lower egypt|mud|', 'eg/mobile-large/SC-PA_213.jpg', 0.91), - SearchData(-995, 243794, 'Faience Wedjat-eye amulet', 'amulet, eye, udjati|clay, glazed|gold and silver', 'gr/mobile-large/DP121842.jpg', 1.33), - SearchData(-1468, 547684, 'Artist\'s Gridded Sketch of Senenmut', 'ostracon, figured, grid, senenmut|limestone, ink|', 'eg/mobile-large/DT1534.jpg', 0.81), - SearchData(-1891, 557549, 'Coffin of Ameny', 'coffin, ameny, rectangular|wood, paint|', 'eg/mobile-large/11.150.39a-b-gc-detail.jpg', 0.78), - SearchData(-2649, 551016, 'Bowl', 'bowl|pottery|', 'eg/mobile-large/O.C.2997_EGDP011332.jpg', 1.78), - SearchData(170, 547334, 'Shroud of a Woman Wearing a Fringed Tunic', 'shroud, woman, fringed tunic|linen, paint (tempera)|', 'eg/mobile-large/EG198.jpg', 0.49), - SearchData(-1550, 555062, 'Funerary Cone of Heby', 'cone, circular impression, heby|pottery|', 'eg/mobile-large/bw13.180.72.jpg', 1.05), - SearchData(-594, 545213, 'Figure of a Baboon', 'amulet, baboon|faience|', 'eg/mobile-large/DT8831.jpg', 0.80), - SearchData(-181, 544092, 'Striding Thoth', 'statuette, thoth|faience|', 'eg/mobile-large/DP240843.jpg', 0.75), - SearchData(-1200, 329885, 'Pectoral Fragment', '|faience|', 'eg/mobile-large/LC-2021_41_107_EGDP032464.jpg', 1.50), - SearchData(-2040, 659735, 'Fragment of a torus molding from the shrine of a royal woman within the temple of Mentuhotep II', 'relief, nebhepetre mentuhotep\'s wives, torus molding|limestone, paint|', 'eg/mobile-large/06.1231.77.jpg', 2.90), - SearchData(-1465, 560252, 'Name Stone of Senenmut', 'name stone, tally, senenmut|limestone|', 'eg/mobile-large/36-3-241_ac.jpg', 0.67), - SearchData(-2649, 561723, 'Cylinder seal', 'cylinder seal|steatite|', 'eg/mobile-large/LC-10_130_1619_EGDP032398.jpg', 0.80), - SearchData(-347, 243716, 'Jasper amulet in the form of a frog', 'amulet pendant, frog|jasper|gold and silver', 'gr/mobile-large/DP121804.jpg', 0.75), - SearchData(-347, 244462, 'Bronze statuette of Osiris', 'statuette of osiris|bronze|bronzes', 'gr/mobile-large/DP20095.jpg', 0.92), - SearchData(-589, 544884, 'Fragment of a Royal Head, Probably Apries', 'head fragment, apries|black diorite|', 'eg/mobile-large/DT3837.jpg', 0.80), - SearchData(-347, 244464, 'Bronze portrait head of a pharaoh', 'portrait head of a pharaoh|bronze|bronzes', 'gr/mobile-large/DP20099.jpg', 0.92), - SearchData(-1595, 548350, 'Bucranium', 'bucranium, horns, antlers, pan grave, medjayu|horn, bone, paint|', 'eg/mobile-large/DP100986.jpg', 1.13), - SearchData(-1473, 547553, 'Head from an Osiride Statue of Hatshepsut', 'head, hatshepsut, niche, double crown; hatshepsut-sculpture|limestone, paint|', 'eg/mobile-large/21M_CAT074R4.jpg', 0.79), - SearchData(-1919, 546275, 'Canopic Chest of Senbi', 'canopic chest, senbi|wood (ziziphus sp.), paint, string|', 'eg/mobile-large/11.150.17a_1-3_0009.jpg', 0.82), - SearchData(-1390, 767347, 'Document Sealing', 'sealing, upper egypt, lower egypt, amun-re|mud|', 'eg/mobile-large/SC-PA_204.jpg', 0.96), - SearchData(-1919, 544227, 'Hippopotamus ("William")', 'figurine, hippopotamus ("william")|faience|', 'eg/mobile-large/DP248993.jpg', 0.75), - SearchData(-2475, 545825, 'Headless statue of Babaef as younger man', 'statue, babaef as younger man|limestone|', 'eg/mobile-large/64.66.1_EGDP014892.jpg', 0.50), - SearchData(-1390, 767351, 'Document Sealing', 'sealing, upper egypt, lower egypt, amun-re|mud|', 'eg/mobile-large/SC-PA_208.jpg', 0.89), - SearchData(-1966, 544206, 'Lintel of Amenemhat I and Deities', 'relief, lintel, amenemhat i|limestone, paint|', 'eg/mobile-large/DP322051.jpg', 3.82), - SearchData(-2639, 543939, 'Squat jar with two lugs', 'jar, squat, two lugs|probably pegmatitic quartz diorite|', 'eg/mobile-large/24.7.5.jpg', 1.71), - SearchData(-550, 553045, 'Statue of a goddess, probably Nehemetaui or Nebethetepet', 'statuette, nehemetaui or nebethetepet|cupreous metal|', 'eg/mobile-large/DP237849.jpg', 0.75), - SearchData(-2551, 574407, 'Block of Relief', 'relief|limestone, paint|', 'eg/mobile-large/09.180.6.jpg', 2.09), - SearchData(-2650, 551833, 'Clay jar sealing', 'sealing, jar|clay (unfired)|', 'eg/mobile-large/LC-01_4_164_EGDP024739.jpg', 1.50), - SearchData(-1353, 544696, 'Amarna letter: Royal Letter from Abi-milku of Tyre to the king of Egypt', 'tablet, amarna letter|clay (unfired)|', 'eg/mobile-large/24.2.12_EGDP021809.jpg', 0.75), - SearchData(-1465, 559829, 'Scarab Inscribed for the King of Upper and Lower Egypt Maatkare (Hatshepsut)', 'scarab; maatkare, nesut bity; notched back|steatite (glazed)|', 'eg/mobile-large/27.3.244_bot.jpg', 0.97), - SearchData(-610, 546746, 'Statuette of a Royal (?) Woman with the Cartouches of Necho II on her Arms', 'female statuette with cartouches of necho ii on her arms|silver|', 'eg/mobile-large/DP139132.jpg', 1.00), - SearchData(-1810, 545718, 'Kamares jar', 'cup, aegean|pottery, paint|', 'eg/mobile-large/DT327376.jpg', 0.80), - SearchData(1327, 444812, 'Pair of Minbar Doors', 'doors|wood (rosewood and mulberry); carved and inlaid with carved ivory, ebony, and other woods|wood', 'is/mobile-large/DP235241.jpg', 0.64), - SearchData(-347, 243732, 'Faience amulet in the form of the dwarf god Pataikos', 'amulet, ptah-seker|clay, glazed|gold and silver', 'gr/mobile-large/DP121812.jpg', 0.75), - SearchData(-351, 544887, 'God Horus Protecting King Nectanebo II', 'statue, horus, king nectanebo ii|meta-greywacke|', 'eg/mobile-large/DP152085.jpg', 0.75), - SearchData(1505, 24426, 'Standard Head', 'standard head|steel, iron|shafted weapons', 'aa/mobile-large/DP158310.jpg', 0.61), - SearchData(-2551, 543890, 'Relief fragment with king Khufu\'s cattle', 'relief, king khufu\'s cattle|limestone|', 'eg/mobile-large/DT244362.jpg', 1.67), - SearchData(-347, 243769, 'Faience amulet in the form of a ram', 'amulet, ram|clay, glazed|gold and silver', 'gr/mobile-large/DP131208.jpg', 1.33), - SearchData(-181, 788904, 'Three Arrowheads', 'three arrowheads|bronze|archery equipment-arrowheads', 'aa/mobile-large/LC-08_99_18-001.jpg', 1.25), - SearchData(-2051, 544008, 'Statue of Nebhepetre Mentuhotep II in the Jubilee Garment', 'statue, standing king, mentuhotep, nebhepetre|sandstone, paint|', 'eg/mobile-large/DP302395.jpg', 0.45), - SearchData(-1070, 587598, 'Statue of the God Ptah', 'statue, ptah|bronze, gold leaf, glass|', 'eg/mobile-large/DP216330.jpg', 0.69), - SearchData(-1722, 557108, 'Scarab Incised with Hieroglyphs and Scroll', 'scarab, scroll, wedjat, hieroglyphs, sa, vase|steatite, traces of green glaze|', 'eg/mobile-large/20.1.138_EGDP020342.jpg', 0.80), - SearchData(-690, 547694, 'Block Statue of a Prophet of Montu and Scribe Djedkhonsuefankh, son of Khonsumes and Taat', 'block statue, djedkhonsuefankh|gabbro|', 'eg/mobile-large/DT318224.jpg', 0.80), - SearchData(-1740, 544225, 'Group of two women and a child', 'statuette group, two women, child|limestone, paint|', 'eg/mobile-large/DT327377.jpg', 0.70), - SearchData(-2649, 565438, 'Contracted body which has been naturally mummified', 'body, mummified|human remains, linen|', 'eg/mobile-large/Images-Restricted.jpg', 1.00), - SearchData(-698, 544881, 'Donation Stela of Shebitqo', 'stela, shebitqo, donation, patjenef, horus, hathor, hurbeit|limestone|', 'eg/mobile-large/EG65.45.JPG', 1.10), - SearchData(-1329, 544692, 'Haremhab as a Scribe of the King', 'statue, scribe, haremhab|granodiorite|', 'eg/mobile-large/DP238391.jpg', 0.67), - SearchData(-347, 243745, 'Faience amulet of Isis and Horus', 'amulet, isis|clay, glazed|gold and silver', 'gr/mobile-large/DP121840.jpg', 0.75), - SearchData(-1000, 548253, 'Wedjat Eye Incision Plaque', 'amulet plaque, wedjat eye, gautsoshen|bronze or copper alloy|', 'eg/mobile-large/62415.jpg', 1.22), - SearchData(275, 466645, 'Medallion with a Portrait of Gennadios', 'medallion|glass, gold leaf, polychromy|glass-gold glass', 'md/mobile-large/DP325825.jpg', 0.99), - SearchData(-2550, 543871, 'Head of a statue of an older man', 'head, male statue|limestone, paint|', 'eg/mobile-large/DT259188.jpg', 0.75), - SearchData(-347, 243754, 'Faience amulet of Taweret', 'amulet, thueris|clay, glazed|gold and silver', 'gr/mobile-large/DP121823.jpg', 0.75), - SearchData(-2650, 547398, 'Clay jar sealing impressed with name of Khasekhemwy', 'sealing, jar|clay (unfired)|', 'eg/mobile-large/01.4.98_EGDP012127.jpg', 1.78), - SearchData(-1371, 544498, 'Sphinx of Amenhotep III, possibly from a Model of a Temple', 'sphinx, amenhotep iii|faience, remains of a travertine (egyptian alabaster) tenon|', 'eg/mobile-large/DT539.jpg', 1.25), - SearchData(-1400, 243816, 'Mirror handle', 'handle of a mirror with lotus petals|clay, glazed|terracottas', 'gr/mobile-large/DP121848.jpg', 1.33), - SearchData(-2551, 551276, 'Temple relief', 'temple relief, names of khufu|limestone|', 'eg/mobile-large/LC-22_1_19_EGDP030917.jpg', 1.50), - SearchData(-2649, 551010, 'Cup', 'cup|pottery|', 'eg/mobile-large/28.2.30_EGDP011316.jpg', 0.80), - SearchData(-2500, 543887, 'Shallow bowl with a recurved rim', 'bowl|travertine (egyptian alabaster)|', 'eg/mobile-large/DT227150.jpg', 1.25), - SearchData(0, 547376, 'Bracelet with Agathodaimon, Isis-Tyche, Aphrodite, and Thermouthis', 'bracelet, agathodaimon, isis-tyche, aphrodite, thermouthis|gold|', 'eg/mobile-large/DP-14787-002.jpg', 0.89), - SearchData(1274, 444540, 'Brazier of Rasulid Sultan al-Malik al-Muzaffar Shams al-Din Yusuf ibn \'Umar', 'brazier|brass; cast, chased, and inlaid with silver and black compound|metal', 'is/mobile-large/DP170388.jpg', 1.03), - SearchData(-493, 243949, 'Faience figurine of a lion', 'pendant ? of a lion|faience|miscellaneous-faience', 'gr/mobile-large/DP121850.jpg', 1.33), - SearchData(-2005, 548212, 'Relief of Nebhepetre Mentuhotep II and the Goddess Hathor', 'relief, temple wall, mentuhotep ii|limestone, paint|', 'eg/mobile-large/DP322047.jpg', 2.53), - SearchData(-2267, 590943, 'Two Vases in the Shape of a Mother Monkey with her Young', 'vase, monkey, baby|travertine (egyptian alabaster), paint, resin and pigment|', 'eg/mobile-large/eg30.8.134_1992.338.jpg', 0.80), - SearchData(-688, 243777, 'Faience ram\'s head amulet', 'amulet, ram\'s head|clay, glazed|gold and silver', 'gr/mobile-large/DP121837.jpg', 0.75), - SearchData(-1363, 544514, 'Fragment of a Queen\'s Face', 'head, queen, fragment, lips|yellow jasper|', 'eg/mobile-large/DP355835.jpg', 0.88), - SearchData(-347, 243773, 'Faience amulet in the form of a hare', 'amulet, hare|clay, glazed|gold and silver', 'gr/mobile-large/DP121832.jpg', 1.33), - SearchData(325, 465921, 'Bowl Fragments with Menorah, Shofar, and Torah Ark', 'bowl fragments|glass, gold leaf|glass-gold glass', 'md/mobile-large/h1_18.145.1ab.jpg', 1.28), - SearchData(65, 547257, 'Mummy Mask', 'mask, cartonnage, woman|cartonnage, plaster, paint, plant fibers|', 'eg/mobile-large/DT10852.jpg', 0.80), - SearchData(-1045, 243739, 'Faience amulet of Bes image', 'amulet, bes|clay, glazed|gold and silver', 'gr/mobile-large/DP131207.jpg', 0.75), - SearchData(-1186, 544076, 'Artist\'s Sketch of Pharaoh Spearing a Lion', 'ostracon, figured, pharaoh, lion, hieratic|limestone, ink|', 'eg/mobile-large/1191R2_Sec501M.jpg', 1.08), - SearchData(312, 463989, 'Gold Glass Medallion with a Mother and Child', 'medallion|glass, gold leaf|glass-gold glass', 'md/mobile-large/sf17-190-109as1.jpg', 0.99), - SearchData(-1390, 548584, 'Cosmetic Spoon in the Shape of Swimming Woman Holding a Dish', 'cosmetic spoon, swimming woman, gazelle|travertine (egyptian alabaster), steatite|', 'eg/mobile-large/DT223706.jpg', 1.25), - SearchData(-2557, 551045, 'Drinking Cup', 'cup, spouted|limestone|', 'eg/mobile-large/10.176.143_EGDP015841.jpg', 1.00), - SearchData(1049, 448401, 'Crescent-Shaped Pendant with Confronted Birds', 'pendant|gold, cloisonné enamel, turquoise; filigree|jewelry', 'is/mobile-large/DP170371.jpg', 0.80), - SearchData(-1944, 544320, 'Stela of the Steward Mentuwoser', 'stela, mentuwoser|limestone, paint|', 'eg/mobile-large/DP322064.jpg', 0.52), - SearchData(-1003, 552609, 'Winged Goddess', 'winged goddess|faience|', 'eg/mobile-large/26.7.982a-c_EGDP011734.jpg', 1.50), - SearchData(-1342, 546194, 'Arched Harp (shoulder harp)', 'music, harp, arched, naviform, boat shaped|wood|', 'eg/mobile-large/DP302724.jpg', 0.75), - SearchData(-313, 547689, 'Ritual Figure', 'statuette, ritual figure|wood, formerly clad with lead sheet|', 'eg/mobile-large/DT1016.jpg', 0.80), - SearchData(-1465, 548957, 'Name Stone of Senenmut', 'name stone, tally, senenmut|limestone, paint|', 'eg/mobile-large/36-3-245_ac.jpg', 0.83), - SearchData(-1700, 545108, 'Head from a Large Statue of a Priest or Dignitary', 'head, priest or dignitary|quartzite|', 'eg/mobile-large/262112.jpg', 0.82), - SearchData(-2880, 545799, 'Stela of Raneb', 'stela, raneb|granite|', 'eg/mobile-large/DP259528.jpg', 0.55), - SearchData(-995, 243808, 'Openwork faience ring', 'ring, openwork faience|faience|gold and silver', 'gr/mobile-large/DP121846.jpg', 0.75), - SearchData(-351, 546037, 'Magical Stela (Cippus of Horus)', 'cippus, cippus of horus|meta-greywacke|', 'eg/mobile-large/DP319007.jpg', 0.79), - SearchData(-2649, 543881, 'Weight equal to five deben', 'weight, 5 deben|yellow jasper or opal|', 'eg/mobile-large/DT259187.jpg', 0.80), - SearchData(-2649, 552020, 'Large jar', 'jar|pottery|', 'eg/mobile-large/28.2.9_EGDP010299.jpg', 0.67), - SearchData(-867, 544078, 'Amulet in the Form of a Lion-Headed Goddess', 'amulet, lion headed goddess|faience|', 'eg/mobile-large/DT226125.jpg', 0.80), - SearchData(1049, 446191, 'Panel with Horse Heads', 'panel|wood (teak); carved|wood', 'is/mobile-large/DP170363.jpg', 0.75), - SearchData(-1390, 767342, 'Document Sealing', 'sealing, amun-re, upper egypt, lower egypt|mud|', 'eg/mobile-large/SC-PA_199.jpg', 1.23), - SearchData(149, 590953, 'Theatrical Masks and Ram Vessel for Offering', 'mask, theatrical, ram vessel|faience|', 'eg/mobile-large/26.7.1019-group_EGDP011909.jpg', 0.92), - SearchData(-2650, 547433, 'Copper pin?', 'cosmetic pin (?)|copper alloy|', 'eg/mobile-large/01.4.40_EGDP011663.jpg', 1.78), - SearchData(-525, 544070, 'Antelope Head', 'head, antelope|greywacke, travertine (egyptian alabaster), agate|', 'eg/mobile-large/DT6857.jpg', 1.25), - SearchData(-2575, 543994, 'Scenes from a King\'s Thirty-Year Jubilee', 'relief, snefru (?), heb-sed|limestone, paint|', 'eg/mobile-large/DT259173.jpg', 1.33), - SearchData(-2649, 550160, 'Bowl', 'bowl|granodiorite|', 'eg/mobile-large/2001.726.2.jpg', 1.57), - SearchData(-2458, 543936, 'Palm Column of Sahure', 'column, sahure, palm capital|granite|', 'eg/mobile-large/10.175.137_EGDP011910.jpg', 0.67), - SearchData(-182, 250525, 'Fragmentary faience statuette of Aphrodite', 'statuette of aphrodite, fragment|faience|miscellaneous-faience', 'gr/mobile-large/DP121794.jpg', 1.33), - SearchData(-5, 551807, 'Man Holding a Shrine Containing an Image of Osiris', 'statue, priest, osiris shrine|greywacke|', 'eg/mobile-large/DP152079.jpg', 0.75), - SearchData(-1390, 767350, 'Document Sealing', 'sealing, upper egypt, lower egypt, amun-re|mud|', 'eg/mobile-large/SC-PA_207.jpg', 0.91), -]; \ No newline at end of file + SearchData(-2649, 551010, 'Cup', 'cup|pottery|'), + SearchData( + -2649, + 547738, + 'Relief Fragment depicting offering bearers from the mastaba of Idut, daughter of King Unis (?)', + 'relief, offering bearers|limestone|'), + SearchData(-690, 549533, 'Block Statue of Ankhwennefer', 'block statue, ankhwennefer|limestone|'), + SearchData(-698, 544881, 'Donation Stela of Shebitqo', + 'stela, shebitqo, donation, patjenef, horus, hathor, hurbeit|limestone|'), + SearchData(-2650, 547432, 'Model chisel', 'model chisel|copper alloy|'), + SearchData(65, 547257, 'Mummy Mask', 'mask, cartonnage, woman|cartonnage, plaster, paint, plant fibers|'), + SearchData(149, 590953, 'Theatrical Masks and Ram Vessel for Offering', 'mask, theatrical, ram vessel|faience|'), + SearchData(-2465, 548225, 'Foot Amulet', 'amulet, foot|carnelian|'), + SearchData(-1371, 767349, 'Document Sealing', 'sealing, upper egypt, lower egypt, amun-re|mud|'), + SearchData(-1750, 329774, 'Head and chest of a shabti figure', + 'head and chest of a shabti figure|steatite or serpentinite|'), + SearchData(-167, 243802, 'Faience amulet plaque with a group of deities', + 'amulet plaque, group of deities|clay, glazed|gold and silver'), + SearchData(-351, 544888, 'Nectanebo II Offers to Osiris Hemag', 'relief, nectanebo ii|granodiorite|'), + SearchData(-1891, 544319, 'Writing board', 'writing board|wood, gesso, paint|'), + SearchData(-347, 243768, 'Faience amulet in the form of a lion', 'amulet, lion|clay, glazed|gold and silver'), + SearchData(-2649, 552017, 'Jar with flat base', 'jar, flat base|pottery|'), + SearchData(449, 466266, 'Dionysos', 'plaque|bone|bone'), + SearchData( + -2465, 543902, 'Statue of Demedji and Hennutsen', 'statue, seated pair, demedji, hennutsen|limestone, paint|'), + SearchData(-867, 561047, 'Wedjat Eye Amulet', 'amulet, wedjat eye|faience, aragonite|'), + SearchData(-181, 548310, 'The Goddess Isis and her Son Horus', 'statuette of isis with the horus child|faience|'), + SearchData(125, 547951, 'Portrait of the Boy Eutyches', 'panel painting, eutyches|encaustic on wood|'), + SearchData( + -347, 243761, 'Faience amulet in the form of a lion-headed deity', 'amulet, bast|clay, glazed|gold and silver'), + SearchData(-712, 552583, 'Funerary Cone of the Fourth Prophet of Amun Montuemhat', + 'cone, davies 461, montuemhat, fourth prophet, amun, scribe|pottery|'), + SearchData( + -2520, 543896, 'Fragmentary Face of King Khafre', 'head fragment, king khafre|travertine (egyptian alabaster)|'), + SearchData(-664, 545368, 'Amulet: Crown of Lower Egypt', 'amulet, crown of lower egypt|faience|'), + SearchData(-1745, 556561, 'Magic Wand', 'magic wand|ivory|'), + SearchData(-1859, 544186, 'Senwosret III as a Sphinx', 'sphinx, senwosret iii; 12th-dyn-king|gneiss|'), + SearchData(-347, 244463, 'Bronze statuette of Osiris', 'statuette of osiris|bronze|bronzes'), + SearchData( + -2575, 543994, 'Scenes from a King\'s Thirty-Year Jubilee', 'relief, snefru (?), heb-sed|limestone, paint|'), + SearchData(-1353, 545907, 'Funerary Figure of Isis, Singer of the Aten', + 'funerary figure, shabti, isis, singer, aten|limestone|'), + SearchData( + -2650, 570769, 'Clay jar sealing impressed faintly with name of Khasekhemwy', 'sealing, jar|clay (unfired)|'), + SearchData(-1422, 329913, 'Upper Part of a Jar in the Shape of a Female Musician', '|pottery, paint|'), + SearchData(-100, 577944, 'King\'s Head with Egyptian Headdress but Greek Hair and Features', + 'head, king, greek hair|gabbro|'), + SearchData(-330, 572458, 'Shabti of Petosiris, son of Djedhor', 'shabti, petosiris|faience|'), + SearchData(-2650, 547426, 'Model adze blade', 'model adze blade|copper alloy|'), + SearchData(-1878, 544184, 'Face of Senwosret III', 'head, senwosret iii; 12th-dyn-king|red quartzite|'), + SearchData(-2490, 543935, 'Seated Statue of King Menkaure', 'statue, menkaure seated|indurated limestone|'), + SearchData(-1550, 689621, 'Heart amulets', 'amulet, heart|agate, glass|'), + SearchData(-347, 243716, 'Jasper amulet in the form of a frog', 'amulet pendant, frog|jasper|gold and silver'), + SearchData(-2551, 543890, 'Relief fragment with king Khufu\'s cattle', 'relief, king khufu\'s cattle|limestone|'), + SearchData(-487, 553254, 'Shabti of the Treasurer of Lower Egypt Pa-abumeh, called Psamtik-seneb', + 'shabti, pa-abu-meh, psamtik-seneb|faience|'), + SearchData(-1311, 544776, 'Votive stela of Userhat', 'stela, userhat|limestone, paint|'), + SearchData(-1070, 587598, 'Statue of the God Ptah', 'statue, ptah|bronze, gold leaf, glass|'), + SearchData(-2650, 551834, 'Ivory label incised with an early hieroglyph that may be the image of a bundle of arrows', + 'label, bundle of arrows|wood, ink|'), + SearchData(-610, 546746, 'Statuette of a Royal (?) Woman with the Cartouches of Necho II on her Arms', + 'female statuette with cartouches of necho ii on her arms|silver|'), + SearchData( + -2520, 543910, 'Stand for an Offering Basin with the Name of King Khafre', 'offering stand, king khafre|gneiss|'), + SearchData(-2649, 543870, 'Figure of a male beer-maker', 'statuette, male beer-maker|limestone, paint|'), + SearchData(-2462, 545827, 'Head of male statue, perhaps Babaef', 'head, male statue, perhaps babaef|granite|'), + SearchData(-1961, 544185, 'Seated Statue of King Senwosret I', 'statue, senwosret i, seated|greywacke|'), + SearchData(-1371, 767351, 'Document Sealing', 'sealing, upper egypt, lower egypt, amun-re|mud|'), + SearchData(-487, 553076, 'Shabti of the Treasurer of Lower Egypt Pa-abumeh, called Psamtik-seneb', + 'shabti, pa-abu-meh, psamtik-seneb|faience|'), + SearchData(-1422, 554490, 'Goddess of Upper Egypt', 'statuette, standing goddess, upper egypt|ivory|'), + SearchData(-1390, 544794, 'Stela of Senu', 'stela, senu, imsety, hapy|limestone|'), + SearchData(-1981, 546288, 'Flail of Hapiankhtifi', 'scepter, hapiankhtifi|wood, gold leaf, carnelian, faience|'), + SearchData(-347, 243776, 'Faience snake amulet', 'amulet, snake|clay, glazed|gold and silver'), + SearchData(-1371, 767352, 'Document Sealing', 'sealing, upper egypt, lower egypt, amun-re|mud|'), + SearchData(-2649, 552016, 'Jar', 'jar|pottery|'), + SearchData(-2650, 570770, 'Jar sealing', 'sealing|clay (unfired)|'), + SearchData(-2575, 545821, 'Group statue', 'statue group, lower section|limestone|'), + SearchData(-2649, 561722, 'Cylinder seal', 'cylinder seal|steatite|'), + SearchData(-1371, 767347, 'Document Sealing', 'sealing, upper egypt, lower egypt, amun-re|mud|'), + SearchData(-2551, 543895, 'Archers', 'relief, archers|limestone, paint|'), + SearchData(165, 547698, 'Plaster Portrait Mask of a Youth', + 'mask, youth portrait|plaster, linen, paint, lapis lazuli, glass|'), + SearchData(-2650, 547431, 'Model adze blade', 'model adze blade|copper alloy|'), + SearchData(-167, 243729, 'Faience amulet in the form of the dwarf god Pataikos', + 'amulet, ptah-seker|clay, glazed|gold and silver'), + SearchData(-1371, 767348, 'Document Sealing', 'sealing, upper egypt, lower egypt, amun-re|mud|'), + SearchData(-1344, 544680, 'Pair of Clappers', 'music, clapper, arm, hand|hippopotamus ivory|'), + SearchData(-347, 243773, 'Faience amulet in the form of a hare', 'amulet, hare|clay, glazed|gold and silver'), + SearchData(-347, 243753, 'Faience amulet of Taweret', 'amulet, thueris|clay, glazed|gold and silver'), + SearchData(-351, 546037, 'Magical Stela (Cippus of Horus)', 'cippus, cippus of horus|meta-greywacke|'), + SearchData(-2649, 570919, 'Amulet, leg', 'amulet, leg|carnelian|'), + SearchData( + -2040, + 659735, + 'Fragment of a torus molding from the shrine of a royal woman within the temple of Mentuhotep II', + 'relief, nebhepetre mentuhotep\'s wives, torus molding|limestone, paint|'), + SearchData(-1371, 767341, 'Document Sealing', 'sealing, amun-re, upper egypt, lower egypt|mud|'), + SearchData(-2649, 561726, 'Cylinder seal', 'cylinder seal|steatite|'), + SearchData(-2520, 552235, 'Sarcophagus of Mindjedef', 'sarcophagus, mindjedef|granite|'), + SearchData(-274, 547699, 'Head Attributed to Arsinoe II', 'head of a statue of arsinoe ii|limestone (indurated)|'), + SearchData( + -2420, 543901, 'Nikare with his Wife and Daughter', 'statue group, nikare, wife, daughter|limestone, paint|'), + SearchData(-950, 243740, 'Faience amulet of Bes image', 'amulet, bes|clay, glazed|gold and silver'), + SearchData(-1465, 559831, 'Scarab Inscribed King of Upper and Lower Egypt Maatkare, Having Dominion', + 'scarab; maatkare, nesut bity, wasti; detailed back|steatite (glazed)|'), + SearchData(-2649, 572178, 'Linen Cloth', 'linen cloth|linen|'), + SearchData(-347, 243781, 'Faience djed-pillar amulet', 'amulet pendant, djed sign|clay, glazed|gold and silver'), + SearchData(-1745, 649818, 'Broad Collar piece (?)', 'broad collar piece (?)|faience|'), + SearchData(-2650, 547398, 'Clay jar sealing impressed with name of Khasekhemwy', 'sealing, jar|clay (unfired)|'), + SearchData(-2040, 552996, 'Relief from the temple of Nebhepetre Mentuhotep II', + 'relief from the temple of nebhepetre mentuhotep ii, cartouche|limestone|'), + SearchData(-945, 549169, 'Cult Image of the God Ptah', 'statuette, ptah|lapis lazuli|'), + SearchData(-361, 546751, 'Bust of an Official', 'bust, official|greywacke|'), + SearchData(167, 245500, 'Bronze statuette of a horseman', 'statuette of a horseman|bronze|bronzes'), + SearchData(-2649, 569690, 'Stake?', 'stake (?)|wood|'), + SearchData(-175, 259138, 'Plaster cast of a metal emblema of Isis-Tyche', 'cast|plaster|miscellaneous-plaster'), + SearchData(-1452, 544860, 'Drinking Cup', 'cup, nuzi, mitanni, button-base|glassy faience, gold|'), + SearchData(-2550, 543871, 'Head of a statue of an older man', 'head, male statue|limestone, paint|'), + SearchData(-1371, 767345, 'Document Sealing', 'sealing, amun-re, upper egypt, lower egypt|mud|'), + SearchData( + -1425, 329799, 'Head with tripartite wig, probably from a shabti', 'head of a shabti|steatite or serpentinite|'), + SearchData(-995, 243763, 'Faience Ushabti', 'amulet, ushabti|clay, glazed|gold and silver'), + SearchData(-2649, 561718, 'Cylinder seal', 'cylinder seal|gray stone|'), + SearchData(-1371, 767346, 'Document Sealing', 'sealing, amun-re, upper egypt, lower egypt|mud|'), + SearchData(-2465, 543929, 'Miniature ointment jar', 'ointment jar, miniature|gneiss|'), + SearchData(1000, 451717, 'Bowl with Eagle', 'bowl|earthenware; luster-painted on opaque white glaze|ceramics'), + SearchData(-995, 243741, 'Faience amulet of Bes image', 'amulet, bes|clay, glazed|gold and silver'), + SearchData(1287, 450409, 'Enameled and Gilded Bottle', + 'bottle|glass, greenish; blown, folded foot; enameled and gilded|glass'), + SearchData(-1200, 549273, 'Plaque inlaid with Cartouche of Seti II', 'plaque|faience|'), + SearchData(-1344, 544056, 'Akhenaten Sacrificing a Duck', 'talatat, akhenaten, duck|limestone, paint|'), + SearchData(0, 547376, 'Bracelet with Agathodaimon, Isis-Tyche, Aphrodite, and Thermouthis', + 'bracelet, agathodaimon, isis-tyche, aphrodite, thermouthis|gold|'), + SearchData(-2649, 561719, 'Cylinder seal', 'cylinder seal|steatite|'), + SearchData(-262, 249622, 'Glass mosaic relief fragment', 'mosaic inlay|glass|glass'), + SearchData(-2500, 543887, 'Shallow bowl with a recurved rim', 'bowl|travertine (egyptian alabaster)|'), + SearchData(-1344, 544693, 'Face from a Composite Statue, probably Queen Tiye', 'head, queen tiye|quartzite|'), + SearchData(-181, 544092, 'Striding Thoth', 'statuette, thoth|faience|'), + SearchData(-2475, 545825, 'Headless statue of Babaef as younger man', 'statue, babaef as younger man|limestone|'), + SearchData(-493, 243949, 'Faience figurine of a lion', 'pendant ? of a lion|faience|miscellaneous-faience'), + SearchData(-347, 243766, 'Faience amulet of Ra Horakhty', 'amulet, hawk|clay, glazed|gold and silver'), + SearchData(-1353, 544060, 'Attendants in a Procession', 'talatat, attendants, foreigners|limestone, paint|'), + SearchData(1049, 448401, 'Crescent-Shaped Pendant with Confronted Birds', + 'pendant|gold, cloisonné enamel, turquoise; filigree|jewelry'), + SearchData(-1978, 742756, 'Relief fragment, tomb of Meketre', 'relief fragment, tomb of meketre|limestone, paint|'), + SearchData(-2512, 549541, 'Recumbent Lion', 'statue, lion recumbent|granite|'), + SearchData(-664, 243713, 'Lapis lazuli heart amulet', 'amulet pendant, heart|lapis lazuli|gold and silver'), + SearchData(-2650, 547430, 'Model chisel', 'model chisel|copper alloy|'), + SearchData(-712, 552580, 'Funerary Cone of Iby', 'cone, iby, round, chancellor, divine adoratrice, ankhhor|pottery|'), + SearchData(-1371, 767344, 'Document Sealing', 'sealing, amun-re, upper egypt, lower egypt|mud|'), + SearchData(-550, 553045, 'Statue of a goddess, probably Nehemetaui or Nebethetepet', + 'statuette, nehemetaui or nebethetepet|cupreous metal|'), + SearchData(-1363, 544514, 'Fragment of a Queen\'s Face', 'head, queen, fragment, lips|yellow jasper|'), + SearchData(-2100, 555983, 'Blade inscribed for the Overseer of Upper Egypt Idi', 'blade|unalloyed copper|'), + SearchData(-351, 551787, 'Fecundity Figure', 'relief, fecundity figure, nectanebo ii|diorite|'), + SearchData(-1465, 549727, 'Scarab Inscribed for the King of Upper and Lower Egypt Maatkare (Hatshepsut)', + 'scarab; maatkare, nesut bity, ankh; notched back|steatite (glazed)|'), + SearchData( + 1482, + 702966, + 'Shirt of Mail and Plate of Al-Ashraf Sayf ad-Din Qaitbay (ca. 1416/18–1496), 18th Burji Mamluk Sultan of Egypt', + 'shirt of mail and plate|steel, iron, copper alloy, gold|mail'), + SearchData(-1981, 556559, 'Figure of a Female Dwarf', 'statuette, dwarf, female|faience|'), + SearchData(-361, 551898, 'Composite Papyrus Capital', 'column capital, papyrus|sandstone, paint|'), + SearchData(-1045, 243739, 'Faience amulet of Bes image', 'amulet, bes|clay, glazed|gold and silver'), + SearchData(-265, 548230, 'Face attributed to Ptolemy II Philadelphos or a contemporary', + 'head fragment, ptolemy ii|greywacke|'), + SearchData(-2649, 570882, 'Linen Cloth', 'linen cloth|linen|'), + SearchData(-995, 243733, 'Faience amulet in the form of the dwarf god Pataikos', + 'amulet, ptah-seker|clay, glazed|gold and silver'), + SearchData(-2575, 543903, 'Striding Figure', 'statue, striding man|quartzite, paint|'), + SearchData(-1514, 587532, 'Relief with the Head of Amenhotep I', 'relief, head, king, amenhotep i|limestone|'), + SearchData(-700, 587591, 'Head of a goddess, probably Mut, for attachment to a processional barque (?)', + 'head, goddess mut, protome|cupreous alloy, gold leaf, formerly inlaid|'), + SearchData(-347, 244462, 'Bronze statuette of Osiris', 'statuette of osiris|bronze|bronzes'), + SearchData(-181, 788904, 'Three Arrowheads', 'three arrowheads|bronze|archery equipment-arrowheads'), + SearchData(-1371, 767356, 'Document Sealing', 'sealing, amun-re, upper egypt, lower egypt|mud|'), + SearchData(-1304, 545870, 'Statuette of Kary', 'statue, kary|wood|'), + SearchData(-347, 243809, 'Faience button seal', 'button seal|clay, glazed|gold and silver'), + SearchData(-1249, 249678, 'Glass pendant ornament in the form of a pair of birds', + 'ornament in the form of two ducks|glass|glass'), + SearchData(-1353, 544686, 'Funerary Figure of Akhenaten', 'funerary figure, shabti, akhenaten|granite|'), + SearchData( + 50, 567610, 'Gilded armlet of priest, Pedi-amun-pa-sheri', 'armlet, large, inscribed|wood, plaster, gold leaf|'), + SearchData(-2649, 568268, 'Inscribed seal impression', 'sealing|clay or mud|'), + SearchData(-712, 552575, 'Funerary Cone of Pa-ba-sa', 'cone, pabasa, round,|pottery|'), + SearchData(-2649, 545798, 'Jar sealing', 'sealing, jar|mud or clay|'), + SearchData(-2551, 543891, 'Relief with the head of a female personification of an estate', + 'relief, female personification of an estate|limestone|'), + SearchData(450, 473301, 'Silenus, the Tutor of Dionysos', 'plaque|bone|ivories-bone'), + SearchData(1250, 831188, 'Icon of the Virgin and Child, Hodegetria variant', '|tempera on wood|paintings-icons'), + SearchData( + -2650, 570768, 'Clay jar sealing impressed faintly with name of Khasekhemwy', 'sealing, jar|clay (unfired)|'), + SearchData(-347, 243775, 'Faience snake amulet', 'amulet, snake|clay, glazed|gold and silver'), + SearchData( + 170, 547334, 'Shroud of a Woman Wearing a Fringed Tunic', 'shroud, woman, fringed tunic|linen, paint (tempera)|'), + SearchData(-349, 548360, 'Torso of a High General', 'statue, torso, striding general|meta-greywacke|'), + SearchData(-289, 547900, 'Miniature broad collar', + 'necklace, broad collar, miniature|gold, carnelian, turquoise, lapis lazuli|'), + SearchData(-2650, 551833, 'Clay jar sealing', 'sealing, jar|clay (unfired)|'), + SearchData(-1329, 544692, 'Haremhab as a Scribe of the King', 'statue, scribe, haremhab|granodiorite|'), + SearchData(-2539, 551091, 'False door niche block of Merykhufu', 'false door niche block, merykhufu|limestone|'), + SearchData(-2649, 552020, 'Large jar', 'jar|pottery|'), + SearchData(-2000, 545879, 'Head of a King, Possibly Seankhkare Mentuhotep III', + 'head, royal, nemes, mentuhotep iii (?)|limestone|'), + SearchData(-2551, 569692, 'Specimen of mortar from the Great Pyramid', + 'mortar fragment, giza pyramid|mortar (shell, quartz, bricks)|'), + SearchData(-995, 243734, 'Faience two-sided amulet in the form of the dwarf god Pataikos', + 'amulet, ptah-seker|clay, glazed|gold and silver'), + SearchData(-1371, 544068, 'Gazelle', 'figurine, gazelle|ivory (elephant), wood, blue-pigment inlay|'), + SearchData(-1331, 544690, 'Head of Tutankhamun', 'head, tutankhamun, god\'s hand|indurated limestone|'), + SearchData( + -1368, 249682, 'Glass pendant in the form of crescent horns', 'pendant in the form of a crescent|glass|glass'), + SearchData(-1465, 559857, 'Scarab Inscribed King of Upper and Lower Egypt', + 'scarab; nesut bity; simple back|steatite (glazed)|'), + SearchData(-1371, 544853, 'Whip Handle in the Shape of a Horse', 'whip handle, horse|ivory, garnet, paint|'), + SearchData(-2650, 547440, 'Child\'s bracelet', 'bracelet, child\'s|gold|'), + SearchData( + -2650, 570767, 'Clay jar sealing impressed faintly with name of Khasekhemwy', 'sealing, jar|clay (unfired)|'), + SearchData(-1475, 746252, 'Unfinished Bead', 'bead, amenemhat|faience|'), + SearchData(-2550, 558193, 'Speciman of Mortar from the Great Pyramid', 'mortar, giza pyramid|mortar|'), + SearchData(-995, 243808, 'Openwork faience ring', 'ring, openwork faience|faience|gold and silver'), + SearchData(-347, 243744, 'Faience amulet of Isis and Horus', 'amulet, isis|clay, glazed|gold and silver'), + SearchData(-1919, 590947, 'Coffins and Mummy of the Lady Nephthys', + 'coffin, mummy, nephthys|painted wood, cartonnage, linen, human remains, mummification material|'), + SearchData( + -351, 544887, 'God Horus Protecting King Nectanebo II', 'statue, horus, king nectanebo ii|meta-greywacke|'), + SearchData(-487, 553298, 'Shabti of the Treasurer of Lower Egypt Pa-abumeh, called Psamtik-seneb', + 'shabti, pa-abu-meh, psamtik-seneb|faience|'), + SearchData(400, 464608, 'Bone Carving, Possibly of a Dionysiac Revel', 'fragment|ivory|ivories-elephant'), + SearchData(-2575, 544531, 'Facsimile Painting of Geese, Tomb of Nefermaat and Itet', + 'facsimile, nefermaat and itet, meidum geese|tempera on paper|'), + SearchData(-347, 243765, 'Faience amulet of Ra Horakhty', 'amulet, hawk|clay, glazed|gold and silver'), + SearchData(-1282, 547704, 'Head of a goddess', 'head, goddess|quartzite|'), + SearchData(-266, 551786, 'Book of the Dead of the Priest of Horus, Imhotep (Imuthes)', + 'papyrus, funerary, book of the dead, imouthes, imhotep, imuthes|papyrus, ink|'), + SearchData(-1007, 694158, 'Wedjat eye from string of amulets', 'wedjat amulet|hematite|'), + SearchData(-2649, 544001, 'Offering slab for seven oils of Ankhwadjes', + 'offering slab, seven oils|travertine (egyptian alabaster)|'), + SearchData(-2649, 570883, 'Linen Cloth', 'linen cloth|linen|'), + SearchData(-2551, 543909, 'Reserve head', 'head, reserve|limestone|'), + SearchData( + 600, 464456, 'Amulet Carved in Intaglio (Incised)', 'amulet|hematite, silver mount|lapidary work-hematite'), + SearchData(-1371, 544519, 'Mechanical Dog', 'figurine, dog|ivory (elephant)|'), + SearchData(450, 329982, 'Painting of Holy Men', 'painting of holy men|linen, paint|textiles-woven'), + SearchData(-2650, 547434, 'Copper pin?', 'cosmetic pin (?)|copper alloy|'), + SearchData(-1473, 547553, 'Head from an Osiride Statue of Hatshepsut', + 'head, hatshepsut, niche, double crown; hatshepsut-sculpture|limestone, paint|'), + SearchData(-1452, 547772, 'Ritual Statuette of Thutmose III', + 'statuette, kneeling king, thutmose iii|black bronze, gold inlay|'), + SearchData(-2551, 543892, 'Relief with a billy goat', 'relief, billy goat|limestone|'), + SearchData(-2630, 543904, 'Wall tiles from the funerary apartments of king Djoser', + 'tile, apartments of king djoser|faience|'), + SearchData(-1700, 548325, 'Double "Tell el-Yahudiya" Vase with Incised Lotus Flowers, probably manufactured in Egypt', + 'vase, double, yahudiya ware|pottery, smoke blackening, white gypsum|'), + SearchData(-525, 544070, 'Antelope Head', 'head, antelope|greywacke, travertine (egyptian alabaster), agate|'), + SearchData(-2557, 551045, 'Drinking Cup', 'cup, spouted|limestone|'), + SearchData(-1371, 551667, 'Lotus Petal Bead Inscribed with the Throne Name of Amenhotep III', + 'bead, lotus petal, amenhotep iii, nebmaatre|faience|'), + SearchData(-2649, 561721, 'Cylinder seal', 'cylinder seal|steatite|'), + SearchData(-167, 253575, 'Wood statuette of Hekate', 'statuette of hekate|wood, juniper|miscellaneous-wood'), + SearchData(-2465, 543883, 'Relief with running troops', 'relief, running troops|limestone, paint|'), + SearchData(-249, 547904, 'Bes-image of the god Hor-Asha-Khet', + 'statuette, bes-image, hor-asha-khet|bronze; gold, electrum, auriferous-silver, copper and copper-alloy inlays|'), + SearchData( + -2575, 543899, 'The King\'s Acquaintances Memi and Sabu', 'statue, standing pair, memi, sabu|limestone, paint|'), + SearchData(-1800, 544326, 'Coffin of Khnumnakht', 'coffin, khnumnakht|wood, paint|'), + SearchData(-1344, 544861, 'Spindle Bottle with Handle', 'bottle, spindle, handle|glass|'), + SearchData(-1295, 590955, 'Two Bottles in the Form of Pomegranates', 'bottle, pomegranate|glass, opaque|'), + SearchData(-181, 590939, 'Statuette of Anubis', 'anubis, jackal-headed|plastered and painted wood|'), + SearchData(-2575, 547737, 'Lintel block from the false door of Mery\'s chapel', + 'false door, lintel block, mery\'s mastaba|limestone|'), + SearchData(-2465, 552238, 'Oarsmen and an Official', 'relief, oarsmen|limestone, paint traces|'), + SearchData(-487, 553075, 'Shabti of the Treasurer of Lower Egypt Pa-abumeh, called Psamtik-seneb', + 'shabti, pa-abu-meh, psamtik-seneb|faience|'), + SearchData(-1465, 559829, 'Scarab Inscribed for the King of Upper and Lower Egypt Maatkare (Hatshepsut)', + 'scarab; maatkare, nesut bity; notched back|steatite (glazed)|'), + SearchData(-2551, 574407, 'Block of Relief', 'relief|limestone, paint|'), + SearchData(-995, 243764, 'Faience Overseer Ushabti', 'amulet, ushabti|clay, glazed|gold and silver'), + SearchData(-347, 243754, 'Faience amulet of Taweret', 'amulet, thueris|clay, glazed|gold and silver'), + SearchData(-1966, 544206, 'Lintel of Amenemhat I and Deities', 'relief, lintel, amenemhat i|limestone, paint|'), + SearchData(-1182, 545919, 'Figure of an Asiatic captive', + 'asiatic captive, furniture decoration|ivory, red and pink pigment, white ground|'), + SearchData( + -5, 551807, 'Man Holding a Shrine Containing an Image of Osiris', 'statue, priest, osiris shrine|greywacke|'), + SearchData( + 630, 475416, 'Ampulla (Flask) of Saint Menas', 'ampulla (flask) of saint menas|earthenware, molded|ceramics'), + SearchData(-2524, 543998, 'Statue of Kaipunesut', 'statue, kaipunesut|wood, paint|'), + SearchData(774, 449211, 'Panel', 'panel|wood (fig); mosaic with bone and four different types of wood|wood'), + SearchData(-2649, 561723, 'Cylinder seal', 'cylinder seal|steatite|'), + SearchData(-1537, 547950, 'Head of Ahmose I', 'head, king ahmose|limestone|'), + SearchData(-1371, 767353, 'Document Sealing', 'sealing, upper egypt, lower egypt, amun-re|mud|'), + SearchData(-2500, 543888, 'Large high-shouldered jar', 'jar|travertine (egyptian alabaster)|'), + SearchData(-1550, 544779, 'Relief with Head of King Ahmose Wearing the Red Crown', + 'relief, king ahmose, red crown|limestone, paint|'), + SearchData( + 650, 326230, 'Textile fragment: walking ram with a neckband and fluttering ribbons', 'textile|wool, cotton|'), + SearchData(-249, 246749, 'Terracotta head of a woman', 'head of a woman|terracotta|terracottas'), + SearchData(-1329, 546627, 'Stela Fragment of Pay Adoring Re-Harakhty', + 'stela, pay, jaw, re-harakhty, saqqara, memphis, raia|limestone|'), + SearchData(-2649, 561725, 'Cylinder seal', 'cylinder seal|steatite|'), + SearchData(450, 329842, 'Panel with Warrior Resting', 'plaque|bone|ivories-bone'), + SearchData(-167, 244503, 'Bronze statuette of Horus', 'statuette of horus as an infant|bronze|bronzes'), + SearchData(-484, 243718, 'Red jasper amulet of tyet', 'amulet, girdle tie|jasper, red|gold and silver'), + SearchData(-1003, 552609, 'Winged Goddess', 'winged goddess|faience|'), + SearchData(-1412, 554920, 'Funerary Cone of the Fourth Prophet of Amun Kaemamun', + 'cone, circular impression, kaemamun, seal-bearer, lower egypt, prophet, amun|pottery|'), + SearchData( + -1700, 545108, 'Head from a Large Statue of a Priest or Dignitary', 'head, priest or dignitary|quartzite|'), + SearchData(-828, 544874, 'Statuette of Amun', 'statuette, amun, standing, god|gold|'), + SearchData(-1595, 548350, 'Bucranium', 'bucranium, horns, antlers, pan grave, medjayu|horn, bone, paint|'), + SearchData(-487, 553072, 'Shabti of the Treasurer of Lower Egypt Pa-abumeh, called Psamtik-seneb', + 'shabti, pa-abu-meh, psamtik-seneb|faience|'), + SearchData( + -2465, 543894, 'Relief Fragment with a Ship Under Sail', 'relief, ship under sail|limestone, paint traces|'), + SearchData(-347, 243745, 'Faience amulet of Isis and Horus', 'amulet, isis|clay, glazed|gold and silver'), + SearchData(-182, 250525, 'Fragmentary faience statuette of Aphrodite', + 'statuette of aphrodite, fragment|faience|miscellaneous-faience'), + SearchData(-2649, 550160, 'Bowl', 'bowl|granodiorite|'), + SearchData(-2557, 551049, 'Box Coffin and Rope', 'coffin, rope|wood (tamarisk), pigment, fiber|'), + SearchData(-1371, 767350, 'Document Sealing', 'sealing, upper egypt, lower egypt, amun-re|mud|'), + SearchData(-1465, 559860, 'Scarab Inscribed King of Upper and Lower Egypt, Sobek Crocodile', + 'scarab; two gods upper and lower egypt, crocodile; notched back|steatite (glazed)|'), + SearchData(-6, 547804, 'Head of Augustus', 'head, augustus|faience|'), + SearchData(-2267, 590943, 'Two Vases in the Shape of a Mother Monkey with her Young', + 'vase, monkey, baby|travertine (egyptian alabaster), paint, resin and pigment|'), + SearchData(-347, 243749, 'Faience amulet of Thoth', 'amulet, khnum|clay, glazed|gold and silver'), + SearchData(-2649, 552018, 'Jar with pointed base and intact seal', 'jar, sealed|pottery|'), + SearchData(-1422, 560965, 'Goddess of Lower Egypt', 'statuette, standing goddess, lower egypt|ivory|'), + SearchData(-690, 547694, 'Block Statue of a Prophet of Montu and Scribe Djedkhonsuefankh, son of Khonsumes and Taat', + 'block statue, djedkhonsuefankh|gabbro|'), + SearchData(-313, 547689, 'Ritual Figure', 'statuette, ritual figure|wood, formerly clad with lead sheet|'), + SearchData(-664, 550945, 'Amulet: Crown of Upper Egypt', 'amulet, crown, upper egypt|faience|'), + SearchData(-1353, 544683, 'Statue of two men and a boy that served as a domestic icon', + 'statue group, two men, boy|limestone, paint|'), + SearchData(1285, 447000, 'Mosque Lamp for the Mausoleum of Amir Aydakin al-\'Ala\'i al-Bunduqdar', + 'mosque lamp|glass; blown, folded foot, applied handles, enameled, and gilded|glass'), + SearchData(-2520, 548547, 'Relief fragment showing fishing scene', 'relief, fishing scene|limestone|'), + SearchData(-2005, 548212, 'Relief of Nebhepetre Mentuhotep II and the Goddess Hathor', + 'relief, temple wall, mentuhotep ii|limestone, paint|'), + SearchData(-199, 246746, 'Terracotta head of a woman', 'head of a woman|terracotta|terracottas'), + SearchData(-589, 547705, 'Relief from the Palace of Apries in Memphis', 'relief, wall, apries|limestone|'), + SearchData(-2649, 551016, 'Bowl', 'bowl|pottery|'), + SearchData(-347, 243731, 'Faience amulet in the form of the dwarf god Pataikos', + 'amulet, ptah-seker|clay, glazed|gold and silver'), + SearchData( + -300, 587759, 'God\'s Wife Tagerem, daughter of the priest Imhotep', 'statue, lower half of a woman|limestone|'), + SearchData(-1353, 544696, 'Amarna letter: Royal Letter from Abi-milku of Tyre to the king of Egypt', + 'tablet, amarna letter|clay (unfired)|'), + SearchData(-1994, 545393, 'Stela of the Overseer of the Fortress Intef', 'stela, intef, iti|limestone|'), + SearchData(-484, 243719, 'Red jasper amulet of tyet', 'amulet, girdle tie|jasper, red|gold and silver'), + SearchData(350, 473395, 'Lute', 'lute|wood with traces of paint|woodwork-miscellany'), + SearchData(-330, 558501, 'Shabti of Petosiris, son of Djedhor', 'shabti, petosiris|faience|'), + SearchData(-1360, 554751, 'Sealing from a Jar with the Name of a king Amenhotep', + 'jar sealing, amenhotep iii|mud, pottery, paint|'), + SearchData(-2575, 545820, 'Seated man', 'statue, seated man|limestone|'), + SearchData(-2880, 545799, 'Stela of Raneb', 'stela, raneb|granite|'), + SearchData(-347, 243780, 'Faience djed-pillar amulet', 'amulet pendant, djed sign|clay, glazed|gold and silver'), + SearchData(-2650, 547429, 'Model harpoon', 'model harpoon|copper alloy|'), + SearchData(-199, 246747, 'Terracotta head of a woman', 'head of a woman|terracotta|terracottas'), + SearchData( + 275, 466645, 'Medallion with a Portrait of Gennadios', 'medallion|glass, gold leaf, polychromy|glass-gold glass'), + SearchData(-924, 553738, 'Statue of the God Reshef', 'statue, reshef, reshep, foreign, mace, shield, war|limestone|'), + SearchData(-2475, 545826, 'Headless statue of Babaef as older man', 'statue, babaef as older man|limestone|'), + SearchData( + -347, 243760, 'Faience amulet in the form of a lion-headed deity', 'amulet, bast|clay, glazed|gold and silver'), + SearchData( + -1371, 544478, 'Standing figure of Amenhotep III', 'statuette, standing king, amenhotep iii|chlorite schist|'), + SearchData(-347, 243717, 'Red jasper amulet of the sun on the horizon', + 'amulet, sun on horizon|jasper, red|gold and silver'), + SearchData(-2040, 544207, 'Sarcophagus of the Hathor Priestess Henhenet', + 'sarcophagus, henhenet|limestone, sandstone, paint|'), + SearchData(-347, 243769, 'Faience amulet in the form of a ram', 'amulet, ram|clay, glazed|gold and silver'), + SearchData(-2650, 547433, 'Copper pin?', 'cosmetic pin (?)|copper alloy|'), + SearchData(-594, 590745, 'Barque Sphinx', 'barque sphinx|leaded bronze|'), + SearchData(-2650, 547399, 'Clay jar sealing Clay jar sealing impressed with name of Khasekhemwy', + 'sealing, jar|clay (unfired)|'), + SearchData(-347, 243726, 'Jasper amulet of headrest', 'amulet, pillow charm|jasper|gold and silver'), + SearchData(1274, 444540, 'Brazier of Rasulid Sultan al-Malik al-Muzaffar Shams al-Din Yusuf ibn \'Umar', + 'brazier|brass; cast, chased, and inlaid with silver and black compound|metal'), + SearchData(-347, 243798, 'Faience Wedjat-eye amulet', 'amulet, eye, udjati|clay, glazed|gold and silver'), + SearchData(1049, 446191, 'Panel with Horse Heads', 'panel|wood (teak); carved|wood'), + SearchData(-1400, 243816, 'Mirror handle', 'handle of a mirror with lotus petals|clay, glazed|terracottas'), + SearchData(-594, 545213, 'Figure of a Baboon', 'amulet, baboon|faience|'), + SearchData(-3000, 543866, 'Libation Dish Depicting Ka-Arms Presenting an Ankh-Sign', 'dish, libation|greywacke|'), + SearchData(-167, 243747, 'Faience amulet of Mut with double crown', + 'amulet, mut with double crown|clay, glazed|gold and silver'), + SearchData(-1344, 547692, 'Head of a princess from a group statue', 'head, amarna princess|quartzite|'), + SearchData(-2639, 543939, 'Squat jar with two lugs', 'jar, squat, two lugs|probably pegmatitic quartz diorite|'), + SearchData(-347, 243770, 'Faience amulet in the form of a cat', 'amulet, cat|clay, glazed|gold and silver'), + SearchData(-2465, 551279, 'Bowl', 'bowl|red polished pottery|'), + SearchData(-2649, 543881, 'Weight equal to five deben', 'weight, 5 deben|yellow jasper or opal|'), + SearchData(-867, 544078, 'Amulet in the Form of a Lion-Headed Goddess', 'amulet, lion headed goddess|faience|'), + SearchData(-181, 544864, 'Statuette of the Goddess Taweret', 'statuette of taweret|glassy faience|'), + SearchData(-2649, 561720, 'Cylinder seal', 'cylinder seal|steatite|'), + SearchData(-234, 547773, 'Head of Ptolemy II or III', 'head, ptolemy ii or iii|black bronze|'), + SearchData(-1465, 559832, 'Scarab Inscribed King of Upper and Lower Egypt Maatkare, Having Dominion', + 'scarab; maatkare, nesut bity, wasti; detailed back|steatite (glazed)|'), + SearchData(-2650, 547400, 'Clay jar sealing Clay jar sealing impressed with name of Khasekhemwy', + 'sealing, jar|clay (unfired)|'), + SearchData(-1468, 844004, 'Fragments of a Canopic Jar Inscribed for Senimen', + 'canopic jar, senimen, fragments, qebehsenuef|pottery (marl a4), paint|'), + SearchData(-1344, 544695, 'Amarna letter: Royal Letter from Ashur-uballit, the king of Assyria, to the king of Egypt', + 'tablet, amarna letter|clay|'), + SearchData(-155, 243774, 'Faience amulet in the form of a tree frog', 'amulet, frog|faience|gold and silver'), + SearchData(-2465, 548367, 'Hand Amulet', 'amulet, hand|carnelian|'), + SearchData(-2649, 574279, 'Shell Amulet', 'amulet, shell|carnelian|'), + SearchData(149, 544919, 'Figure of Isis-Aphrodite', + 'statuette, standing goddess, isis-aphrodite|terracotta painted brown, black, red, and pink on white engobe|'), + SearchData(-2650, 547439, 'Squat jar', 'jar|magnesite|'), + SearchData(-487, 553073, 'Shabti of the Treasurer of Lower Egypt Pa-abumeh, called Psamtik-seneb', + 'shabti, pa-abu-meh, psamtik-seneb|faience|'), + SearchData(-1740, 544225, 'Group of two women and a child', 'statuette group, two women, child|limestone, paint|'), + SearchData(600, 473068, 'Necklace and Pendant Cross', 'necklace|rock crystal, silver mount|lapidary work-crystal'), + SearchData( + -2649, 565438, 'Contracted body which has been naturally mummified', 'body, mummified|human remains, linen|'), + SearchData(-589, 544884, 'Fragment of a Royal Head, Probably Apries', 'head fragment, apries|black diorite|'), + SearchData(-2575, 561157, 'Relief Depicting Personified Estates from the Tomb of Akhtihotep', + 'relief, akhtihotep|limestone, paint|'), + SearchData(-2650, 547427, 'Model chisel', 'model chisel|copper alloy|'), + SearchData(-995, 243778, 'Faience amulet', 'amulet pendant|clay, glazed|gold and silver'), + SearchData(-995, 243801, 'Faience amulet plaque of Isis nourishing a pharaoh', + 'amulet plaque, isis nourishing a king|clay, glazed|gold and silver'), + SearchData(-2458, 543936, 'Palm Column of Sahure', 'column, sahure, palm capital|granite|'), + SearchData(-1944, 544320, 'Stela of the Steward Mentuwoser', 'stela, mentuwoser|limestone, paint|'), + SearchData(-2551, 551276, 'Temple relief', 'temple relief, names of khufu|limestone|'), + SearchData(-1371, 547777, 'Male god', 'statue, god|granodiorite|'), + SearchData(-1919, 544227, 'Hippopotamus ("William")', 'figurine, hippopotamus ("william")|faience|'), + SearchData(-487, 553253, 'Shabti of the Treasurer of Lower Egypt Pa-abumeh, called Psamtik-seneb', + 'shabti, pa-abu-meh, psamtik-seneb|faience|'), + SearchData(-2465, 688030, 'Hand and Foot Amulets', 'amulet, foot|carnelian|'), + SearchData(-347, 244461, 'Bronze statuette of Isis with infant Horus', 'statuette of isis and horus|bronze|bronzes'), + SearchData(1327, 444812, 'Pair of Minbar Doors', + 'doors|wood (rosewood and mulberry); carved and inlaid with carved ivory, ebony, and other woods|wood'), + SearchData(-2650, 547428, 'Model harpoon', 'model harpoon|copper alloy|'), + SearchData(349, 464049, 'Gold Necklace with Amphora (Vase) Pendant', 'necklace|gold|metalwork-gold'), + SearchData(-1465, 549730, 'Scarab Inscribed King of Upper and Lower Egypt Maatkare, Having Dominion', + 'scarab; maatkare, nesut bity, wasti; detailed back|steatite (glazed)|'), + SearchData(450, 329841, 'Panel of Venus, “Pudica Type”', 'plaque|bone|ivories-bone'), + SearchData(-1371, 544498, 'Sphinx of Amenhotep III, possibly from a Model of a Temple', + 'sphinx, amenhotep iii|faience, remains of a travertine (egyptian alabaster) tenon|'), + SearchData(-1272, 554769, 'Stelophorous Statue of Bay', 'bay, stela, stelephorous|limestone|'), + SearchData(-1990, 544039, 'Cosmetic Vessel in the Shape of a Cat', + 'vessel, cat|travertine (egyptian alabaster), copper, quartz crystal, paint|'), + SearchData(-1919, 546275, 'Canopic Chest of Senbi', 'canopic chest, senbi|wood (ziziphus sp.), paint, string|'), + SearchData(-2649, 570914, 'Shell Amulet', 'amulet, shell|carnelian|'), + SearchData(-1891, 557549, 'Coffin of Ameny', 'coffin, ameny, rectangular|wood, paint|'), + SearchData(-3000, 544077, 'Lion Cub', 'statuette, animal, lion|quartzite|'), + SearchData(-995, 243794, 'Faience Wedjat-eye amulet', 'amulet, eye, udjati|clay, glazed|gold and silver'), + SearchData(-2650, 547425, 'Model ax-head', 'model ax head|copper alloy|'), + SearchData(1505, 24426, 'Standard Head', 'standard head|steel, iron|shafted weapons'), + SearchData(-349, 547556, 'Inlay Depicting "Horus of Gold"', 'inlay, falcon, golden horus|faience|'), + SearchData(-1342, 546194, 'Arched Harp (shoulder harp)', 'music, harp, arched, naviform, boat shaped|wood|'), + SearchData(-995, 243730, 'Faience amulet in the form of the dwarf god Pataikos', + 'amulet, ptah-seker|clay, glazed|gold and silver'), + SearchData(-300, 551285, 'Plaque Depicting a Goddess or Queen, and on Opposite Side a King', + 'sculptor\'s modeland/or votive, goddess or queen, king on other side|limestone, paint|'), + SearchData(-1468, 844005, 'Fragments of a Canopic Jar Belonging to Senimen', + 'canopic jar, senimen, fragments, imsety|pottery (marl a4), paint|'), + SearchData(-688, 243777, 'Faience ram\'s head amulet', 'amulet, ram\'s head|clay, glazed|gold and silver'), + SearchData(-1465, 559830, 'Scarab Inscribed for the King of Upper and Lower Egypt Maatkare (Hatshepsut)', + 'scarab; maatkare, nesut bity; notched back|steatite (glazed)|'), + SearchData(-487, 553074, 'Shabti of the Treasurer of Lower Egypt Pa-abumeh, called Psamtik-seneb', + 'shabti, pa-abu-meh, psamtik-seneb|faience|'), + SearchData(-1390, 548584, 'Cosmetic Spoon in the Shape of Swimming Woman Holding a Dish', + 'cosmetic spoon, swimming woman, gazelle|travertine (egyptian alabaster), steatite|'), + SearchData(-2650, 547395, 'Tweezers', 'tweezers|copper alloy|'), + SearchData(-347, 243732, 'Faience amulet in the form of the dwarf god Pataikos', + 'amulet, ptah-seker|clay, glazed|gold and silver'), + SearchData(-2557, 545777, 'Ball', 'ball|clay or mud|'), + SearchData(-347, 244464, 'Bronze portrait head of a pharaoh', 'portrait head of a pharaoh|bronze|bronzes'), + SearchData(-2465, 543928, 'Miniature "nw" pot', 'pot, "nw" pot, miniature|gneiss|'), + SearchData(-712, 587760, 'Kushite king, subsequently modified', 'statue, king|leaded bronze, gold leaf|'), + SearchData( + -1981, 546286, 'Model Broad Collar of Hapiankhtifi', 'broad collar, hapiankhtifi|faience, blue green and black|'), + SearchData(-1750, 544249, 'Model of a House', 'model, house, soul house|pottery|'), + SearchData(-350, 548439, 'Inlay Depicting a Falcon with Spread Wings', 'inlay, falcon|faience|'), + SearchData(-1371, 547775, 'Head of a Hippopotamus', + 'head, hippopotamus|travertine (egyptian alabaster) with traces of gesso and red pigment|'), + SearchData(-712, 552576, 'Funerary Cone of Mutirdis', 'cone, circular, mutirdis, divine adoratrice|pottery|'), + SearchData(1750, 31890, 'Pair of Stirrups', 'stirrups|iron, gold|equestrian equipment-stirrups'), + SearchData(-181, 544118, 'Cat Statuette intended to contain a mummified cat', 'statuette, cat|leaded bronze|'), + SearchData(-2649, 561727, 'Cylinder seal', 'cylinder seal|steatite|'), + SearchData(-1882, 544232, 'Pectoral and Necklace of Sithathoryunet with the Name of Senwosret II', + 'necklace, pectoral, sithathoryunet-view-jewelry, senwosret ii|gold, carnelian, lapis lazuli, turquoise, garnet (pectoral) gold, carnelian, lapis lazuli, turquoise, green feldspar (necklace)|'), + SearchData(-182, 250531, 'Faience statuette of Aphrodite', 'amulet, aphrodite|faience|miscellaneous-faience'), + SearchData(-1422, 555001, 'Funerary Cone of Enta', 'cone, enta, round stamp|pottery|'), + SearchData(-1344, 545756, 'Goblet Inscribed with the Names of King Amenhotep IV and Queen Nefertiti', + 'cup, amenhotep iv, nefertiti. goblet|travertine (egyptian alabaster)|'), + SearchData( + -2458, 543882, 'King Sahure Accompanied by a Divine Figure', 'statue group, king sahure, nome god|gneiss|'), + SearchData(-2465, 552614, 'Statue, young boy', 'statue, young boy|limestone|'), + SearchData(-2575, 543912, 'Corner of niche from the tomb of Akhtihotep', + 'false door niche block, akhtihotep, corner|limestone, paint|'), + SearchData(-1371, 767343, 'Document Sealing', 'sealing, amun-re, upper egypt, lower egypt|mud|'), + SearchData(-1371, 767342, 'Document Sealing', 'sealing, amun-re, upper egypt, lower egypt|mud|'), + SearchData(-1465, 547562, 'Carpenter\'s Adze from a Foundation Deposit for Hatshepsut\'s Temple', + 'adze, carpenter, hatshepsut, maatkare|wood, bronze or copper alloy, leather|'), + SearchData(-2649, 543922, 'Ewer', 'vessel, ewer|copper|'), + SearchData(-182, 250532, 'Faience statuette of Aphrodite', 'amulet, aphrodite|faience|miscellaneous-faience'), +]; diff --git a/lib/logic/data/wonders_data/search/taj_mahal_search_data.dart b/lib/logic/data/wonders_data/search/taj_mahal_search_data.dart index e4474564..c65e48b5 100644 --- a/lib/logic/data/wonders_data/search/taj_mahal_search_data.dart +++ b/lib/logic/data/wonders_data/search/taj_mahal_search_data.dart @@ -1,27 +1,23 @@ part of '../taj_mahal_data.dart'; -// Search suggestions (85) +// Search suggestions (84) List _searchSuggestions = const [ - 'bodhisattva', 'shrine', 'dagger', 'alloy', 'stone', 'sculpture', 'ink', - 'panel', 'paper', 'album', - 'schist', 'leather', 'katar', 'folio', 'textiles', 'sandstone', 'fragment', + 'semiprecious', 'coins', - 'male', - 'female', 'illustrated', 'relief', 'red', @@ -31,17 +27,14 @@ List _searchSuggestions = const [ 'black', 'wood', 'inlay', - 'single', 'paintings', 'painted', 'steel', 'manuscript', 'buddha', - 'deity', - 'cotton', 'crystal', 'metalwork', - 'carved', + 'painting', 'bowl', 'portrait', 'inlays', @@ -54,11 +47,15 @@ List _searchSuggestions = const [ 'copper', 'shah', 'brass', + 'lion', 'coin', + 'series', 'silver', 'terracotta', + 'krishna', 'king', 'opaque', + 'lakshmi', 'metal', 'iron', 'blade', @@ -66,16 +63,17 @@ List _searchSuggestions = const [ 'ivory', 'rock', 'khanjar', + 'shape', 'ruby', 'shiva', 'codices', 'nephrite', 'stele', 'ivories', - 'work', + 'ganesha', 'gold', - 'dyed', 'watercolor', + 'dyed', 'seated', 'box', 'daggers', @@ -86,1138 +84,592 @@ List _searchSuggestions = const [ 'textile', 'sheath', 'velvet', + 'pair', 'jahan', ]; -// Taj Mahal (444) +// Taj Mahal (411) List _searchData = const [ + SearchData(449, 38205, 'Standing Four-Armed Vishnu', 'figure|terracotta|sculpture'), + SearchData(1747, 65594, 'Radha and Krishna Walk in a Flowering Grove (recto); Krishna Fluting (verso)', + 'painting|ink, opaque watercolor, and gold on paper|paintings'), + SearchData(395, 39406, 'Gold Coin Showing King Chandragupta II as an Archer', 'coin|gold|jewelry'), SearchData( - 1049, 38148, 'Celestial Beauty (Surasundari)', 'figure|marble|sculpture', 'as/mobile-large/69_247.jpg', 0.44), - SearchData(1024, 38574, 'Jain Svetambara Tirthankara in Meditation', 'figure|marble|sculpture', - 'as/mobile-large/DT5161.jpg', 0.80), - SearchData(1574, 453344, 'Pierced Window Screen', 'screen|red sandstone; pierced, carved|stone', - 'is/mobile-large/DP326717.jpg', 0.74), - SearchData(150, 38752, 'Relief of a Female Deity', 'relief fragment|terracotta|sculpture', - 'as/mobile-large/33_50_16.JPG', 0.64), - SearchData(649, 38254, 'Section of a Diptych in Linga Form, Interior Depicting Shiva and Parvati', - 'portable linga section|chlorite schist|sculpture', 'as/mobile-large/DT8677.jpg', 0.80), - SearchData( - 1794, - 22871, - 'Saber with Scabbard', - 'saber with scabbard|steel, gold, silver, jade (nephrite), diamonds, emeralds, pearls|swords', - 'aa/mobile-large/DP215265.jpg', - 0.75), - SearchData(1149, 38934, 'Tara', 'figurine|bronze with silver inlay|sculpture', 'as/mobile-large/DP310497.jpg', 0.75), - SearchData(-33, 38925, 'Female Worshipper in Front of a Column Support', 'figure and column|bronze|sculpture', - 'as/mobile-large/1987_142_316.jpg', 0.42), - SearchData(0, 38074, 'Toy Model of a Cart', 'cart|terracotta|sculpture', 'as/mobile-large/1991_455_2_F.jpg', 0.82), - SearchData(1850, 31849, 'Dagger (Khanjar)', 'dagger (khanjar)|steel, jade or agate, gold|daggers', - 'aa/mobile-large/36.25.679_001june2014.jpg', 0.56), - SearchData(1850, 31840, 'Dagger', 'dagger|steel, gold, jade, ruby|daggers', - 'aa/mobile-large/36.25.669_001june2014.jpg', 0.56), - SearchData(449, 38511, 'Krishna Killing the Horse Demon Keshi', 'relief|terracotta|sculpture', - 'as/mobile-large/DT5237.jpg', 0.80), - SearchData(-100, 65011, 'The Sun God Surya(?) in His Chariot with Wives and Attendants', - 'bowl fragment|ivory|ivories', 'as/mobile-large/DP158770.jpg', 1.33), - SearchData(1621, 444865, 'Coin', 'coin|gold|coins', 'is/mobile-large/DP29.jpg', 1.00), - SearchData(1800, 24292, 'Shield (Dhàl)', 'shield (dhàl)|leather, lacquer, gold leaf, silver|shields', - 'aa/mobile-large/DP153433.jpg', 1.25), - SearchData(1183, 75201, 'Foliate Pedestal for a Buddhist Image', - 'pedestal|partially gilded brass, copper base|metalwork', 'as/mobile-large/DP208972.jpg', 0.75), - SearchData(1049, 38420, 'The God Danda and the Goddess Niksubha (Attendants of Surya, the Sun God)', - 'stele fragment|sandstone|sculpture', 'as/mobile-large/1983_553.jpg', 0.60), - SearchData(100, 38103, 'Standing Female Figure with an Offering', 'figure|gold|sculpture', - 'as/mobile-large/1987_142_309_DT8680.jpg', 0.59), - SearchData(1570, 451276, '"Portrait of Zamana Beg, Mahabat Khan", Folio from the Shah Jahan Album', - 'album leaf|ink, opaque watercolor, and gold on paper|codices', 'is/mobile-large/DP246561.jpg', 0.68), - SearchData( - 1649, 453242, 'Basin with Stylized Lotus Blossoms', 'basin|marble|stone', 'is/mobile-large/DT7746.jpg', 1.25), - SearchData( - -50, 38575, 'Plaque with a Royal Family', 'plaque|terracotta|sculpture', 'as/mobile-large/DT6881.jpg', 0.80), - SearchData(-1250, 50576, 'Ax Blade', 'ax|copper|metalwork', 'as/mobile-large/2001_433_46.JPG', 0.55), - SearchData(549, 38395, 'Head of a Male Figure', 'head|terracotta|sculpture', 'as/mobile-large/264800.jpg', 1.04), - SearchData(-50, 39320, 'One from a Pair of Ear Ornaments (Prakaravapra Kundala)', - 'earring|gold, sheet, wire and granulation|jewelry', 'as/mobile-large/DP-14791-007.jpg', 1.37), - SearchData(1640, 453253, 'Dagger with Hilt in the Form of a Blue Bull (Nilgai)', - 'dagger|hilt: nephrite blade: watered steel|stone', 'is/mobile-large/DP158315.jpg', 0.75), - SearchData(-50, 38089, 'Auspicious Emblem with Four Dancing Figures', 'rattle|terracotta|sculpture', - 'as/mobile-large/1987_142_379_O.jpg', 0.99), - SearchData(1683, 38639, 'Three Arches', 'arches|wood|sculpture', 'as/mobile-large/DP263684.jpg', 1.68), - SearchData(-50, 38549, 'Rattle in the Form of a Crouching Yaksha (Male Nature Spirit)', 'rattle|terracotta|sculpture', - 'as/mobile-large/DP-18264-001.jpg', 0.78), - SearchData( - 1749, - 448936, - 'Tent Lining Fragment', - 'fragment|cotton, silk; plain weave, embroidered, quilted|textiles-embroidered', - 'is/mobile-large/wb-33.65.9.JPG', - 0.80), - SearchData(1587, 74425, 'Ten Elements for East Window of an Architectural Ensemble from a Jain Meeting Hall', - 'architectural element|teak with traces of color|sculpture', 'as/mobile-large/hb_16.133.jpg', 0.87), - SearchData(249, 38240, 'The Conversion and Ordination of Nanda', 'relief|limestone|sculpture', - 'as/mobile-large/DP-15581-020.jpg', 7.00), - SearchData(874, 719420, 'Goddess Durga Slaying the Demon Mahisha', 'stele|schist|sculpture', - 'as/mobile-large/DP-12769-001.jpg', 0.75), - SearchData(749, 38964, 'Stupa', 'stupa|bronze|metalwork', 'as/mobile-large/1987_142_144_276_O.jpg', 0.67), - SearchData(483, 38198, 'Standing Buddha Offering Protection', 'figure|red sandstone|sculpture', - 'as/mobile-large/DT237.jpg', 0.80), - SearchData(1100, 39328, 'Shiva as Lord of Dance (Nataraja)', 'figure|copper alloy|sculpture', - 'as/mobile-large/DT240.jpg', 0.75), - SearchData(1640, 453367, 'Portrait of the Elephant \'Alam Guman', - 'illustrated album leaf|opaque watercolor and gold on paper|codices', 'is/mobile-large/DP234016.jpg', 1.42), - SearchData(1749, 666471, 'Bowl in shape of a shell', 'wine cup|jade (nephrite)|jade', - 'as/mobile-large/DP-22439-001.jpg', 1.33), - SearchData(1799, 56233, 'Box with tray', 'box with tray|jade (nephrite) with gold and stone inlays|jade', - 'as/mobile-large/DP108028.jpg', 1.06), - SearchData(610, 39142, 'Seated Buddha', 'figure|bronze with silver and copper inlay|sculpture', - 'as/mobile-large/DT5712.jpg', 0.80), - SearchData(1800, 31863, 'Dagger (Katar)', 'dagger (katar)|steel, gold|daggers', - 'aa/mobile-large/36.25.693_002june2014.jpg', 0.56), - SearchData(885, 38928, 'Enthroned Preaching Buddha', 'shrine|bronze with silver inlay|sculpture', - 'as/mobile-large/1987_142_337_F_sf.jpg', 0.75), - SearchData( - 1699, 38724, 'Fragment from a Processional Car', 'figure|wood|sculpture', 'as/mobile-large/20_52_2.JPG', 0.66), - SearchData( - 1749, 666489, 'Bowl with floral design', 'bowl|jade (nephrite)|jade', 'as/mobile-large/DP-22442-001.jpg', 1.33), + 1675, 23725, 'Priming Flask', 'priming flask|ivory, steel, pigment, resin|firearms accessories-flasks & primers'), + SearchData(150, 38509, 'Standing Indra', 'standing indra|sandstone|sculpture'), + SearchData(1850, 31689, 'Dagger (Khanjar)', 'dagger (khanjar)|steel, horn, ruby|daggers'), + SearchData(1949, 44669, 'Standing Nagini (Study Collection)', 'figure||sculpture'), + SearchData(-250, 38488, 'Disc stone', 'disc stone|steatite|stone'), + SearchData(1799, 56208, 'Box with cover', 'box|jade (nephrite)|jade'), + SearchData(1799, 56247, 'Box with cover', 'box|jade (nephrite) with gold and semiprecious stone inlays|jade'), SearchData(1149, 38143, 'Vishnu with His Mount, Garuda, His Consort, Lakshmi, and Attendants', - 'stele|black stone|sculpture', 'as/mobile-large/57_51_2.jpg', 0.50), - SearchData(1799, 56221, 'Bowl', 'bowl|jade (nephrite) with painted decoration|jade', - 'as/mobile-large/DP-14153-041.jpg', 1.33), - SearchData(199, 38739, 'Male Head', 'head|terracotta|sculpture', 'as/mobile-large/28_159_9.JPG', 0.75), + 'stele|black stone|sculpture'), SearchData( - 1587, - 452310, - 'Fragment of an Animal Carpet', - 'carpet fragment|cotton (warp and weft), wool (pile); asymmetrically knotted pile|textiles-rugs', - 'is/mobile-large/DT5457.jpg', - 1.39), - SearchData( - 1690, - 453673, - 'Nan va Halva (Breads and Sweets)', - 'illustrated manuscript|ink, opaque watercolor, and gold on paper binding: leather|codices', - 'is/mobile-large/DP235872.jpg', - 0.69), - SearchData(1615, 37855, 'Krishna\'s Parents Search for Him', 'painting|ink and opaque watercolor on paper|paintings', - 'as/mobile-large/DP156112.jpg', 1.19), - SearchData( - 633, 713007, 'Vajrapani', 'figure|gray chorite|sculpture', 'as/mobile-large/LC-2016_241_sr1-001.jpg', 0.57), - SearchData(1150, 39202, 'Standing Tara', 'figure|bronze|sculpture', 'as/mobile-large/LC-1993_524_1-001.jpg', 0.67), - SearchData( - 1712, - 448476, - '"Prince With his Courtiers and Musicians", Folio from the Davis Album', - 'illustrated album leaf|ink, opaque watercolor, and gold on paper|codices', - 'is/mobile-large/sf30-95-174-17a.jpg', - 0.65), - SearchData( - 1800, - 31401, - 'Crutch Dagger (Zafar Takieh, "Cushion of Victory") with Sheath', - 'crutch dagger (zafar takieh) with sheath|steel, silver, gold, jade, ruby, turquoise, emerald|daggers', - 'aa/mobile-large/36.25.1001ab_004july2014.jpg', - 0.56), - SearchData(149, 38729, 'Ornamental Band', 'relief|red sandstone|sculpture', 'as/mobile-large/28_147_1.JPG', 1.29), - SearchData( - 1625, - 445261, - 'Pashmina Carpet Fragment', - 'carpet fragment|silk (warp and weft), pashmina wool (pile); asymmetrically knotted pile|textiles-rugs', - 'is/mobile-large/DP229987.jpg', - 0.47), - SearchData(1400, 39227, 'Durga Mahishasura', 'figure|bronze|sculpture', 'as/mobile-large/1987_142_336.JPG', 0.66), - SearchData( - 1800, - 31847, - 'Dagger (Khanjar) with Sheath', - 'dagger (khanjar) with sheath|steel, jade, gold, turquoise, crystal, garnet, ruby, gemstone silk, silver, copper|daggers', - 'aa/mobile-large/36.25.677ab_002june2014.jpg', - 0.56), - SearchData(449, 38389, 'Plaque with Figure Holding a Sword', 'plaque|terracotta|sculpture', - 'as/mobile-large/DT6021.jpg', 0.80), - SearchData(1149, 38771, 'Relief of an Episode of Kiratarjuniya from the Mahabharata', 'relief|schist|sculpture', - 'as/mobile-large/1970_13.JPG', 2.67), - SearchData(1649, 56206, 'Dish', 'dish|nephrite, white|jade', 'as/mobile-large/02_18_758.JPG', 1.38), - SearchData(1799, 56256, 'Vase with stopper', 'vase|jade (nephrite) with gold and silver inlays|jade', - 'as/mobile-large/DP-14153-019.jpg', 0.75), - SearchData(100, 38379, 'Tree Spirit Deity (Yakshi)', 'bracket|red sandstone|sculpture', - 'as/mobile-large/DP251641.jpg', 0.75), - SearchData( - 1800, - 24297, - 'Dagger with Sheath', - 'dagger with sheath|steel, rock crystal, gold, silver, rubies, diamonds, emeralds, textile, wood|daggers', - 'aa/mobile-large/23.232.8ab_003july2014.jpg', - 0.56), - SearchData(1749, 56203, 'Wine Cup', 'wine cup|nephrite|jade', 'as/mobile-large/32833.jpg', 1.36), - SearchData(599, 38769, 'Doorframe with Three Ganas (Nature Deities) Dancing and Playing Instruments', - 'doorframe fragment|sandstone|sculpture', 'as/mobile-large/64_10.JPG', 0.57), - SearchData(599, 72605, 'Standing Goddess', 'figure|bronze|sculpture', 'as/mobile-large/DP238955.jpg', 0.75), - SearchData(1650, 453281, 'Three Ornaments from a Bridle', 'ornaments|silver; stamped, punched, gilded|metal', - 'is/mobile-large/1987.254.1-3-D.JPG', 0.54), - SearchData( - 1650, - 453642, - 'Writing Box with Lattice and Flower Design', - 'writing box|wood; overlaid with dyed wool, stamped silver and gilt-copper plaques|metal', - 'is/mobile-large/DP240984.jpg', - 1.17), - SearchData(799, 38149, 'Bust of a Female Deity', 'bust|stone|sculpture', 'as/mobile-large/1987_418_1.jpg', 0.50), - SearchData(250, 38970, 'Seated Ascetic, Deified King, Agni (The God of Fire)', 'figure|bronze|sculpture', - 'as/mobile-large/DP155519.jpg', 0.77), - SearchData(1624, 73309, 'Plate', 'plate|mother-of-pearl with copper alloy base (underside) and rim frame|shell', - 'as/mobile-large/DP138506.jpg', 1.00), - SearchData(1199, 38140, 'Tree Dryad (Shalabhanjika)', 'figure|ferruginous stone|sculpture', - 'as/mobile-large/65_108.jpg', 0.33), - SearchData(1149, 37397, 'Ganesha', 'figure|copper alloy|sculpture', 'as/mobile-large/DP148767.jpg', 0.75), - SearchData(1016, 38931, 'Crowned and Jeweled Buddha', 'shrine|bronze with silver and copper inlay|sculpture', - 'as/mobile-large/1987_142_319_O.jpg', 0.37), - SearchData(699, 38414, 'Head of a Bodhisattva', 'head|stucco on a clay core|sculpture', - 'as/mobile-large/29_11_F_sf.jpg', 1.22), - SearchData(849, 39129, 'Seated Maitreya', 'figurine|bronze|sculpture', 'as/mobile-large/1987_142_347_F.JPG', 0.80), - SearchData(949, 38259, 'Manjushri, the Bodhisattva of Transcendent Wisdom', 'figure|brass|sculpture', - 'as/mobile-large/1983_555_5.jpg', 0.59), - SearchData( - 549, 38601, 'Gaja Lakshmi, Goddess of Fortune', 'relief|stone|sculpture', 'as/mobile-large/DP253395.jpg', 0.75), - SearchData(1610, 58449, 'Krishna Dancing: Page from the Dispersed "Boston" Rasikapriya (Lover\'s Breviary)', - 'folio|ink, opaque watercolor, and gold on paper|paintings', 'as/mobile-large/DP153225.jpg', 0.63), - SearchData( - 1644, - 451288, - 'Rosette Bearing the Name and Title of Emperor Aurangzeb (Recto), from the Shah Jahan Album', - 'non-illustrated album leaf|ink, opaque watercolor, and gold on paper|codices', - 'is/mobile-large/DP247731.jpg', - 0.69), - SearchData(499, 38244, 'Tile showing a woman carrying a pot', 'tile|terracotta|sculpture', - 'as/mobile-large/1994_77.jpg', 1.23), - SearchData( - 1650, - 31861, - 'Dagger (Katar) with Sheath', - 'dagger (katar) with sheath|iron, gold, steel, diamond, velvet, wood|daggers', - 'aa/mobile-large/36.25.691ab_002june2014.jpg', - 0.56), - SearchData(1799, 56247, 'Box with cover', 'box|jade (nephrite) with gold, silver, and stone inlays|jade', - 'as/mobile-large/DP-14153-035.jpg', 1.39), - SearchData( - 1650, - 448351, - 'Joined Fragments: Velvet Panel with Rows of Flowers', - 'joined fragments|silk, cut and voided velvet, with continuous floats of metal thread|textiles-woven', - 'is/mobile-large/DP230001.jpg', - 0.46), - SearchData(1116, 39331, 'Yashoda with the Infant Krishna', 'figure|copper alloy|sculpture', - 'as/mobile-large/DT7387.jpg', 0.80), - SearchData(-100, 38737, 'Soldier', 'statuette|terracotta|sculpture', 'as/mobile-large/28_159_14.jpg', 0.46), - SearchData(1249, 38768, 'Lion', 'figure|stone|sculpture', 'as/mobile-large/60_123.JPG', 1.16), - SearchData(1799, 58448, 'Box with cover', 'box|jade (nephrite) with gold and stone inlays|jade', - 'as/mobile-large/32916.jpg', 1.27), - SearchData(274, 38238, 'Drum panel depicting a stupa with the Buddha Descent from Trayastrimsa Heaven', - 'drum slab|limestone|sculpture', 'as/mobile-large/DP-18912-001.jpg', 0.79), - SearchData(-50, 38578, 'Rattle in the Form of a Crouching Grotesque Yaksha (Male Nature Spirit)', - 'rattle|terracotta|sculpture', 'as/mobile-large/DP-14671-001.jpg', 0.71), - SearchData( - 1616, - 24907, - 'Dagger with Scabbard', - 'dagger with scabbard|steel, iron, gold, rubies, emeralds, glass, wood, textile|daggers', - 'aa/mobile-large/DP157706.jpg', - 0.72), - SearchData( - 1650, - 453330, - 'Velvet Panel with Rows of Flowers', - 'joined fragments|silk, cut and voided velvet, with continuous floats of flat metal thread|textiles-woven', - 'is/mobile-large/DP230001.jpg', - 0.46), - SearchData( - 1750, - 31570, - 'Dagger (Jambiya) with Sheath and Carrier', - 'dagger (jambiya) with sheath and carrier|steel, silver, jade, leather, wood, lacquer, velvet|daggers', - 'aa/mobile-large/36.25.980abc_007july2014.jpg', - 0.67), - SearchData(199, 38730, 'Bodhisattva and Yaksha', 'relief fragment|red sandstone|sculpture', - 'as/mobile-large/28_147_2.JPG', 1.19), - SearchData(-50, 40098, 'Plaque with Standing Yakshi', 'plaque|wood|sculpture', 'as/mobile-large/DP158749.jpg', 0.75), - SearchData(791, 38134, 'Garuda (Vishnu\'s Mount) Seated in Royal Ease', 'figure|granite|sculpture', - 'as/mobile-large/DT7595.jpg', 0.80), - SearchData( - 1700, 31838, 'Dagger', 'dagger|steel, nephrite, silver, gold|daggers', 'aa/mobile-large/DP157414.jpg', 0.75), - SearchData(1049, 38132, 'Carved Conch', 'carved conch|shell|sculpture', 'as/mobile-large/DP-17091-001.jpg', 0.75), - SearchData(1622, 444861, 'Coin with Sign of Cancer', 'coin|silver|coins', 'is/mobile-large/LC-99_35_2397.jpg', 1.00), - SearchData(1800, 200032, 'Chessmen (32)', 'chessmen|ivory with polychrome lacquer and gilding|chess sets', - 'es/mobile-large/DP-18258-011.jpg', 1.64), - SearchData( - 1597, - 446562, - '"Bahram Gur Sees a Herd of Deer Mesmerized by Dilaram\' s Music", Folio from a Khamsa (Quintet) of Amir Khusrau Dihlavi', - 'folio from an illustrated manuscript|main support: ink, opaque watercolor, and gold on paper margins: gold on dyed paper|codices', - 'is/mobile-large/DP120803.jpg', - 0.69), - SearchData(261, 38634, 'Crowned Bodhisattva', 'bust|sandstone|sculpture', 'as/mobile-large/DP701395.jpg', 0.85), - SearchData( - 1083, 75960, 'Child Saint Sambandar', 'figure|copper alloy|sculpture', 'as/mobile-large/DP234672.jpg', 0.75), - SearchData(-1250, 50588, 'Eccentric Anthropomorph', 'anthropomorph|copper|metalwork', - 'as/mobile-large/2001_433_7_O.JPG', 1.11), - SearchData(1635, 65584, 'Krishna Revels with the Gopis: Page from a Dispersed Gita Govinda (Song of the Cowherds)', - 'folio|opaque watercolor and silver on paper|paintings', 'as/mobile-large/DP152290.jpg', 0.58), - SearchData( - 1787, - 506151, - 'Vina (वीणा)', - 'vina|jackwood, gold leaf, papier-mâché, bone, steel, brass|chordophone-lute-plucked-fretted', - 'mi/mobile-large/DP-15104-001.jpg', - 1.65), - SearchData( - 899, 38136, 'Jyeshtha Flanked by Her Children', 'figures|granite|sculpture', 'as/mobile-large/DT8567.jpg', 0.80), - SearchData(1649, 646829, 'Filigree Casket with Sliding Top', 'box|silver filigree; parcel-gilt|metal', - 'is/mobile-large/DP340529.jpg', 0.78), - SearchData(1699, 447086, 'Finial in the Form of a Parrot', 'finial|brass|metal', 'is/mobile-large/DT4880.jpg', 1.25), - SearchData(1749, 56211, 'Bowl in the shape of a chrysanthemum flower', 'bowl|jade (nephrite)|jade', - 'as/mobile-large/DP108021.jpg', 1.50), - SearchData(1800, 31687, 'Dagger (Khanjar)', 'dagger (khanjar)|steel, jade|daggers', - 'aa/mobile-large/36.25.707_001june2014.jpg', 0.56), - SearchData(1800, 31467, 'Dagger (Katar)', 'dagger (katar)|steel, gold|daggers', - 'aa/mobile-large/36.25.1071_001july2014.jpg', 0.56), - SearchData(1949, 44670, 'Head of a Male Deity (Study Collection)', 'head|stone|sculpture', - 'as/mobile-large/1991_453_3.JPG', 0.60), - SearchData( - -1250, 50610, 'Antennae Sword', 'antennae sword|copper|metalwork', 'as/mobile-large/2001_433_50_O.JPG', 0.27), - SearchData(1750, 24423, 'Ceremonial Mace', 'ceremonial mace|rock crystal, gold, copper alloy, ruby|shafted weapons', - 'aa/mobile-large/DP163751.jpg', 0.80), - SearchData(649, 38250, 'Linga with Face of Shiva (Ekamukhalinga)', 'linga|stone|sculpture', - 'as/mobile-large/DT6118.jpg', 0.80), - SearchData(1700, 453339, 'Elephant Goad', 'elephant goad|steel or iron, inlaid with gold and silver|metal', - 'is/mobile-large/DP231148.jpg', 0.75), - SearchData(787, 38515, 'Vaikuntha Vishnu', 'figure|stone|sculpture', 'as/mobile-large/DT5253.jpg', 0.80), - SearchData( - 1779, - 456949, - 'Great Indian Fruit Bat', - 'illustrated single work|pencil, ink, and opaque watercolor on paper|paintings', - 'is/mobile-large/DP167067.jpg', - 1.36), - SearchData(849, 38128, 'Sealing Depicting the Buddha at the Mahabodhi Temple, Bodhgaya', - 'sealing|terracotta|sculpture', 'as/mobile-large/33_50_10_F_sf.jpg', 0.98), - SearchData(1577, 451280, '"Portrait of Ibrahim \'Adil Shah II of Bijapur", Folio from the Shah Jahan Album', - 'album leaf|ink, opaque watercolor, and gold on paper|codices', 'is/mobile-large/DP159395.jpg', 0.73), - SearchData(-50, 40101, 'Plaque with Erotic Scene', 'plaque|bone|sculpture', 'as/mobile-large/1999_226_1.jpg', 1.08), - SearchData( - 1750, - 24208, - 'Arm Guard (Dastana)', - 'arm guard (dastana)|steel, gold, textile (velvet), textile (silk), textile (linen), copper alloy|armor parts', - 'aa/mobile-large/DP-651-001.jpg', - 1.08), - SearchData(1799, 74696, 'Design of Intertwining Animals and Plants', - 'painting|ink, opaque and translucent watercolor on paper|paintings', 'as/mobile-large/DP166103.jpg', 1.58), - SearchData(-50, 38473, 'Rattle in the Form of a Crouching Yaksha (Male Nature Spirit)', 'rattle|terracotta|sculpture', - 'as/mobile-large/DP-18263-001.jpg', 0.91), - SearchData( - -94, 38612, 'Dish with a Bee Pollinating a Lotus', 'dish|ceramic|ceramics', 'as/mobile-large/1993_371.jpg', 1.00), - SearchData(1837, 781965, 'Album of Hindu deities', 'album|watercolor, ink, and gold on paper|manuscripts', - 'as/mobile-large/LC-TR_100ai_2018_012_crd.jpg', 0.73), - SearchData(674, 38125, 'Vishnu', 'figure|stone|sculpture', 'as/mobile-large/DT7427.jpg', 0.80), - SearchData(1578, 451281, '"Portrait of Mulla Muhammad Khan Vali of Bijapur", Folio from the Shah Jahan Album', - 'album leaf|ink, opaque watercolor, and gold on paper|codices', 'is/mobile-large/DP247726.jpg', 0.67), - SearchData(649, 37533, 'Varuna Holding a Noose and Riding a Swan', 'figure|sandstone|sculpture', - 'as/mobile-large/19_90.JPG', 0.89), - SearchData(1580, 451268, '"Akbar With Lion and Calf", Folio from the Shah Jahan Album', - 'album leaf|ink, opaque watercolor, and gold on paper|codices', 'is/mobile-large/DT200627.jpg', 0.66), - SearchData(449, 38512, 'Rondel with a Racing Male Deity Cradling His Consort (Probably Shiva and Parvati)', - 'rondel|terracotta|sculpture', 'as/mobile-large/1991_263.jpg', 0.98), - SearchData(-1875, 39126, 'Woman Riding Two Brahman Bulls', 'sculpture|bronze|sculpture', - 'as/mobile-large/DP702288.jpg', 0.75), - SearchData(1649, 56232, 'Box with Cover', 'box with cover|nephrite, gray with faint greenish tint|jade', - 'as/mobile-large/32914.jpg', 1.32), - SearchData(449, 38392, 'Head Fragment from a Plaque', 'head fragment|terracotta|sculpture', - 'as/mobile-large/1987_424_24.jpg', 0.86), - SearchData(1850, 24006, 'Shirt and Leg Defenses of Mail', 'shirt and leg defenses of mail|iron, brass|mail', - 'aa/mobile-large/DP147307.jpg', 1.00), - SearchData( - 1597, - 446567, - '"The Story of the Princess of the Blue Pavillion: The Youth of Rum Is Entertained in a Garden by a Fairy and her Maidens", Folio from a Khamsa (Quintet) of Amir Khusrau Dihlavi', - 'folio from an illustrated manuscript|ink, opaque watercolor, and gold on paper|codices', - 'is/mobile-large/DP120808.jpg', - 0.68), - SearchData(-1250, 50637, 'Ax Blade', 'ax|copper|metalwork', 'as/mobile-large/2001_433_35.jpg', 0.50), - SearchData(1799, 56231, 'Jar with cover', 'jar with cover|jade (nephrite) with gold and stone inlays|jade', - 'as/mobile-large/DP108027.jpg', 1.00), - SearchData( - 1837, - 24483, - 'Flintlock Gun', - 'flintlock gun|steel, ebony, gold, enamel, rubies, emeralds, textile|firearms-guns-flintlock', - 'aa/mobile-large/DP166296.jpg', - 2.68), - SearchData( - 1850, - 31851, - 'Dagger (Khanjar) with Sheath', - 'dagger (khanjar) with sheath|steel, jade, gold, velvet, pearl, turquoise, wood|daggers', - 'aa/mobile-large/36.25.681ab_002june2014.jpg', - 0.56), - SearchData(1799, 56254, 'Buckle', 'buckle|jade (nephrite) with gold and stone inlays|jade', - 'as/mobile-large/DP108038.jpg', 1.27), - SearchData(1650, 24306, 'Dagger (Katar) and Sheath', 'dagger (katar) and sheath|steel, leather, gold|daggers', - 'aa/mobile-large/DP158187.jpg', 1.62), - SearchData(1949, 38773, 'Head of a Buddha (Study Collection)', 'figure|stone|sculpture', - 'as/mobile-large/1991_381_12.JPG', 0.70), - SearchData(250, 38241, 'Naga Attendant Holding a Fly Whisk', 'relief|limestone|tablets and plaques', - 'as/mobile-large/DP-18916-001.jpg', 0.30), - SearchData(-1250, 50630, 'Ax Blade (Celt)', 'ax blade|copper|metalwork', 'as/mobile-large/2001_433_20_O.JPG', 0.75), - SearchData( - 1049, 38142, 'Celestial Musician (Gandharva)', 'figure|slate|sculpture', 'as/mobile-large/DP206242.jpg', 0.75), - SearchData(-50, 38468, 'Yaksha', 'yaksha|sandstone|sculpture', 'as/mobile-large/DP-18910-001.jpg', 0.70), - SearchData(435, 39405, 'Gold Coin Showing King Kumaragupta as an Archer', 'coin|gold|metalwork', - 'as/mobile-large/1990_319_1.jpg', 1.03), - SearchData(774, 38598, 'Kamadeva, the God of Love', 'bust|stone|sculpture', 'as/mobile-large/DP130033.jpg', 0.75), - SearchData(1799, 56225, 'Bracelet', 'bracelet|jade (nephrite) with gold, enamel, and stone inlays|jade', - 'as/mobile-large/DP108025.jpg', 1.22), - SearchData( - 1850, - 31831, - 'Dagger (Khanjar)', - 'dagger (khanjar)|steel, jade, gold, ruby, emerald, beryl, rock crystal, turquoise|daggers', - 'aa/mobile-large/36.25.658_001june2014.jpg', - 0.56), - SearchData(438, 39892, 'Nagini (Serpent Queen or Consort of Nagaraja)', 'figure|stone|sculpture', - 'as/mobile-large/DT5825.jpg', 0.80), - SearchData(1798, 1986, 'Chess set', 'chess set|lacquered wood, ivory|', 'ad/mobile-large/138425.jpg', 1.66), - SearchData(199, 38736, 'Bust of a Woman', 'bust|terracotta|sculpture', 'as/mobile-large/28_159_13.JPG', 0.71), - SearchData(499, 38197, 'Tile with Impressed Figures of Emaciated Ascetics and Couples behind Balconies and Ganders', - 'tile|terracotta|sculpture', 'as/mobile-large/1995_570_6.JPG', 0.64), - SearchData(1800, 31441, 'Knife with Sheath', 'knife with sheath|steel, jade, silver, emerald, ruby, gold|knives', - 'aa/mobile-large/36.25.1045ab_002july2014.jpg', 0.56), - SearchData(1949, 44672, 'Woman with a Parrot (Study Collection)', 'relief fragment|stone|sculpture', - 'as/mobile-large/1991_453_5.JPG', 0.88), - SearchData(1750, 31714, 'Crutch Dagger (Zafar Takieh, "Cushion of Victory")', 'crutch dagger|jade, steel|daggers', - 'aa/mobile-large/36.25.734_005june2014.jpg', 0.56), - SearchData(1049, 38123, 'Buddha Preaching the First Sermon at Sarnath', 'figure|black stone|sculpture', - 'as/mobile-large/4 DP314867r4_61A.jpg', 0.75), - SearchData(1850, 31828, 'Dagger', 'dagger|steel, rock crystal, gold, ruby, emerald|daggers', - 'aa/mobile-large/36.25.655_001june2014.jpg', 0.56), - SearchData(1624, 444867, 'Coin with Sign of Leo', 'coin|gold|coins', 'is/mobile-large/DP33.jpg', 1.00), - SearchData(1725, 27218, 'Shield', 'shield|wood, leather, lacquer, gold, pigment, gesso, copper alloy, iron|shields', - 'aa/mobile-large/sfsb14.25.728_001.jpg', 1.00), - SearchData(50, 73258, 'Jewelry Mold with Figures in a Temple', 'jewelry mold|argillite|sculpture', - 'as/mobile-large/DP143664.jpg', 1.33), - SearchData(449, 38533, 'Head of a Buddha', 'figure|stone|sculpture', 'as/mobile-large/DP145451.jpg', 1.00), - SearchData( - 1649, - 448241, - 'Panel from a Tent Lining', - 'fragment of a tent lining|cotton; plain weave, mordant painted and dyed, resist dyed|textiles-painted and/or printed', - 'is/mobile-large/ad-29.68.2.JPG', - 0.75), - SearchData(1570, 451266, '"A Youth Fallen From a Tree", Folio from the Shah Jahan Album', - 'album leaf|ink, opaque watercolor, and gold on paper|codices', 'is/mobile-large/DP240815.jpg', 0.67), - SearchData(1800, 31836, 'Dagger', 'dagger|steel, jade, gold, diamond, emerald, ruby, agate|daggers', - 'aa/mobile-large/36.25.664_001june2014.jpg', 0.56), - SearchData( - 1762, - 688478, - 'Casket', - 'casket|ebony and engraved ivory, tortoiseshell; mirror glass; silver hardware; brass feet; iron lock|natural substances-ivory', - 'es/mobile-large/DP-12252-017.jpg', - 1.29), + 849, 38128, 'Sealing Depicting the Buddha at the Mahabodhi Temple, Bodhgaya', 'sealing|terracotta|sculpture'), + SearchData(1749, 56218, 'Dish in the shape of a chrysanthemum flower', 'dish|jade (nephrite)|jade'), + SearchData(1749, 448936, 'Tent Lining Fragment', + 'textile fragment|cotton, silk; plain weave, embroidered, quilted|textiles-embroidered'), + SearchData(1845, 61429, 'Maharana Sarup Singh Inspects a Prize Stallion', + 'painting|opaque watercolor, ink, and gold on paper|paintings'), + SearchData(-100, 38087, 'Plaque with Goddess and Attendant', 'plaque|terracotta|sculpture'), + SearchData(1749, 72571, 'Ganesha Leads Shiva and Durga in Procession', + 'painting|ink and opaque watercolor on paper|paintings'), + SearchData(1149, 39193, 'Jain Digambara Tirthanhara Standing in Kayotsarga Meditation Posture', + 'figure|copper alloy|sculpture'), SearchData(1799, 56234, 'Sword handle in the shape of a horse’s head', - 'sword handle|jade (nephrite) with gold and stone inlays|jade', 'as/mobile-large/DP108029.jpg', 1.00), - SearchData(1618, 444866, 'Coin', 'coin|gold|coins', 'is/mobile-large/DP31.jpg', 1.00), - SearchData(1700, 31865, 'Dagger (Katar) with Sheath', 'dagger (katar) with sheath|steel, gold, velvet, wood|daggers', - 'aa/mobile-large/36.25.697ab_002june2014.jpg', 0.56), - SearchData(799, 38247, 'Vishnu Rescuing Gajendra, the Lord of the Elephants', 'stele|stone|sculpture', - 'as/mobile-large/1986_306.jpg', 0.82), - SearchData(199, 38599, 'Architectural Frieze with Merman Playing Musical Instruments', - 'architectural frieze|red sandstone|sculpture', 'as/mobile-large/1993_192ab_O.jpg', 7.54), - SearchData( - 1680, - 453183, - 'The House of Bijapur', - 'illustrated album leaf|ink, opaque watercolor, gold, and silver on paper|codices', - 'is/mobile-large/DP231353.jpg', - 0.76), - SearchData(1749, 856419, 'Processional image of the goddess Gauri', - 'head|brass with glass inlay and silver attachments|sculpture', 'as/mobile-large/DP-23603-002.jpg', 0.75), - SearchData(1674, 457020, 'Pair of Flower Style Doors', 'pair of doors|wood; carved with residues of paint|wood', - 'is/mobile-large/DP230666.jpg', 0.53), - SearchData( - 1600, - 453366, - 'Bidri Box for Holding Pan', - 'box|zinc alloy; cast, engraved, inlaid with silver and brass (bidri ware)|metal', - 'is/mobile-large/DP221344.jpg', - 0.75), - SearchData(1449, 39263, 'Seated Jain Tirthankara', 'figure|bronze|sculpture', 'as/mobile-large/DP124075.jpg', 1.00), - SearchData(-1250, 50595, 'Harpoon', 'harpoon|copper|metalwork', 'as/mobile-large/2001_433_72_O.JPG', 0.39), - SearchData(1799, 56226, 'Bracelet (one of a pair)', - 'bracelet|jade (nephrite) with gold, enamel, and stone inlays|jade', 'as/mobile-large/DP108025.jpg', 1.22), - SearchData(-50, 38092, 'Plaque with a Dancer and a Vina Player', 'plaque|terracotta|sculpture', - 'as/mobile-large/DT8684.jpg', 0.80), - SearchData( - 1550, 679021, 'Elephant Sword', 'elephant sword|iron or steel|swords', 'aa/mobile-large/DP350518.jpg', 1.71), - SearchData(1687, 453214, 'Painted and Inlaid Game Board', - 'game board|wood; painted, varnished and gilded; with metal hinges|wood', 'is/mobile-large/DP303328.jpg', 1.15), - SearchData(1875, 501899, 'Karnā (Trumpet)', 'karnā (trumpet)|brass|aerophone-lip vibrated-trumpet / trombone', - 'mi/mobile-large/DP-12679-025.jpg', 1.84), - SearchData(549, 38202, 'Standing Male Deity (possibly Shiva)', 'figure|stone|sculpture', - 'as/mobile-large/1993_477_4.jpg', 0.44), - SearchData(549, 38453, 'Standing Jain Tirthankara Parshvanatha', 'figure|sandstone|sculpture', - 'as/mobile-large/CT_35465.jpg', 0.51), - SearchData(249, 37640, 'Yakshi', 'statuette|brown sandstone|sculpture', 'as/mobile-large/33_50_1.JPG', 0.62), - SearchData(749, 39342, 'The Bodhisattva Vajrasattva', 'figure|brass with silver inlay|sculpture', - 'as/mobile-large/DP130035.jpg', 0.75), - SearchData(499, 38393, 'Lion Standing on a Pillar Capital', 'capital|terracotta|sculpture', - 'as/mobile-large/28_159_7.jpg', 0.51), - SearchData(699, 38412, 'Head of a Bodhisattva', 'head|stucco on a clay core|sculpture', - 'as/mobile-large/33_50_3_F_sf.jpg', 1.23), - SearchData(-100, 65010, 'The Moon God Chandra(?) in His Chariot with Wife and Attendant', - 'bowl fragment|ivory|ivories', 'as/mobile-large/DP110808.jpg', 1.20), - SearchData(749, 38514, 'The Brahmanical Triad: Brahma, Shiva, Vishnu', 'group|stone|sculpture', - 'as/mobile-large/1985_85_O.jpg', 1.06), - SearchData(1150, 38563, 'Twelve-Armed Chakrasamvara and His Consort Vajravarahi', 'figure|phyllite|sculpture', - 'as/mobile-large/39 DP310521R1_61D.jpg', 0.75), - SearchData( - 849, 38387, 'Seated Kubera (Study Collection)', 'figure|stone|sculpture', 'as/mobile-large/1984_318.JPG', 0.70), - SearchData(1599, 447796, 'Royal Horse and Runner', - 'illustrated album leaf|ink, opaque watercolor, and gold on paper|codices', 'is/mobile-large/DT4799.jpg', 1.51), - SearchData( - 1649, - 453276, - '"The Battle of Shahbarghan", Folio from a Padshahnama (Chronicle of the Emperor)', - 'folio from an illustrated manuscript|ink, opaque watercolor, and gold on paper|codices', - 'is/mobile-large/DT8442.jpg', - 0.68), - SearchData(0, 40097, 'Plaque with a Winged Goddess and Two Attendants', 'plaque|ivory|ivories', - 'as/mobile-large/2004_553_2.JPG', 0.77), - SearchData( - 0, 38518, 'Goddess and Attendants', 'plaque|terracotta|sculpture', 'as/mobile-large/h1_1990.281.jpg', 0.81), - SearchData(1649, 56209, 'Shallow Bowl', 'bowl|nephrite, very light opalescent yellowish-gray|jade', - 'as/mobile-large/02_18_761.JPG', 1.54), - SearchData( - 1850, - 31444, - 'Dagger with Sheath', - 'dagger with sheath|steel, jade, silver, gold, leather, wood, coral, turquoise|daggers', - 'aa/mobile-large/36.25.1048ab_002july2014.jpg', - 0.56), - SearchData(1099, 38139, 'Preening Celestial Deity', 'figure|ferruginous stone|sculpture', - 'as/mobile-large/264792.jpg', 0.34), - SearchData(1632, 35633, 'Shirt of Mail and Plate of Emperor Shah Jahan (reigned 1624-58)', - 'shirt of mail and plate|steel, iron, gold, leather|mail', 'aa/mobile-large/DP219616.jpg', 0.75), - SearchData(699, 37413, 'Panel from a Portable Shrine: The Descent of the Buddha from Trayastrimsha Heaven', - 'portable shrine panel|ivory with traces of color|ivories', 'as/mobile-large/DP267829.jpg', 0.75), - SearchData(1800, 64852, 'Royal Lovers in a Landscape Setting', - 'album leaf|leaf from an album; ink, colors and gold on paper|paintings', 'as/mobile-large/64_167_15.jpg', 0.68), - SearchData(949, 38743, 'Head of a Female', 'head|red sandstone|sculpture', 'as/mobile-large/33_50_4.JPG', 0.83), - SearchData(438, 38196, 'Nagaraja (Serpent King)', 'figure|stone|sculpture', 'as/mobile-large/1987_415_1.jpg', 0.57), - SearchData(1800, 31428, 'Dagger with Sheath', 'dagger with sheath|steel, jade, leather, wood|daggers', - 'aa/mobile-large/36.25.1031ab_003july2014.jpg', 0.56), - SearchData( - 1849, - 500709, - 'Taūs (mayuri)', - 'taūs (mayuri)|wood, parchment, metal, feathers|chordophone-lute-bowed-fretted', - 'mi/mobile-large/MI89.4.163.jpg', - 1.51), - SearchData( - 1850, - 31691, - 'Dagger (Jambiya) with Sheath', - 'dagger (jambiya) with sheath|steel, marble, gold, silver, silk, wood|daggers', - 'aa/mobile-large/36.25.711ab_002june2014.jpg', - 0.56), - SearchData( - 1675, - 23725, - 'Priming Flask', - 'priming flask|ivory, steel, pigment, resin|firearms accessories-flasks & primers', - 'aa/mobile-large/DP158306.jpg', - 1.58), - SearchData(1650, 31845, 'Dagger (Khanjar)', 'dagger (khanjar)|steel, ivory (elephant), gemstone, gold|daggers', - 'aa/mobile-large/36.25.675_001june2014.jpg', 0.56), - SearchData(1778, 22848, 'Cuirass', 'cuirass|steel, iron, textile (velvet)|armor parts-cuirasses', - 'aa/mobile-large/DP219403.jpg', 0.79), - SearchData(899, 38435, 'Diadem with Kinnaris (Half-Bird, Half-Female Creatures)', - 'diadem|gold inset with garnet|jewelry', 'as/mobile-large/DP-14791-023.jpg', 1.80), - SearchData( - 1687, - 453243, - 'Base for a Water Pipe (Huqqa) with Irises', - 'water pipe base|zinc alloy; cast, engraved, inlaid with brass (bidri ware)|metal', - 'is/mobile-large/DP214317.jpg', - 0.75), - SearchData(1016, 39327, 'Shiva, Uma, and Their Son Skanda (Somaskandamurti)', 'figure|copper alloy|sculpture', - 'as/mobile-large/DT7390.jpg', 1.25), - SearchData(849, 38256, 'Shiva and Parvati with their Sons Karttikeya and Ganesha and the Calf Bull', - 'figure|stone|sculpture', 'as/mobile-large/DT6248.jpg', 0.80), - SearchData(1799, 56223, 'Oval box with cover', 'box|jade (nephrite) with gold and stone inlays|jade', - 'as/mobile-large/DP108024.jpg', 1.19), - SearchData(395, 39406, 'Gold Coin Showing King Chandragupta II as an Archer', 'coin|gold|jewelry', - 'as/mobile-large/1990_319_2.jpg', 1.07), - SearchData( - 649, 78910, 'Lakshmi, Goddess of Prosperity', 'figure|brass|sculpture', 'as/mobile-large/DP326749.jpg', 0.75), - SearchData(150, 38758, 'Lamp', 'lamp|stone|sculpture', 'as/mobile-large/33_50_22.JPG', 1.47), - SearchData(199, 38738, 'Head with Hat', 'head|terracotta|sculpture', 'as/mobile-large/28_162_2.JPG', 0.57), - SearchData(749, 39341, 'Karttikeya, the God of War', 'figure|brass with silver inlay|sculpture', - 'as/mobile-large/DP702274.jpg', 0.69), - SearchData(1875, 500736, 'Ghanti (bell)', 'ghanti (bell)|brass|idiophone-struck-bell-clapper', - 'mi/mobile-large/mi89.4.154.R.jpg', 0.66), - SearchData( - 1749, 56237, 'Dish', 'dish|jade (nephrite) with silver inlays|jade', 'as/mobile-large/02_18_780.JPG', 1.68), - SearchData( - 1725, - 454013, - 'Footed Bowl and Plate', - 'bowl and dish|glass, opalescent white; blown, bowl with applied stem and blown applied foot, fired silver and gold decoration|glass', - 'is/mobile-large/DT4697.jpg', - 1.25), - SearchData(250, 38754, 'Relief of a Female Deity', 'relief fragment|terracotta|sculpture', - 'as/mobile-large/33_50_18.JPG', 0.69), - SearchData(950, 38929, 'Seated Tara', 'figure|bronze|sculpture', 'as/mobile-large/1987_142_343.JPG', 0.68), - SearchData(499, 53472, 'Bust of Vishnu', 'bust|terracotta|sculpture', 'as/mobile-large/2000_82.jpg', 0.65), - SearchData(300, 49817, 'Box Lid with Incised Figural Decoration', 'box lid|ivory|ivories', - 'as/mobile-large/DT4347.jpg', 1.25), - SearchData(999, 38260, 'Shrine Relief Fragment Depicting Ashtamahabhaya Tara, the Buddhist Savioress', - 'fragment|wood|sculpture', 'as/mobile-large/30 DP130034R1_61C.jpg', 0.56), - SearchData( - 1612, 453261, 'Pierced Window Screen (Jali)', 'screen|marble|stone', 'is/mobile-large/DP-19479-001.jpg', 0.63), - SearchData(1049, 38146, 'Vishnu', 'stele|sandstone|sculpture', 'as/mobile-large/DT5052.jpg', 0.79), - SearchData(1149, 39251, 'Yoga Narasimha, Vishnu\'s Man-Lion Incarnation', 'figure|copper alloy|sculpture', - 'as/mobile-large/DP237096.jpg', 0.75), - SearchData(1800, 24793, 'Cuirass (Char-aina)', 'cuirass (char-aina)|steel, gold, textile|armor parts-cuirasses', - 'aa/mobile-large/DP151798.jpg', 1.00), - SearchData(1049, 38945, 'Hanuman Conversing', 'figure|copper alloy|sculpture', 'as/mobile-large/DT5250.jpg', 0.80), - SearchData(1250, 38947, 'Standing Shiva', 'figure|bronze|sculpture', 'as/mobile-large/1979_508.jpg', 0.64), - SearchData( - 1050, 38153, 'Celestial dancer (Devata)', 'figure|sandstone|sculpture', 'as/mobile-large/DP-1062-001.jpg', 0.83), - SearchData( - 1849, - 503672, - 'Śankh', - 'śankh|shell (turbinella pyrum), brass, wax|aerophone-lip vibrated-trumpet / trombone', - 'mi/mobile-large/DP353270.jpg', - 1.33), - SearchData( - 1750, 31726, 'Dagger (Katar)', 'dagger (katar)|steel|daggers', 'aa/mobile-large/36.25.746_003june2014.jpg', 0.56), - SearchData(1750, 24301, 'Dagger (Katar)', 'dagger (katar)|steel, gold|daggers', - 'aa/mobile-large/36.25.696_002july2014.jpg', 0.56), - SearchData(1649, 56205, 'Bowl', 'bowl|jade|jade', 'as/mobile-large/193272.jpg', 1.35), - SearchData(1587, 39317, 'Architectural Ensemble from a Jain Meeting Hall', - 'architectural ensemble|teak with traces of color|sculpture', 'as/mobile-large/DT5057.jpg', 1.25), + 'sword handle|jade (nephrite) with gold and semiprecious stone inlays|jade'), + SearchData(1635, 65584, 'Krishna Revels with the Gopis: Page from a Dispersed Gita Govinda (Song of the Cowherds)', + 'folio|opaque watercolor and silver on paper|paintings'), + SearchData(1725, 454013, 'Footed Bowl and Plate', + 'bowl and dish|glass, opalescent white; blown, bowl with applied stem and blown applied foot, fired silver and gold decoration|glass'), + SearchData(1585, 453259, 'Lion at Rest', + 'illustrated single work|ink, opaque watercolor, silver, and gold on paper|codices'), + SearchData(1587, 458378, '"Three Trees of India", Folio from a Baburnama (Autobiography of Babur)', + 'folio from an illustrated manuscript|ink, opaque watercolor, and gold on paper|codices'), + SearchData(0, 49910, 'Plaque with the Goddess Durga Standing on a Lotus', 'plaque|wood|sculpture'), + SearchData(1700, 454738, 'Goa Stone and Gold Case', + 'goa stone and container|container: gold; pierced, repoussé, with cast legs and finials goa stone: compound of organic and inorganic materials|metal'), + SearchData(1587, 74425, 'Ten Elements for East Window of an Architectural Ensemble from a Jain Meeting Hall', + 'architectural element|teak with traces of color|sculpture'), SearchData( 1597, 446563, '"A Muslim Pilgrim Learns a Lesson in Piety from a Brahman", Folio from a Khamsa (Quintet) of Amir Khusrau Dihlavi', - 'folio from an illustrated manuscript|image: ink, opaque watercolor, and gold on paper margins: gold on dyed paper|codices', - 'is/mobile-large/DP159383.jpg', - 0.84), - SearchData(0, 38364, 'Two Lotuses, from the Bharhut Stupa', 'architectural relief|red sandstone|sculpture', - 'as/mobile-large/DP-15581-042.jpg', 1.45), - SearchData(0, 49910, 'Plaque with the Goddess Durga Standing on a Lotus', 'plaque|wood|sculpture', - 'as/mobile-large/2004_553_1.JPG', 0.32), - SearchData(1099, 37531, 'Stupa', 'stupa|bronze|metalwork', 'as/mobile-large/264772_3.jpg', 0.59), - SearchData(699, 38413, 'Head of a Bodhisattva', 'head|stucco on a clay core|sculpture', - 'as/mobile-large/33_50_5_F_sf.jpg', 1.15), - SearchData( - -249, 38363, 'Shard with Three Goddesses', 'shard|terracotta|sculpture', 'as/mobile-large/264805.jpg', 0.89), - SearchData(1462, 452780, 'Fragment of a Cornice with a Frieze of Masks', 'fragment of a cornice|sandstone|stone', - 'is/mobile-large/sf1975-197a.jpg', 2.69), - SearchData(1800, 24008, 'Armor of Mail and Plate', - 'armor of mail and plate|steel, iron, copper alloy, textile|armor for man', 'aa/mobile-large/DP151779.jpg', 0.92), - SearchData( - 1800, - 31823, - 'Dagger (Pesh-kabz) with Sheath', - 'dagger (pesh-kabz) with sheath|steel, rock crystal, silver, enamel, velvet, wood|daggers', - 'aa/mobile-large/36.25.650ab_006june2014.jpg', - 0.56), - SearchData(-1250, 50598, 'Harpoon', 'harpoon|copper|metalwork', 'as/mobile-large/2001_433_61_O.JPG', 0.46), - SearchData( - 1612, - 457019, - 'Engraved Bowl', - 'bowl|copper; cast, engraved, tinned, and inlaid with a black compound|metal', - 'is/mobile-large/DP246498.jpg', - 0.85), - SearchData( - 1649, - 446991, - 'Pen Box with Flowers, Birds and Animals', - 'pen box|ivory; carved, incised, and inlaid with black lacquer and gold|ivories and bone', - 'is/mobile-large/sf17-190-819a.jpg', - 4.05), - SearchData(1749, 39450, 'Guardian (Ainar)', 'portable idol|brass|sculpture', 'as/mobile-large/19_135_27.JPG', 0.69), - SearchData(149, 38740, 'Head of Buddha', 'head|stone|sculpture', 'as/mobile-large/29_68_1.JPG', 0.64), - SearchData(1949, 38543, 'Standing Nagaraja (Study Collection)', 'figure|stone|sculpture', - 'as/mobile-large/1991_453_1.JPG', 0.58), - SearchData( - 1750, - 31827, - 'Dagger with Sheath', - 'dagger with sheath|steel, gold, jade, beryl, ruby, emerald, topaz, silver, pearl, wood, velvet|daggers', - 'aa/mobile-large/36.25.654ab_002june2014.jpg', - 0.56), - SearchData(-49, 38091, 'Figures Riding an Elephant', 'figure|terracotta|sculpture', - 'as/mobile-large/1987_142_378_F.jpg', 0.80), - SearchData(1750, 31824, 'Dagger', 'dagger|steel, nephrite, gold, ruby|daggers', - 'aa/mobile-large/36.25.651_001june2014.jpg', 0.56), - SearchData(1827, 31466, 'Dagger (Katar) with Sheath', 'dagger (katar) with sheath|steel, gold, skin, silver|daggers', - 'aa/mobile-large/36.25.1070ab_002july2014.jpg', 0.56), - SearchData( - 1675, - 30360, - 'Priming Flask', - 'priming flask|ivory, iron, copper alloy|firearms accessories-flasks & primers', - 'aa/mobile-large/36.25.2419_001AA2016.jpg', - 1.78), - SearchData( - 1249, 38141, 'Loving Couple (Mithuna)', 'relief|ferruginous stone|sculpture', 'as/mobile-large/DT241.jpg', 0.80), - SearchData(1800, 24319, 'Saber', 'saber|steel, jade (nephrite), gold|swords', 'aa/mobile-large/DP163330.jpg', 0.75), - SearchData( - 1725, - 31505, - 'Punch Dagger (Katar) with Sheath', - 'punch dagger (katar) with sheath|steel, iron, silver, gold, rubies|daggers', - 'aa/mobile-large/DP157417.jpg', - 1.72), - SearchData(450, 38200, 'Standing Balarama or Nagaraja (Serpent King)', 'figure|red sandstone|sculpture', - 'as/mobile-large/1991_83_2_O.jpg', 0.50), - SearchData(1799, 56224, 'Sword handle', 'sword handle|jade (nephrite) with gold and stone inlays|jade', - 'as/mobile-large/99832.jpg', 0.72), - SearchData(483, 54489, 'Mask of Vaikuntha Vishnu', 'mask|bronze|sculpture', 'as/mobile-large/DP141923.jpg', 0.82), - SearchData( - 749, 38253, 'Gaja Lakshmi, Goddess of Fortune', 'relief|stone|sculpture', 'as/mobile-large/250880.jpg', 0.80), - SearchData(1099, 38131, 'Carved Conch with Lakshmi-Narayana', 'conch|shell with silver additions|shell', - 'as/mobile-large/DP-17092-001.jpg', 0.75), - SearchData(912, 39325, 'Standing Parvati', 'figure|copper alloy|metalwork', 'as/mobile-large/DT239.jpg', 0.75), - SearchData(-1250, 50627, 'Ax with Punch Marks', 'ax|copper|metalwork', 'as/mobile-large/2001_433_23.jpg', 0.66), - SearchData(600, 38965, 'Buddha Offering Protection', 'figure|copper alloy|sculpture', - 'as/mobile-large/DP-15581-036.jpg', 0.68), - SearchData(1750, 24932, 'Helmet', 'helmet|steel, brass, gold, textile, metallic thread|helmets', - 'aa/mobile-large/1988.147_007mar2015.jpg', 0.67), - SearchData( - 1750, - 31837, - 'Dagger (Jambiya)', - 'dagger (jambiya)|steel, ivory (walrus), silver, ruby, rose quartz|daggers', - 'aa/mobile-large/LC-36_25_665-004.jpg', - 0.56), - SearchData(1620, 444868, 'Coin', 'coin|silver|coins', 'is/mobile-large/LC-99_35_7405.jpg', 1.00), - SearchData(1600, 454003, 'Inlaid Box for the Portuguese Market', - 'box|wood (teak); veneered with ebony, inlaid ivory, and lac|wood', 'is/mobile-large/DP217229.jpg', 1.34), - SearchData( - 1816, 24013, 'Mail Shirt', 'mail shirt|iron, copper alloys, leather|mail', 'aa/mobile-large/DP147309.jpg', 1.00), - SearchData(1799, 56208, 'Box with cover', 'box|jade (nephrite)|jade', 'as/mobile-large/02_18_760_O2.jpg', 1.26), - SearchData(1637, 451286, '"Rosette Bearing the Names and Titles of Shah Jahan", Folio from the Shah Jahan Album', - 'album leaf|ink, opaque watercolor, and gold on paper|codices', 'is/mobile-large/DP240657.jpg', 0.70), - SearchData(1617, 444860, 'Coin with Gemini Zodiac Sign', 'coin|silver|coins', 'is/mobile-large/DP221340.jpg', 0.75), - SearchData(1800, 31846, 'Dagger (Khanjar)', 'dagger (khanjar)|steel, rock crystal, gold|daggers', - 'aa/mobile-large/36.25.676_001june2014.jpg', 0.56), - SearchData(999, 38152, 'Chamunda, the Horrific Destroyer of Evil', 'figure|sandstone|sculpture', - 'as/mobile-large/DT5234.jpg', 0.80), - SearchData(1699, 457711, 'Floral Canopy or Screen', 'hanging|cotton, gold leaf; plain weave, painted|textiles', - 'is/mobile-large/DP330218.jpg', 1.01), - SearchData(450, 38394, 'Male Figure', 'figure|terracotta|sculpture', 'as/mobile-large/1982_471_1.JPG', 0.61), - SearchData(250, 38751, 'Fragment of a Horse\'s Head', 'statuette fragment|terracotta|sculpture', - 'as/mobile-large/33_50_15.JPG', 1.17), - SearchData(1099, 705435, 'Eight Great Events Stele', 'stele|stone|sculpture', 'as/mobile-large/DP-592-001.jpg', 0.71), - SearchData(1618, 448257, 'Inkpot of the Emperor Jahangir', 'inkwell|nephrite, gold|stone', - 'is/mobile-large/DP216054.jpg', 0.89), - SearchData(949, 38930, 'Shiva Seated with Uma (Umamaheshvara)', 'statuette|bronze|sculpture', - 'as/mobile-large/1978_253_F_sf.jpg', 0.71), - SearchData(1683, 72598, 'Upper Section of an Arch', 'archway section|wood|woodwork', - 'as/mobile-large/2004_466_01_Strm1.jpg', 2.52), - SearchData(791, 38133, 'Enthroned Vishnu', 'statue|granulite|sculpture', 'as/mobile-large/DT5240.jpg', 0.80), - SearchData( - 1800, - 31479, - 'Knife with Sheath', - 'knife with sheath|steel, jade, gold, ruby, gemstone, leather, silver|knives', - 'aa/mobile-large/36.25.1086ab_002july2014.jpg', - 0.56), - SearchData( - 1650, - 22100, - 'Priming Flask', - 'priming flask|ivory, wood, pigment, resin|firearms accessories-flasks & primers', - 'aa/mobile-large/DP158300.jpg', - 1.52), - SearchData(1885, 500718, 'Māhatī Vīṇa', 'māhatī vīṇa|gourd, various materials|chordophone-lute-plucked-fretted', - 'mi/mobile-large/156798.jpg', 1.95), - SearchData( - 149, 38732, 'Relief of a Mother Goddess(?)', 'relief|terracotta|sculpture', 'as/mobile-large/28_159_8.JPG', 0.62), - SearchData(1712, 38048, 'Shah Jahan Hunting Blackbuck with Trained Cheetahs', - '|ink, gold, and opaque watercolor on paper|paintings', 'as/mobile-large/DP156161.jpg', 1.51), - SearchData( - 550, 38203, 'Mother Goddess (Matrika)', 'figure|gray schist|sculpture', 'as/mobile-large/DT3648.jpg', 0.58), - SearchData(1849, 56248, 'Dagger', 'dagger|nephrite, very dark green, almost black|jade', - 'as/mobile-large/02_18_787.JPG', 3.51), - SearchData( - 1750, - 454049, - 'Prince and Ladies in a Garden', - 'illustrated single work|ink, opaque watercolor, and gold on paper|codices', - 'is/mobile-large/DP246522.jpg', - 0.70), - SearchData(100, 38430, 'Loving Couple (Mithuna)', 'disk|double-molded terracotta|sculpture', - 'as/mobile-large/DT8565.jpg', 0.80), - SearchData(1149, 38937, 'Shadakshari Lokeshvara', 'figure|bronze with silver and copper inlay|sculpture', - 'as/mobile-large/1982_457.jpg', 0.62), - SearchData(966, 75593, 'Chakra-Purusha, the Personified Discus Weapon of Vishnu', 'figure|copper alloy|sculpture', - 'as/mobile-large/DP-20870-001.jpg', 0.75), - SearchData( - 1687, - 453184, - 'Fragment of a Floorspread', - 'fragment|cotton; plain weave, mordant-painted and dyed, resist-dyed|textiles-rugs', - 'is/mobile-large/DP344703.jpg', - 2.02), - SearchData(849, 38384, 'Four-Armed Durga Seated on Her Lion Vehicle', 'stele|stone|sculpture', - 'as/mobile-large/1990_15.jpg', 0.71), - SearchData(1649, 451313, 'Portrait of Islam Khan Mashhadi', - 'illustrated single work|opaque watercolor and gold on paper|codices', 'is/mobile-large/DT4816.jpg', 0.66), - SearchData(1749, 447774, 'Mirror', 'mirror|jade|stone', 'is/mobile-large/24.80.562.jpg', 0.61), - SearchData(963, 39326, 'Standing Vishnu', 'figure|copper alloy|metalwork', 'as/mobile-large/DT329883.jpg', 0.80), - SearchData(1574, 453343, 'Pierced Window Screen', 'screen|red sandstone; pierced, carved|stone', - 'is/mobile-large/sf1993-67-1a.jpg', 0.68), - SearchData(1799, 56227, 'Bowl', 'bowl|jade (nephrite) with gold and stone inlays|jade', - 'as/mobile-large/DP-14153-043.jpg', 1.33), - SearchData(999, 39189, 'Crowned Buddha', 'shrine|bronze inlaid with silver, lapis lazuli, and rock crystal|sculpture', - 'as/mobile-large/16 NEW DP314094r4_61E.jpg', 0.75), - SearchData(1790, 204015, 'Four-light candelabrum', 'candelabrum|ivory|natural substances-ivory', - 'es/mobile-large/DP-13853-069.jpg', 0.63), - SearchData(1800, 31686, 'Dagger (Khanjar)', 'dagger (khanjar)|steel, jade|daggers', - 'aa/mobile-large/36.25.706_001june2014.jpg', 0.56), - SearchData( - -1000, 50573, 'Antennae Sword', 'antennae sword|copper|metalwork', 'as/mobile-large/2001_433_53_O.JPG', 0.43), - SearchData(1650, 32137, 'Helmet', 'helmet|steel, iron, copper alloy|helmets', 'aa/mobile-large/DP151784.jpg', 1.00), - SearchData( - 1750, - 22872, - 'Dagger with Sheath', - 'dagger with sheath|steel, nephrite, gold, emerald, ruby, diamond, sapphire, jade|daggers', - 'aa/mobile-large/DP158185.jpg', - 0.69), - SearchData(-50, 39676, 'One from a Pair of Ear Ornaments (Prakaravapra Kundala)', - 'earring|gold, sheet, wire and granulation|jewelry', 'as/mobile-large/DP-14791-006.jpg', 1.37), - SearchData(1099, 39248, 'Standing Surya', 'figure|copper alloy|sculpture', 'as/mobile-large/DT4673.jpg', 0.63), - SearchData(1618, 444859, 'Coin', 'coin|gold|coins', 'is/mobile-large/DP25.jpg', 1.00), - SearchData( - 1750, - 31442, - 'Knife (Kard) with Sheath', - 'knife (kard) with sheath|steel, nephrite, silver, gold, ruby, velvet, wood|daggers', - 'aa/mobile-large/36.25.1046ab_003july2014.jpg', - 0.56), - SearchData(-1000, 50599, 'Serrated Harpoon', 'harpoon|copper|metalwork', 'as/mobile-large/2001_433_69_O.JPG', 0.42), - SearchData(1799, 56236, 'Bottle in the shape of a gourd', 'bottle|jade (nephrite) with gold and stone inlays|jade', - 'as/mobile-large/02_18_779.JPG', 0.58), - SearchData(1640, 453188, 'Dagger with Hilt of Leafy Plants', - 'dagger|hilt: nephrite blade: watered steel|arms and armor', 'is/mobile-large/DP158638.jpg', 0.70), - SearchData(1772, 456967, 'A Gathering of Holy Men of Different Faiths', - 'illustrated single work|opaque watercolor and gold on paper|codices', 'is/mobile-large/DP213133.jpg', 0.76), - SearchData(1149, 38137, 'Shiva Emerging from the Linga (Lingodbhavamurti)', 'carved pillar|gray stone|sculpture', - 'as/mobile-large/DP-16372-001.jpg', 0.75), - SearchData(799, 39344, 'Linga with Face of Shiva (Ekamukhalinga)', - 'linga|brass with copper and silver inlay|sculpture', 'as/mobile-large/DP-23782-001.jpg', 0.75), - SearchData(1850, 31850, 'Dagger (Khanjar)', 'dagger (khanjar)|steel, jade, stone|daggers', - 'aa/mobile-large/36.25.680_001june2014.jpg', 0.56), - SearchData(272, 38237, 'Buddha', 'torso|limestone|sculpture', 'as/mobile-large/DP701399.jpg', 0.72), - SearchData(1800, 31826, 'Dagger (Khanjar)', 'dagger (khanjar)|steel, jade, gold, silver|daggers', - 'aa/mobile-large/36.25.653_001june2014.jpg', 0.56), - SearchData(1625, 444863, 'Coin with Sign of Libra', 'coin|gold|coins', 'is/mobile-large/DP27.jpg', 1.00), - SearchData( - 1625, - 457730, - 'Dagger with Zoomorphic Hilt', - 'dagger|hilt: copper; cast, chased, gilded, and inlaid with rubies. blade: steel; forged|arms and armor', - 'is/mobile-large/DP253146.jpg', - 0.75), - SearchData(-1250, 50592, 'Anthropomorph', 'anthropomorph|copper|metalwork', 'as/mobile-large/2001_433_5.jpg', 1.49), + 'folio from an illustrated manuscript|image: ink, opaque watercolor, and gold on paper margins: gold on dyed paper|codices'), + SearchData(1749, 452777, 'Bottle with Gilded Flowers', 'bottle|glass, purple; mold blown, gilded|glass'), + SearchData(1875, 500764, 'Turhā or Karnā', 'turhā or karnā|brass|aerophone-lip vibrated-trumpet / trombone'), + SearchData(1800, 31428, 'Dagger with Sheath', 'dagger with sheath|steel, jade, leather, wood|daggers'), + SearchData(1725, 31505, 'Punch Dagger (Katar) with Sheath', + 'punch dagger (katar) with sheath|steel, iron, silver, gold, rubies|daggers'), + SearchData(1618, 448257, 'Inkpot of the Emperor Jahangir', 'inkwell|nephrite, gold|stone'), + SearchData(1200, 39329, 'Shiva as Lord of Dance (Shiva Nataraja)', 'figure|copper alloy|metalwork'), + SearchData(899, 38136, 'Jyeshtha Flanked by Her Children', 'figures|granite|sculpture'), + SearchData(1617, 444857, 'Coin', 'coin|silver|coins'), + SearchData(1749, 77164, 'Vessel in the form of a Mango', 'vessel|silver and fabric|metalwork'), SearchData( 1597, - 822698, - 'Portrait of Kuchal Oghlan: Folio from Salim\'s Album', - 'album leaf, illustrated|opaque watercolor and gold on paper|codices', - 'is/mobile-large/TR.82.2019 3-28-19.jpg', - 0.65), - SearchData(1799, 56219, 'Mirror frame', 'mirror frame|jade (nephrite)|jade', 'as/mobile-large/ISL143.jpg', 0.69), - SearchData(1800, 31685, 'Dagger (Khanjar)', 'dagger (khanjar)|steel, nephrite, gold, ruby|daggers', - 'aa/mobile-large/36.25.705_002june2014.jpg', 0.56), - SearchData(199, 39124, 'Seated Goddess', 'figurine|bronze|sculpture', 'as/mobile-large/1987_142_338_F.JPG', 0.74), - SearchData(-1250, 50639, 'Eccentric Anthropomorph', 'anthropomorph|copper|metalwork', - 'as/mobile-large/2001_433_10_O.JPG', 0.93), - SearchData(-50, 64486, 'Yakshi Holding a Crowned Child with a Visiting Parrot', 'plaque|terracotta|sculpture', - 'as/mobile-large/DP158763.jpg', 0.75), - SearchData(1635, 453054, 'Floral Tent Panel', 'tent lining|silk, gold; cut velvet, painted|textiles', - 'is/mobile-large/DP210624.jpg', 2.05), + 446567, + '"The Story of the Princess of the Blue Pavillion: The Youth of Rum Is Entertained in a Garden by a Fairy and her Maidens", Folio from a Khamsa (Quintet) of Amir Khusrau Dihlavi', + 'folio from an illustrated manuscript|ink, opaque watercolor, and gold on paper|codices'), + SearchData(1625, 457730, 'Dagger with Zoomorphic Hilt', + 'dagger|hilt: copper; cast, chased, gilded, and inlaid with rubies. blade: steel; forged|arms and armor'), + SearchData(1794, 22871, 'Saber with Scabbard', + 'saber with scabbard|steel, gold, silver, jade (nephrite), diamonds, emeralds, pearls|swords'), + SearchData(1099, 37531, 'Stupa', 'stupa|bronze|metalwork'), + SearchData(1149, 37397, 'Ganesha', 'figure|copper alloy|sculpture'), + SearchData(1249, 38141, 'Loving Couple (Mithuna)', 'relief|ferruginous stone|sculpture'), + SearchData(1786, 24328, 'Saber (Talwar) with Scabbard', + 'saber (talwar) with scabbard|steel, silver, diamonds enamel, leather|swords'), + SearchData(1800, 31401, 'Crutch Dagger (Zafar Takieh, "Cushion of Victory") with Sheath', + 'crutch dagger (zafar takieh) with sheath|steel, silver, gold, jade, ruby, turquoise, emerald|daggers'), + SearchData(-149, 75355, 'Toy in the form of a makara', 'toy|terracotta|ceramics'), + SearchData(1674, 457020, 'Pair of Flower Style Doors', 'pair of doors|wood; carved with residues of paint|wood'), + SearchData(1750, 31472, 'Dagger', 'dagger|steel, jade|daggers'), + SearchData(1749, 39450, 'Guardian (Ainar)', 'portable idol|brass|sculpture'), + SearchData(1949, 72384, 'Standing Buddha', 'figure|bronze|sculpture'), + SearchData(749, 38253, 'Gaja Lakshmi, Goddess of Fortune', 'relief|stone|sculpture'), + SearchData(50, 65014, 'One of a pair of medallions with portrait busts', 'medallion|copper-nickel alloy|metalwork'), + SearchData(100, 38103, 'Standing Female Figure with an Offering', 'figure|gold|sculpture'), + SearchData(1875, 500781, 'Nagphani', 'nagphani|copper|aerophone-lip vibrated-trumpet / trombone'), + SearchData(1805, 73261, 'Escapade at Night:', 'painting|opaque watercolor, ink and gold on paper|paintings'), + SearchData(1680, 37854, 'Vilaval Ragini: Folio from a ragamala series (Garland of Musical Modes)', + 'folio|ink and opaque watercolor on paper|paintings'), + SearchData( + 1612, 457019, 'Engraved Bowl', 'bowl|copper; cast, engraved, tinned, and inlaid with a black compound|metal'), + SearchData(999, 38152, 'Chamunda, the Horrific Destroyer of Evil', 'figure|sandstone|sculpture'), + SearchData(1149, 38934, 'Tara', 'figurine|bronze with silver inlay|sculpture'), + SearchData(1616, 24907, 'Dagger with Scabbard', + 'dagger with scabbard|steel, iron, gold, rubies, emeralds, glass, wood, textile|cylinder seals'), + SearchData(9, 39345, 'Crowned Buddha', 'figure|brass|sculpture'), + SearchData(449, 45449, 'Buddha offering protection', 'figure|copper alloy|sculpture'), + SearchData( + 1725, + 37948, + 'The Monkey Leader Angada Steals Ravana\'s Crown from His Fortress: Folio from the Siege of Lanka series', + 'folio|ink and opaque watercolor on paper|paintings'), + SearchData(499, 40076, 'Tile with Impressed Figure of Emaciated Ascetics and Couples Behind Balconies', + 'tile|terracotta|ceramics'), + SearchData(-200, 38431, 'Standing Female Deity', 'figure|terracotta, black oxidation patina|sculpture'), + SearchData( + 1850, 500758, 'Tambura', 'tambura|gourd, wood, ivory, bone, paint, steel|chordophone-lute-plucked-unfretted'), + SearchData(849, 38256, 'Shiva and Parvati with their Sons Karttikeya and Ganesha and the Calf Bull', + 'figure|stone|sculpture'), + SearchData(1750, 31714, 'Crutch Dagger (Zafar Takieh, "Cushion of Victory")', 'crutch dagger|jade, steel|daggers'), + SearchData( + 1650, 22100, 'Priming Flask', 'priming flask|ivory, wood, pigment, resin|firearms accessories-flasks & primers'), + SearchData(1799, 56221, 'Bowl', 'bowl|jade (nephrite) with painted decoration|jade'), + SearchData(1799, 56224, 'Sword handle', 'sword handle|jade (nephrite) with gold and semiprecious stone inlays|jade'), + SearchData(1549, 38516, 'Seated Ganesha', 'figure|ivory|sculpture'), + SearchData(1585, 451278, '"Portrait of Khan Dauran Bahadur Nusrat Jang", Folio from the Shah Jahan Album', + 'album leaf|ink, opaque watercolor, and gold on paper|codices'), + SearchData( + 1640, 453188, 'Dagger with Hilt of Leafy Plants', 'dagger|hilt: nephrite blade: watered steel|arms and armor'), + SearchData(-1250, 50639, 'Eccentric Anthropomorph', 'anthropomorph|copper|metalwork'), + SearchData(449, 38511, 'Krishna Killing the Horse Demon Keshi', 'relief|terracotta|sculpture'), + SearchData(499, 38393, 'Lion Standing on a Pillar Capital', 'capital|terracotta|sculpture'), + SearchData(1024, 38574, 'Jain Svetambara Tirthankara in Meditation', 'figure|marble|sculpture'), + SearchData(224, 38239, 'Drum panel with scenes of the Great Departure and Temptation of the Buddha', + 'relief|limestone|sculpture'), + SearchData(1837, 24483, 'Flintlock Gun', + 'flintlock gun|steel, ebony, gold, enamel, rubies, emeralds, textile|firearms-guns-flintlock'), + SearchData(1850, 31828, 'Dagger', 'dagger|steel, rock crystal, gold, ruby, emerald|daggers'), + SearchData(1687, 453243, 'Base for a Water Pipe (Huqqa) with Irises', + 'water pipe base|zinc alloy; cast, engraved, inlaid with brass (bidri ware)|metal'), + SearchData(699, 37413, 'Panel from a Portable Shrine: The Descent of the Buddha from Trayastrimsha Heaven', + 'portable shrine panel|ivory with traces of color|ivories'), + SearchData(1650, 31845, 'Dagger (Khanjar)', 'dagger (khanjar)|steel, ivory (elephant), gemstone, gold|daggers'), + SearchData(1000, 39489, 'Meditating Buddha with Alms Bowl Enthroned in a Foliated Niche', + 'architectural element|stone|sculpture'), + SearchData(199, 38739, 'Male Head', 'head|terracotta|sculpture'), + SearchData(849, 38387, 'Seated Kubera (Study Collection)', 'figure|stone|sculpture'), + SearchData(1580, 451267, '"Shah Jahan on Horseback", Folio from the Shah Jahan Album', + 'album leaf|ink, opaque watercolor, and gold on paper|codices'), + SearchData( + 1700, 78873, 'Two box panels with mithuna couples', 'casket panels|ivory backed with gilded paper|sculpture'), + SearchData(-1250, 50576, 'Ax Blade', 'ax|copper|metalwork'), + SearchData(1675, 24298, 'Dagger with Sheath', + 'dagger with sheath|steel, nephrite, gold, rubies, emeralds, silver-gilt, leather|daggers'), + SearchData(1850, 21922, 'Shield (Dhál)', 'shield (dhàl)|steel, gold, silk-velvet|shields'), + SearchData(1632, 35633, 'Shirt of Mail and Plate of Emperor Shah Jahan (reigned 1624–58)', + 'shirt of mail and plate|steel, iron, gold, leather|mail'), + SearchData(-1250, 50595, 'Harpoon', 'harpoon|copper|metalwork'), + SearchData(1049, 38142, 'Celestial Musician (Gandharva)', 'figure|slate|sculpture'), + SearchData( + 999, 39189, 'Crowned Buddha', 'shrine|bronze inlaid with silver, lapis lazuli, and rock crystal|sculpture'), + SearchData(-1000, 39432, 'Anthropomorph', 'anthropomorph|copper|metalwork'), + SearchData(1620, 444868, 'Coin', 'coin|silver|coins'), + SearchData(1885, 500718, 'Māhatī Vīṇa', 'māhatī vīṇa|gourd, various materials|chordophone-lute-plucked-fretted'), + SearchData(250, 38970, 'Seated Ascetic, Deified King, Agni (The God of Fire)', 'figure|bronze|sculpture'), + SearchData(1649, 448241, 'Panel from a Tent Lining', + 'fragment of a tent lining|cotton; plain weave, mordant painted and dyed, resist dyed|textiles-painted and/or printed'), + SearchData(1699, 447086, 'Finial in the Form of a Parrot', 'finial|brass|metal'), + SearchData(1783, 65576, 'Pichhwai for the Festival of Cows', + 'ceremonial cloth|painted and printed gold and silver leaf and opaque watercolor on indigo-dyed cotton|textiles-painted and printed'), + SearchData(787, 38515, 'Vaikuntha Vishnu', 'figure|stone|sculpture'), + SearchData(666, 38559, 'Vajrapani, the Thunderbolt-bearing Bodhisattva', 'stele|stone|sculpture'), + SearchData( + 1849, 500709, 'Taūs (mayuri)', 'taūs (mayuri)|wood, parchment, metal, feathers|chordophone-lute-bowed-fretted'), + SearchData(1800, 64852, 'Royal Lovers in a Landscape Setting', + 'album leaf|leaf from an album; ink, colors and gold on paper|paintings'), + SearchData(249, 37640, 'Yakshi', 'statuette|brown sandstone|sculpture'), + SearchData(1099, 705435, 'Eight Great Events Stele', 'stele|stone|sculpture'), + SearchData(674, 38125, 'Vishnu', 'figure|stone|sculpture'), + SearchData(950, 38929, 'Seated Tara', 'figure|bronze|sculpture'), + SearchData(1749, 666471, 'Bowl in shape of a shell', 'wine cup|jade (nephrite)|jade'), + SearchData(-1250, 50637, 'Ax Blade', 'ax|copper|metalwork'), + SearchData(1750, 24423, 'Ceremonial Mace', 'ceremonial mace|rock crystal, gold, copper alloy, ruby|shafted weapons'), + SearchData(-50, 40098, 'Plaque with Standing Yakshi', 'plaque|wood|sculpture'), + SearchData(1249, 38768, 'Lion', 'figure|stone|sculpture'), + SearchData( + 1780, + 37956, + 'Rama and Lakshmana as Boys Assist the Sage Vishvamitra: Folio from a dispersed Ramayana series', + 'folio|ink and opaque watercolor on paper|paintings'), + SearchData( + 1799, 56233, 'Box with tray', 'box with tray|jade (nephrite) with gold and semiprecious stone inlays|jade'), + SearchData(649, 78910, 'Lakshmi, Goddess of Prosperity', 'figure|brass|sculpture'), + SearchData(1800, 24319, 'Saber', 'saber|steel, jade (nephrite), gold|swords'), + SearchData(1705, 65590, 'Maharana Amar Singh II Is Shown Two Silver Elephants', + 'painting|ink, opaque watercolor, silver, and gold on paper|paintings'), + SearchData(1618, 444859, 'Coin', 'coin|gold|coins'), + SearchData(1800, 31687, 'Dagger (Khanjar)', 'dagger (khanjar)|steel, jade|daggers'), + SearchData(116, 38381, 'Princely Couple', 'relief|terracotta|sculpture'), + SearchData(272, 38237, 'Buddha', 'torso|limestone|sculpture'), + SearchData(-50, 38575, 'Plaque with a Royal Family', 'plaque|terracotta|sculpture'), + SearchData(1850, 31850, 'Dagger (Khanjar)', 'dagger (khanjar)|steel, jade, stone|daggers'), + SearchData(1750, 31827, 'Dagger with Sheath', + 'dagger with sheath|steel, gold, jade, beryl, ruby, emerald, topaz, silver, pearl, wood, velvet|daggers'), + SearchData(1707, 39894, 'Maharana Amar Singh II with Ladies of the Zenana outside the Picture Hall at Rajnagar', + 'painting|opaque watercolor, ink and gold on paper|paintings'), + SearchData(1850, 31849, 'Dagger (Khanjar)', 'dagger (khanjar)|steel, jade or agate, gold|daggers'), + SearchData(1750, 31824, 'Dagger', 'dagger|steel, nephrite, gold, ruby|daggers'), + SearchData(1800, 24292, 'Shield (Dhàl)', 'shield (dhàl)|leather, lacquer, gold leaf, silver|shields'), + SearchData(1562, 37962, 'The Gopis Plead with Krishna to Return Their Clothing: Folio from "Isarda" Bhagavata Purana', + 'folio|opaque watercolor and ink on paper|paintings'), + SearchData(850, 38404, 'Seated Ganesha', 'figure|stone|sculpture'), + SearchData(1667, 684250, 'Portrait of Chuk the Wrestler', + 'single work, illustrated|ink, translucent watercolor, and gold on paper|codices'), + SearchData(1605, 454344, '"Rama Receives Sugriva and Jambavat, the Monkey and Bear Kings", Folio from a Ramayana', + 'folio from an illustrated manuscript|ink, opaque watercolor, and gold on paper|codices'), + SearchData(549, 38202, 'Standing Male Deity (possibly Shiva)', 'figure|stone|sculpture'), + SearchData(-50, 38089, 'Auspicious Emblem with Four Dancing Figures', 'rattle|terracotta|sculpture'), + SearchData(1749, 447773, 'Bowl with Acanthus Leaf Handles', 'bowl|nephrite|stone'), + SearchData(1800, 31826, 'Dagger (Khanjar)', 'dagger (khanjar)|steel, jade, gold, silver|daggers'), + SearchData(649, 38254, 'Section of a Diptych in Linga Form, Interior Depicting Shiva and Parvati', + 'portable linga section|chlorite schist|sculpture'), + SearchData(849, 39129, 'Seated Maitreya', 'figurine|bronze|sculpture'), + SearchData(600, 39128, 'Tara', 'figure|copper alloy|sculpture'), + SearchData( + 1800, 31479, 'Knife with Sheath', 'knife with sheath|steel, jade, gold, ruby, gemstone, leather, silver|knives'), + SearchData( + 1725, 38039, 'Mahadevi, the Great Goddess', 'painting|ink, opaque watercolor, and silver on paper|paintings'), + SearchData(1649, 860957, 'Royal throne leg with equestrian warrior', + 'throne leg|ivory with traces of polychrome and iron armature|ivories'), + SearchData(-49, 38091, 'Figures Riding an Elephant', 'figure|terracotta|sculpture'), + SearchData(1790, 204015, 'Four-light candelabrum', 'candelabrum|ivory|natural substances-ivory'), + SearchData(1799, 56227, 'Bowl', 'bowl|jade (nephrite) with gold and semiprecious stone inlays|jade'), + SearchData(1635, 453054, 'Floral Tent Panel', 'tent lining|silk, gold; cut velvet, painted|textiles'), + SearchData(1462, 452780, 'Fragment of a Cornice with a Frieze of Masks', 'fragment of cornice|sandstone|stone'), + SearchData(1687, 453184, 'Fragment of a Floorspread', + 'textile fragment|cotton; plain weave, mordant-painted and dyed, resist-dyed|textiles-rugs'), + SearchData(1837, 781965, 'Album of Hindu deities', 'album|watercolor, ink, and gold on paper|manuscripts'), + SearchData( + 1010, 768115, 'Shiva as Vanquisher of the Three Cities (Shiva Tripuravijaya)', 'figure|copper alloy|sculpture'), + SearchData(250, 38241, 'Naga attendant holding a fly whisk', 'relief|limestone|sculpture'), + SearchData(483, 54489, 'Mask of Vaikuntha Vishnu', 'mask|bronze|sculpture'), + SearchData(1624, 73309, 'Plate', 'plate|mother-of-pearl with copper alloy base (underside) and rim frame|shell'), + SearchData(1800, 31846, 'Dagger (Khanjar)', 'dagger (khanjar)|steel, rock crystal, gold|daggers'), + SearchData(-283, 38084, 'Ring stone with goddesses and aquatic plants', 'ring stone|steatite|stone'), + SearchData(438, 39892, 'Nagini (Serpent Queen or Consort of Nagaraja)', 'figure|stone|sculpture'), + SearchData(1625, 444863, 'Coin with Sign of Libra', 'coin|gold|coins'), + SearchData(450, 38200, 'Standing Balarama or Nagaraja (Serpent King)', 'figure|red sandstone|sculpture'), + SearchData(-1875, 39126, 'Woman Riding Two Brahman Bulls', 'sculpture|bronze|sculpture'), + SearchData(1649, 56232, 'Box with Cover', 'box with cover|nephrite, gray with faint greenish tint|jade'), + SearchData( + -100, 65011, 'The Sun God Surya(?) in His Chariot with Wives and Attendants', 'bowl fragment|ivory|ivories'), + SearchData(885, 38928, 'Enthroned Preaching Buddha', 'shrine|bronze with silver inlay|sculpture'), + SearchData(1116, 39331, 'Yashoda with the Infant Krishna', 'figure|copper alloy|sculpture'), + SearchData(1250, 38947, 'Standing Shiva', 'figure|bronze|sculpture'), + SearchData(966, 75593, 'Chakra-Purusha, the Personified Discus Weapon of Vishnu', 'figure|copper alloy|sculpture'), + SearchData(1750, 24425, 'Lance', 'lance|steel, gold, silver|shafted weapons'), + SearchData(949, 38615, 'Stele with Eight Great Events from the Life of the Buddha', + 'stele|black schist with traces of gilding|sculpture'), + SearchData(1792, 858236, 'Vishnu Venkateshvara, Lord of Tirupati', + 'painting|opaque watercolor and hand-colored silver on paper|paintings'), + SearchData(1700, 31865, 'Dagger (Katar) with Sheath', 'dagger (katar) with sheath|steel, gold, velvet, wood|daggers'), + SearchData(1587, 39317, 'Architectural Ensemble from a Jain Meeting Hall', + 'architectural ensemble|teak with traces of color|sculpture'), + SearchData(1683, 72598, 'Upper Section of an Arch', 'archway section|wood|woodwork'), + SearchData(1850, 24006, 'Shirt and Leg Defenses of Mail', 'shirt and leg defenses of mail|iron, brass|mail'), + SearchData(983, 39608, 'Celestial Attendant', 'figure|bronze|sculpture'), + SearchData(-1250, 50610, 'Antennae Sword', 'antennae sword|copper|metalwork'), + SearchData(1705, 37940, 'Ragini, possibly Asavari: Folio from a Ragamala Series', + 'folio|ink and opaque watercolor on paper|paintings'), + SearchData(1793, 24490, 'Flintlock Blunderbuss', 'flintlock blunderbuss|steel, wood, gold, silver|firearms'), + SearchData(1775, 37928, 'Seated Four-Armed Ganesha', 'painting|ink and opaque watercolor on paper|paintings'), + SearchData(600, 38965, 'Buddha Offering Protection', 'figure|copper alloy|sculpture'), + SearchData(950, 38463, 'Ganesha Seated on a Lion Throne', 'figure|schist|sculpture'), + SearchData(100, 38379, 'Tree Spirit Deity (Yakshi)', 'bracket|red sandstone|sculpture'), + SearchData(1800, 24793, 'Cuirass (Char-aina)', 'cuirass (char-aina)|steel, gold, textile|armor parts-cuirasses'), + SearchData(1617, 453435, 'Coin', 'coin|silver|coins'), + SearchData(1800, 31863, 'Dagger (Katar)', 'dagger (katar)|steel, gold|daggers'), + SearchData(1750, 35949, 'Cuirass (Char-aina) with Mail Shirt', + 'cuirass (char-aina) with mail shirt|steel, iron, gold, leather, textile|armor parts'), + SearchData(0, 38364, 'Two Lotuses, from the Bharhut Stupa', 'architectural relief|red sandstone|sculpture'), + SearchData(1150, 38563, 'Twelve-Armed Chakrasamvara and His Consort Vajravarahi', 'figure|phyllite|sculpture'), + SearchData(1649, 56205, 'Bowl', 'bowl|jade|jade'), + SearchData(1149, 39251, 'Yoga Narasimha, Vishnu\'s Man-Lion Incarnation', 'figure|copper alloy|sculpture'), + SearchData(-50, 38468, 'Patravahaka yaksha', 'yaksha|sandstone|sculpture'), + SearchData(1799, 56223, 'Oval box with cover', 'box|jade (nephrite) with gold and semiprecious stone inlays|jade'), + SearchData(1618, 444866, 'Coin', 'coin|gold|coins'), + SearchData(1798, 1986, 'Chess set', 'chess set|lacquered wood, ivory|'), + SearchData(599, 72605, 'Standing Goddess', 'figure|bronze|sculpture'), + SearchData(1650, 31861, 'Dagger (Katar) with Sheath', + 'dagger (katar) with sheath|iron, gold, steel, diamond, velvet, wood|daggers'), + SearchData(699, 38414, 'Head of a Bodhisattva', 'head|stucco on a clay core|sculpture'), + SearchData(-1250, 56621, 'Harpoon', 'harpoon|copper|metalwork'), + SearchData(1640, 453367, 'Portrait of the Elephant \'Alam Guman', + 'illustrated album leaf|opaque watercolor and gold on paper|codices'), + SearchData(1574, 453344, 'Pierced Window Screen', 'screen|red sandstone; pierced, carved|stone'), + SearchData(549, 38251, 'Vishvarupa Vishnu', 'sculpture|stone|sculpture'), + SearchData(1725, 665501, 'Narasimha, Vishnu’s Man-Lion Avatar', 'mask|wood with cloth and polychrome|sculpture'), + SearchData( + -100, 65010, 'The Moon God Chandra(?) in His Chariot with Wife and Attendant', 'bowl fragment|ivory|ivories'), + SearchData(849, 38384, 'Four-Armed Durga Seated on Her Lion Vehicle', 'stele|stone|sculpture'), + SearchData(1580, 451268, '"Akbar With Lion and Calf", Folio from the Shah Jahan Album', + 'album leaf|ink, opaque watercolor, and gold on paper|codices'), + SearchData( + 1849, 503672, 'Śankh', 'śankh|shell (turbinella pyrum), brass, wax|aerophone-lip vibrated-trumpet / trombone'), + SearchData(1449, 39263, 'Seated Jain Tirthankara', 'figure|bronze|sculpture'), + SearchData(499, 53472, 'Bust of Vishnu', 'bust|terracotta|sculpture'), + SearchData(1712, 72589, 'Maharana Sangram Singh Riding a Prize Stallion', + 'painting|ink, opaque watercolor, gold, and basra pearls on paper|paintings'), + SearchData(1875, 500736, 'Ghanti (bell)', 'ghanti (bell)|brass|idiophone-struck-bell-clapper'), + SearchData(-250, 38081, 'Disc stone', 'disc stone|steatite|stone'), + SearchData( + 1799, 56231, 'Jar with cover', 'jar with cover|jade (nephrite) with gold and semiprecious stone inlays|jade'), + SearchData(1100, 39328, 'Shiva as Lord of Dance (Nataraja)', 'figure|copper alloy|sculpture'), + SearchData( + 1780, + 37955, + 'Rama, Sita, and Lakshmana at the Hermitage of Bharadvaja: Illustrated folio from a dispersed Ramayana series', + 'folio|opaque watercolor and ink on paper|paintings'), + SearchData(1612, 453261, 'Pierced Window Screen (Jali)', 'screen|marble|stone'), + SearchData(1749, 56203, 'Wine Cup', 'wine cup|nephrite|jade'), + SearchData(1650, 32137, 'Helmet', 'helmet|steel, iron, copper alloy|helmets'), + SearchData(791, 38133, 'Enthroned Vishnu', 'statue|granulite|sculpture'), + SearchData(1805, 37994, 'The Marital Bliss of Nala and Damayanti: Folio from a Nala-Damayanti Series', + 'folio|ink and opaque watercolor on paper|paintings'), + SearchData(261, 38634, 'Crowned Bodhisattva', 'bust|sandstone|sculpture'), + SearchData(1787, 506151, 'Vina (वीणा)', + 'vina|jackwood, gold leaf, papier-mâché, bone, steel, brass|chordophone-lute-plucked-fretted'), + SearchData( + 1597, + 446562, + '"Bahram Gur Sees a Herd of Deer Mesmerized by Dilaram\' s Music", Folio from a Khamsa (Quintet) of Amir Khusrau Dihlavi', + 'folio from an illustrated manuscript|main support: ink, opaque watercolor, and gold on paper margins: gold on dyed paper|codices'), + SearchData(1792, 203778, 'Chandelier', 'chandelier|ivory|natural substances-ivory'), + SearchData(1694, 37942, 'Shiva and Parvati Playing Chaupar: Folio from a Rasamanjari Series', + 'folio|opaque watercolor, ink, silver, and gold on paper|paintings'), + SearchData(1649, 646829, 'Filigree Casket with Sliding Top', 'box|silver filigree; parcel-gilt|metal'), + SearchData(749, 39342, 'The Bodhisattva Vajrasattva', 'figure|brass with silver inlay|sculpture'), + SearchData(300, 49817, 'Box Lid with Incised Figural Decoration', 'box lid|ivory|ivories'), + SearchData( + 799, 39344, 'Linga with Face of Shiva (Ekamukhalinga)', 'linga|brass with copper and silver inlay|sculpture'), + SearchData(633, 713007, 'Vajrapani', 'figure|gray chorite|sculpture'), + SearchData(1622, 444861, 'Coin with Sign of Cancer', 'coin|silver|coins'), + SearchData(0, 39676, 'One from a Pair of Ear Ornaments (Prakaravapra Kundala)', + 'earring|gold, sheet, wire and granulation|jewelry'), + SearchData(1083, 75960, 'Child Saint Sambandar', 'figure|copper alloy|sculpture'), + SearchData( + 1465, + 37788, + 'Devananda\'s Fourteen Auspicious Dreams Foretelling the Birth of Mahavira: Folio from a Kalpasutra Manuscript', + 'folio|opaque watercolor on paper|paintings'), + SearchData(1800, 31847, 'Dagger (Khanjar) with Sheath', + 'dagger (khanjar) with sheath|steel, jade, gold, turquoise, crystal, garnet, ruby, gemstone silk, silver, copper|daggers'), + SearchData(1649, 453242, 'Basin with Stylized Lotus Blossoms', 'basin|marble|stone'), + SearchData(1799, 58448, 'Box with cover', 'box|jade (nephrite) with gold and semiprecious stone inlays|jade'), + SearchData(1749, 444832, 'Rock Crystal Box', 'box|rock crystal; inlaid with gold, inset with rubies|stone'), + SearchData(-99, 38079, 'Ring Stone', 'ringstone fragment|stone|sculpture'), + SearchData(449, 38392, 'Head Fragment from a Plaque', 'head fragment|terracotta|sculpture'), + SearchData(1875, 501899, 'Karnā (Trumpet)', 'karnā (trumpet)|brass|aerophone-lip vibrated-trumpet / trombone'), + SearchData(1617, 444860, 'Coin with Gemini Zodiac Sign', 'coin|silver|coins'), + SearchData(1750, 24208, 'Arm Guard (Dastana)', + 'arm guard (dastana)|steel, gold, textile (velvet), textile (silk), textile (linen), copper alloy|armor parts'), + SearchData(1725, 37950, 'Rama and Lakshmana Overwhelmed by Arrows: Folio from the Siege of Lanka series', + 'drawing|ink on paper|paintings'), + SearchData(1600, 456312, 'Spittoon or Incense Burner', 'spittoon|brass; cast in sections, joined, engraved|metal'), + SearchData(1605, 454357, '"The Awakening of Kumbhakarna in the Golden City of Lanka", Folio from a Ramayana', + 'folio from an illustrated manuscript|opaque watercolor and gold on paper|codices'), + SearchData(1762, 688478, 'Casket', + 'casket|ebony and engraved ivory, tortoiseshell; mirror glass; silver hardware; brass feet; iron lock|natural substances-ivory'), + SearchData(1800, 31467, 'Dagger (Katar)', 'dagger (katar)|steel, gold|daggers'), + SearchData(1700, 24029, 'Helmet', 'helmet|steel, iron, gold|helmets'), + SearchData(1049, 38945, 'Hanuman Conversing', 'figure|copper alloy|sculpture'), + SearchData(424, 38242, 'Linga with Face of Shiva (Ekamukhalinga)', 'linga|sandstone|sculpture'), + SearchData(1149, 38137, 'Shiva Emerging from the Linga (Lingodbhavamurti)', 'carved pillar|gray stone|sculpture'), + SearchData(949, 713008, 'Miniature Brahmanical Shrine', 'shrine|copper alloy|metalwork'), + SearchData(1600, 453366, 'Bidri Box for Holding Pan', + 'box|zinc alloy; cast, engraved, inlaid with silver and brass (bidri ware)|metal'), + SearchData(1700, 32259, 'Dagger', 'dagger|steel, jade, ruby, gold|daggers'), + SearchData( + 1600, + 453258, + 'Page of Calligraphy with Stenciled and Painted Borders from a Subhat al-Abrar (Rosary of the Devout) of Jami', + 'folio from an illustrated manuscript|ink, gold, and opaque watercolor on paper|codices'), + SearchData(816, 39194, 'Vishnu Flanked by His Personified Attributes', 'group|bronze|sculpture'), + SearchData(1849, 56248, 'Dagger', 'dagger|nephrite, very dark green, almost black|jade'), + SearchData(1800, 24297, 'Dagger with Sheath', + 'dagger with sheath|steel, rock crystal, gold, silver, rubies, diamonds, emeralds, textile, wood|daggers'), + SearchData(1800, 31825, 'Dagger (Khanjar) with Sheath', + 'dagger (khanjar) with sheath|steel, jade, gold, ruby, emerald, diamond, silver, pearl, wood, velvet|daggers'), + SearchData(1585, 451277, '"Portrait of Qilich Khan Turani", Folio from the Shah Jahan Album', + 'album leaf|ink, opaque watercolor, and gold on paper|codices'), + SearchData(-1250, 50626, 'Ax with Punch Marks', 'ax|copper|metalwork'), + SearchData(1750, 22872, 'Dagger with Sheath', + 'dagger with sheath|steel, nephrite, gold, emerald, ruby, diamond, sapphire, jade|daggers'), + SearchData(1049, 38123, 'Buddha Preaching the First Sermon at Sarnath', 'figure|black stone|sculpture'), + SearchData(949, 38930, 'Shiva Seated with Uma (Umamaheshvara)', 'statuette|bronze|sculpture'), + SearchData(999, 38260, 'Shrine Relief Fragment Depicting Ashtamahabhaya Tara, the Buddhist Savioress', + 'fragment|wood|sculpture'), + SearchData(633, 78430, 'Mask of Bhairava', 'mask|copper alloy, possibly brass|sculpture'), + SearchData( + 1183, 75201, 'Foliate Pedestal for a Buddhist Image', 'pedestal|partially gilded brass, copper base|metalwork'), + SearchData(1780, 457783, 'Two Late Mughal Letters', 'non-illustrated single work|ink and gold on paper|codices'), + SearchData(1800, 31686, 'Dagger (Khanjar)', 'dagger (khanjar)|steel, jade|daggers'), + SearchData( + 1674, 452815, 'Shield with Hunting and Landscape Vignettes', 'shield|steel; with gold overlay|arms and armor'), + SearchData(1800, 31836, 'Dagger', 'dagger|steel, jade, gold, diamond, emerald, ruby, agate|daggers'), + SearchData(-1250, 50588, 'Eccentric Anthropomorph', 'anthropomorph|copper|metalwork'), + SearchData(1640, 453253, 'Dagger with Hilt in the Form of a Blue Bull (Nilgai)', + 'dagger|hilt: nephrite blade: watered steel|stone'), + SearchData(610, 39142, 'Seated Buddha', 'figure|bronze with silver and copper inlay|sculpture'), + SearchData(450, 38219, 'Ear Plug with Kinnari (Half-Bird, Half-Female Creature)', 'ear plug|terracotta|sculpture'), + SearchData(1749, 56211, 'Bowl in the shape of a chrysanthemum flower', 'bowl|jade (nephrite)|jade'), + SearchData(599, 38424, 'Mirror Handle with a Woman Playing the Lute', 'mirror handle|chlorite schist|sculpture'), + SearchData(749, 37412, 'Panel of a Portable Buddhist Shrine with Dancer and Musician Celebrants', + 'panel|ivory with traces of color|ivories'), + SearchData(150, 38758, 'Lamp', 'lamp|stone|sculpture'), + SearchData(1750, 24301, 'Dagger (Katar)', 'dagger (katar)|steel, gold|daggers'), + SearchData(1574, 453343, 'Pierced Window Screen', 'screen|red sandstone; pierced, carved|stone'), + SearchData(499, 38244, 'Tile showing a woman carrying a pot', 'tile|terracotta|sculpture'), + SearchData(949, 38259, 'Manjushri, the Bodhisattva of Transcendent Wisdom', 'figure|brass|sculpture'), + SearchData(-94, 38612, 'Dish with a Bee Pollinating a Lotus', 'dish|ceramic|ceramics'), + SearchData(1799, 56230, 'Jewelled plate', 'plate|jade (nephrite) with gold and semiprecious stone inlays|jade'), + SearchData( + 1650, + 37886, + 'Krishna and Balarama Fight the Evil King Kamsa’s Wrestlers: Page from a Dispersed Bhagavata Purana', + 'folio|ink and opaque watercolor on paper|paintings'), + SearchData( + 1799, 56256, 'Vase with stopper', 'vase|jade (nephrite) with gold, silver, and semiprecious stone inlays|jade'), + SearchData(50, 65012, 'One of a pair of medallions with portrait busts', 'medallion|copper-nickel alloy|metalwork'), + SearchData(1016, 38931, 'Crowned and Jeweled Buddha', 'shrine|bronze with silver and copper inlay|sculpture'), + SearchData(1016, 39327, 'Shiva, Uma, and Their Son Skanda (Somaskandamurti)', 'figure|copper alloy|sculpture'), + SearchData(1800, 24008, 'Armor of Mail and Plate', + 'armor of mail and plate|steel, iron, copper alloy, textile|armor for man'), + SearchData(1285, 39413, 'Karaikkal Ammaiyar, Shaiva Saint', 'figure|copper alloy|sculpture'), + SearchData(435, 39405, 'Gold Coin Showing King Kumaragupta as an Archer', 'coin|gold|metalwork'), + SearchData(912, 39325, 'Standing Parvati', 'figure|copper alloy|metalwork'), + SearchData(1799, 56236, 'Bottle in the shape of a gourd', + 'bottle|jade (nephrite) with gold and semiprecious stone inlays|jade'), + SearchData(-1250, 50619, 'Ax Blade (Celt)', 'ax blade|copper|metalwork'), + SearchData(1680, 453183, 'The House of Bijapur', + 'illustrated album leaf|ink, opaque watercolor, gold, and silver on paper|codices'), + SearchData(1800, 31441, 'Knife with Sheath', 'knife with sheath|steel, jade, silver, emerald, ruby, gold|knives'), + SearchData(1779, 456949, 'Great Indian Fruit Bat', 'painting|pencil, ink, and opaque watercolor on paper|paintings'), + SearchData(-1250, 50598, 'Harpoon', 'harpoon|copper|metalwork'), + SearchData(149, 38740, 'Head of Buddha', 'head|stone|sculpture'), + SearchData(1580, 451262, '"Great Hornbill", Folio from the Shah Jahan Album', + 'album leaf|ink, opaque watercolor, and gold on paper|codices'), + SearchData(-1250, 50627, 'Ax with Punch Marks', 'ax|copper|metalwork'), + SearchData(-50, 51279, 'A Pair of Royal Earrings', 'wine ewer|gold|jewelry'), + SearchData(438, 38196, 'Nagaraja (Serpent King)', 'figure|stone|sculpture'), + SearchData(1850, 31444, 'Dagger with Sheath', + 'dagger with sheath|steel, jade, silver, gold, leather, wood, coral, turquoise|daggers'), + SearchData(1800, 31681, 'Dagger (Pesh-kabz) with Sheath', + 'dagger (pesh-kabz) with sheath|jade, steel, silver, wood, velvet, ruby, gold|daggers'), + SearchData(-249, 38363, 'Shard with Three Goddesses', 'shard|terracotta|sculpture'), + SearchData(-50, 38487, 'Disk Stone with a Four-Part Tracery Design of Palmettes', 'disk stone|stone|sculpture'), + SearchData(1816, 24013, 'Mail Shirt', 'mail shirt|iron, copper alloys, leather|mail'), SearchData( 1597, 446560, '"A King Offers to Make Amends to a Bereaved Mother", Folio from a Khamsa (Quintet) of Amir Khusrau Dihlavi', - 'folio from an illustrated manuscript|main support: ink, opaque watercolor, gold on paper margins: gold on dyed paper|codices', - 'is/mobile-large/DP120801.jpg', - 0.68), - SearchData(1650, 453341, 'Mango-Shaped Flask', - 'flask|rock crystal; set with gold, enamel, rubies, and emeralds|stone', 'is/mobile-large/DP240307.jpg', 0.75), - SearchData(1700, 24029, 'Helmet', 'helmet|steel, iron, gold|helmets', 'aa/mobile-large/DP152944.jpg', 0.75), - SearchData(1617, 453435, 'Coin', 'coin|silver|coins', 'is/mobile-large/99.35.6553.JPG', 1.07), - SearchData(1112, 38517, 'Standing Vishnu as Keshava', 'figure|stone|sculpture', 'as/mobile-large/DT5252.jpg', 0.54), - SearchData(1600, 453260, 'Calligraphic Roundel, inscribed "Ya \'Aziz" (Oh Mighty)', - 'roundel|sandstone; carved, traces of pigment|stone', 'is/mobile-large/DT8177.jpg', 0.80), - SearchData(1799, 56255, 'Buckle', 'buckle|jade (nephrite) with gold and stone inlays|jade', - 'as/mobile-large/DP108026.jpg', 1.25), - SearchData( - 1675, - 30363, - 'Priming Flask', - 'priming flask|ivory, iron, copper alloy|firearms accessories-flasks & primers', - 'aa/mobile-large/36.25.2423_004AA2016.jpg', - 1.78), - SearchData(666, 38559, 'Vajrapani, the Thunderbolt-bearing Bodhisattva', 'stele|stone|sculpture', - 'as/mobile-large/DP-15581-058.jpg', 0.74), - SearchData( - 1750, - 35949, - 'Cuirass (Char-aina) with Mail Shirt', - 'cuirass (char-aina) with mail shirt|steel, iron, gold, leather, textile|armor parts', - 'aa/mobile-large/DP147307.jpg', - 1.00), - SearchData(1780, 457783, 'Two Late Mughal Letters', 'non-illustrated single work|ink and gold on paper|codices', - 'is/mobile-large/DP273298.jpg', 0.59), - SearchData(150, 38509, 'Standing Indra', 'standing indra|sandstone|sculpture', 'as/mobile-large/DT5718.jpg', 0.80), - SearchData(1612, 453241, 'Pierced Window Screen (Jali)', 'screen|marble|stone', 'is/mobile-large/DT7720.jpg', 0.62), - SearchData(-50, 38734, 'Bust of a Female Deity (Yakshi?)', 'bust|gray clay|sculpture', - 'as/mobile-large/28_159_11.JPG', 0.80), - SearchData(599, 38424, 'Mirror Handle with a Woman Playing the Lute', 'mirror handle|chlorite schist|sculpture', - 'as/mobile-large/DT8673.jpg', 0.80), - SearchData(224, 38239, 'Drum panel with Great Departure and Temptation of the Buddha scenes', - 'relief|limestone|sculpture', 'as/mobile-large/DP-18911-001.jpg', 0.83), - SearchData(199, 38733, 'Head of a Female', 'head|terracotta|sculpture', 'as/mobile-large/28_159_10.JPG', 0.80), - SearchData(1749, 452777, 'Bottle with Gilded Flowers', 'bottle|glass, purple; mold blown, gilded|glass', - 'is/mobile-large/sf1975-194-2a.jpg', 0.67), - SearchData( - 1597, - 446561, - '"Alexander is Lowered into the Sea", Folio from a Khamsa (Quintet) of Amir Khusrau Dihlavi', - 'folio from an illustrated manuscript|main support: ink, watercolor, gold on paper margins: gold on dyed paper|codices', - 'is/mobile-large/DP120802.jpg', - 0.67), - SearchData(1687, 450750, 'Sash (Patka)', 'sash|cotton, silk; plain weave, embroidered|textiles-costumes', - 'is/mobile-large/DP272849.jpg', 5.09), - SearchData(1749, 56218, 'Dish in the shape of a chrysanthemum flower', 'dish|jade (nephrite)|jade', - 'as/mobile-large/DP108023.jpg', 1.41), - SearchData(1099, 38120, 'Vishnu with His Consorts, Lakshmi and Sarasvati', 'relief|black stone|sculpture', - 'as/mobile-large/57_51_7.jpg', 0.83), - SearchData(1749, 77164, 'Vessel in the form of a Mango', 'vessel|silver and fabric|metalwork', - 'as/mobile-large/DP-23606-001.jpg', 1.33), - SearchData(-50, 38487, 'Disk Stone with a Four-Part Tracery Design of Palmettes', 'disk stone|stone|sculpture', - 'as/mobile-large/DP-18252-016.jpg', 1.33), - SearchData(550, 38492, 'Lotus-Headed Fertility Goddess Lajja Gauri', 'relief|sandstone|sculpture', - 'as/mobile-large/DP253528.jpg', 1.33), - SearchData(-1250, 56621, 'Harpoon', 'harpoon|copper|metalwork', 'as/mobile-large/2001_433_77_O.JPG', 0.42), - SearchData(1649, 70582, 'Dye-Patterned Silk', 'lining|silk (clamp resist, dyed)|textiles-printed', - 'as/mobile-large/DP278411.jpg', 2.35), - SearchData( - 1783, - 65576, - 'Pichhwai for the Festival of Cows', - 'ceremonial cloth|painted and printed gold and silver leaf and opaque watercolor on indigo-dyed cotton|textiles-painted and printed', - 'as/mobile-large/DP156677.jpg', - 1.04), - SearchData(1749, 444832, 'Rock Crystal Box', 'box|rock crystal; inlaid with gold, inset with rubies|stone', - 'is/mobile-large/LC-95_14_12.jpg', 1.40), - SearchData( - 1675, - 24298, - 'Dagger with Sheath', - 'dagger with sheath|steel, nephrite, gold, rubies, emeralds, silver-gilt, leather|daggers', - 'aa/mobile-large/DP157696.jpg', - 0.73), - SearchData(549, 38251, 'Vishvarupa Vishnu', 'sculpture|stone|sculpture', 'as/mobile-large/DP-14892-001.jpg', 1.33), - SearchData(949, 713008, 'Miniature Brahmanical Shrine', 'shrine|copper alloy|metalwork', - 'as/mobile-large/LC-2016_242_sr1-002.jpg', 0.65), - SearchData(816, 39194, 'Vishnu Flanked by His Personified Attributes', 'group|bronze|sculpture', - 'as/mobile-large/DP702345.jpg', 0.63), - SearchData(1617, 444857, 'Coin', 'coin|silver|coins', 'is/mobile-large/LC-99.35.2385.jpg', 1.50), - SearchData(1649, 56228, 'Jewelled Dagger Handle', 'dagger-handle|nephrite, white with faint bluish tint|jade', - 'as/mobile-large/99834.jpg', 0.74), - SearchData(633, 78430, 'Mask of Bhairava', 'mask|copper alloy, possibly brass|sculpture', - 'as/mobile-large/DP702309.jpg', 0.70), - SearchData(1010, 768115, 'Shiva as Vanquisher of the Three Cities (Shiva Tripuravijaya)', - 'figure|copper alloy|sculpture', 'as/mobile-large/DP-16371-002.jpg', 0.75), - SearchData(1580, 451262, '"Great Hornbill", Folio from the Shah Jahan Album', - 'album leaf|ink, opaque watercolor, and gold on paper|codices', 'is/mobile-large/DP246533.jpg', 1.46), - SearchData(850, 39340, 'Crowned and Jeweled Buddha', 'sculpture|copper with silver inlay|metalwork', - 'as/mobile-large/1983_555_4_O.jpg', 0.58), - SearchData(-200, 38431, 'Standing Female Deity', 'figure|terracotta, black oxidation patina|sculpture', - 'as/mobile-large/DP251647.jpg', 0.75), - SearchData(949, 38615, 'Stele with Eight Great Events from the Life of the Buddha', - 'stele|black schist with traces of gilding|sculpture', 'as/mobile-large/11r1_61B.jpg', 0.75), + 'folio from an illustrated manuscript|main support: ink, opaque watercolor, gold on paper margins: gold on dyed paper|codices'), + SearchData(283, 38238, 'Drum panel depicting a stupa with the Buddha’s descent from Trayastrimsa Heaven', + 'drum slab|limestone|sculpture'), + SearchData(1649, 452813, 'Flower-Style Box with Drawers', + 'box|wood (poplar); overlaid with ebony inlaid with wood and incised, stained ivory|wood'), + SearchData(1149, 74502, 'The Goddess Durga Slaying the Demon Buffalo Mahisha', 'figure|brass|sculpture'), + SearchData(1799, 56226, 'Bracelet (one of a pair)', + 'bracelet|jade (nephrite) with gold, enamel, and semiprecious stone inlays|jade'), + SearchData(1149, 38937, 'Shadakshari Lokeshvara', 'figure|bronze with silver and copper inlay|sculpture'), + SearchData(483, 38198, 'Standing Buddha Offering Protection', 'figure|red sandstone|sculpture'), + SearchData(499, 38197, 'Tile with Impressed Figures of Emaciated Ascetics and Couples behind Balconies and Ganders', + 'tile|terracotta|sculpture'), + SearchData(1099, 38139, 'Preening Celestial Deity', 'figure|ferruginous stone|sculpture'), + SearchData(150, 38264, 'Head of a Demonic Male Deity', 'head|mottled red sandstone|sculpture'), + SearchData(0, 40097, 'Plaque with a Winged Goddess and Two Attendants', 'plaque|ivory|ivories'), SearchData(1612, 452680, 'Reception of a Persian Ambassador by a Mughal Prince', - 'illustrated album leaf|opaque watercolor and gold on paper|codices', 'is/mobile-large/DP291186.jpg', 1.01), - SearchData(-50, 64487, 'Pot', 'pot|ceramic|ceramics', 'as/mobile-large/2001_588_Strm1.JPG', 1.51), + 'illustrated album leaf|opaque watercolor and gold on paper|codices'), + SearchData(1827, 31466, 'Dagger (Katar) with Sheath', 'dagger (katar) with sheath|steel, gold, skin, silver|daggers'), + SearchData(0, 39320, 'One from a Pair of Ear Ornaments (Prakaravapra Kundala)', + 'earring|gold, sheet, wire and granulation|jewelry'), + SearchData(453, 38199, 'Standing Nagaraja (Serpent King)', 'figure|red sandstone|sculpture'), + SearchData(749, 39085, 'Reliquary in the Shape of a Stupa', 'reliquary|copper alloy|metalwork'), + SearchData(-1250, 50592, 'Anthropomorph', 'anthropomorph|copper|metalwork'), + SearchData(749, 38964, 'Stupa', 'stupa|bronze|metalwork'), + SearchData(549, 38601, 'Gaja Lakshmi, Goddess of Fortune', 'relief|stone|sculpture'), + SearchData(850, 39340, 'Crowned and Jeweled Buddha', 'sculpture|copper with silver inlay|metalwork'), + SearchData(1800, 200032, 'Chessmen (32)', 'chessmen|ivory with polychrome lacquer and gilding|chess sets'), + SearchData(1800, 31685, 'Dagger (Khanjar)', 'dagger (khanjar)|steel, nephrite, gold, ruby|daggers'), + SearchData(-249, 38086, 'Sphere with Scenes of Rites at the Shrine of a Yaksha (Male Nature Spirit)', + 'sphere|stone|sculpture'), + SearchData(1637, 451286, '"Rosette Bearing the Names and Titles of Shah Jahan", Folio from the Shah Jahan Album', + 'album leaf|ink, opaque watercolor, and gold on paper|codices'), + SearchData(1750, 31442, 'Knife (Kard) with Sheath', + 'knife (kard) with sheath|steel, nephrite, silver, gold, ruby, velvet, wood|daggers'), SearchData( - 1749, 447773, 'Bowl with Acanthus Leaf Handles', 'bowl|nephrite|stone', 'is/mobile-large/sf24-80-141b.jpg', 1.20), - SearchData(799, 38154, 'Torso of a Hindu Deity', 'figure|stone|sculpture', 'as/mobile-large/33_65_1_F.JPG', 0.59), - SearchData(-1250, 50626, 'Ax with Punch Marks', 'ax|copper|metalwork', 'as/mobile-large/2001_433_22.jpg', 0.67), - SearchData(-1000, 39432, 'Anthropomorph', 'anthropomorph|copper|metalwork', 'as/mobile-large/2000_284_37.jpg', 0.81), + 1150, 73214, 'Model of the Mahabodhi Temple', 'temple model|quartz-muscovite-chlorite-talc phyllite|sculpture'), + SearchData(-149, 38924, 'Goddess with Weapons in Her Hair', 'figure|copper alloy|sculpture'), + SearchData(874, 719420, 'Goddess Durga Slaying the Demon Mahisha', 'stele|schist|sculpture'), + SearchData(1540, 37849, 'Krishna Battles the Armies of the Demon Naraka: Page from a Bhagavata Purana Manuscript', + 'folio|opaque watercolor and ink on paper|paintings'), + SearchData(550, 38492, 'Lotus-Headed Fertility Goddess Lajja Gauri', 'relief|sandstone|sculpture'), + SearchData(1712, 75909, 'Palampore', 'palampore|cotton (painted resist and mordant, dyed)|textiles-painted and dyed'), + SearchData(1778, 22848, 'Cuirass', 'cuirass|steel, iron, textile (velvet)|armor parts-cuirasses'), + SearchData(-50, 40101, 'Plaque with Erotic Scene', 'plaque|bone|sculpture'), + SearchData(1649, 56204, 'Bowl', 'bowl|nephrite|jade'), SearchData( - -99, 38079, 'Ring Stone', 'ringstone fragment|stone|sculpture', 'as/mobile-large/1987_142_374_O.jpg', 1.84), - SearchData(150, 38264, 'Head of a Demonic Male Deity', 'head|mottled red sandstone|sculpture', - 'as/mobile-large/DT8557.jpg', 0.80), + 899, 38435, 'Diadem with Kinnaris (Half-Bird, Half-Female Creatures)', 'diadem|gold inset with garnet|jewelry'), + SearchData(1699, 56209, 'Shallow bowl in the shape of a flower', 'bowl|jade (nephrite)|jade'), + SearchData(1649, 56206, 'Dish', 'dish|nephrite, white|jade'), + SearchData(950, 74100, 'Dancing Ganesha', 'figure|red sandstone|sculpture'), + SearchData(1621, 444865, 'Coin', 'coin|gold|coins'), + SearchData(1624, 444867, 'Coin with Sign of Leo', 'coin|gold|coins'), + SearchData(199, 38599, 'Architectural Frieze with Merman Playing Musical Instruments', + 'architectural frieze|red sandstone|sculpture'), + SearchData(1650, 453281, 'Three Ornaments from a Bridle', 'ornaments|silver; stamped, punched, gilded|metal'), + SearchData(1850, 31840, 'Dagger', 'dagger|steel, gold, jade, ruby|daggers'), + SearchData(1049, 38148, 'Celestial Beauty (Surasundari)', 'figure|marble|sculpture'), + SearchData(1850, 31443, 'Dagger (Khanjar)', 'dagger (khanjar)|steel, rock crystal|daggers'), + SearchData(1800, 31823, 'Dagger (Pesh-kabz) with Sheath', + 'dagger (pesh-kabz) with sheath|steel, rock crystal, silver, enamel, velvet, wood|daggers'), + SearchData(1112, 38517, 'Standing Vishnu as Keshava', 'figure|stone|sculpture'), + SearchData(-1000, 50573, 'Antennae Sword', 'antennae sword|copper|metalwork'), SearchData( - 1775, - 22938, - 'Smallsword with Scabbard', - 'smallsword with scabbard|steel, gold, wood, leather, textile|swords', - 'aa/mobile-large/LC-26_145_338a_b-002.jpg', - 0.71), + 1750, 31837, 'Dagger (Jambiya)', 'dagger (jambiya)|steel, ivory (walrus), silver, ruby, rose quartz|daggers'), + SearchData(1735, 38038, 'A Lady Playing the Tanpura', + 'painting|ink, opaque and transparent watercolor, and gold on paper|paintings'), + SearchData(1049, 38146, 'Vishnu', 'stele|sandstone|sculpture'), + SearchData(1850, 31831, 'Dagger (Khanjar)', + 'dagger (khanjar)|steel, jade, gold, ruby, emerald, beryl, rock crystal, turquoise|daggers'), + SearchData(799, 38247, 'Vishnu Rescuing Gajendra, the Lord of the Elephants', 'stele|stone|sculpture'), + SearchData(1750, 31570, 'Dagger (Jambiya) with Sheath and Carrier', + 'dagger (jambiya) with sheath and carrier|steel, silver, jade, leather, wood, lacquer, velvet|daggers'), + SearchData(1099, 38120, 'Vishnu with His Consorts, Lakshmi and Sarasvati', 'relief|black stone|sculpture'), + SearchData(1800, 31862, 'Dagger (Katar) with Sheath', + 'dagger (katar) with sheath|steel, gold, ruby, emerald, diamond, wood, velvet|daggers'), + SearchData(-50, 38518, 'Goddess who bestows riches, probably Sri Lakshmi', 'plaque|molded terracotta|sculpture'), + SearchData(1649, 70582, 'Dye-Patterned Silk', 'lining|silk (clamp resist, dyed)|textiles-printed'), + SearchData(1799, 56219, 'Mirror frame', 'mirror frame|jade (nephrite)|jade'), + SearchData(1700, 33536, 'Hilt of a Dagger', 'hilt of a dagger|nephrite|daggers'), + SearchData(1605, 446266, 'Jahangir Watching an Elephant Fight', + 'illustrated single work|main support: ink, opaque watercolor, gold on paper margins: gold on dyed paper|codices'), + SearchData(1749, 856419, 'Processional image of the goddess Gauri', + 'head|brass with glass inlay and silver attachments|metalwork'), SearchData( - 1605, - 37936, - 'Six Gopis Seated Beneath Trees: Page from a Dispersed Bhagavata Purana (Ancient Stories of Lord Vishnu)', - 'folio|ink and opaque watercolor on paper|paintings', - 'as/mobile-large/DP152322.jpg', - 2.79), - SearchData(1149, 39193, 'Jain Digambara Tirthanhara Standing in Kayotsarga Meditation Posture', - 'figure|copper alloy|sculpture', 'as/mobile-large/DP-593-001.jpg', 0.61), - SearchData(250, 38755, 'Relief of a Female Deity', 'relief fragment|terracotta|sculpture', - 'as/mobile-large/33_50_19.JPG', 0.73), - SearchData(-1250, 50619, 'Ax Blade (Celt)', 'ax blade|copper|metalwork', 'as/mobile-large/2001_433_19_O.JPG', 0.87), - SearchData(600, 39128, 'Tara', 'figure|copper alloy|sculpture', 'as/mobile-large/DP253393.jpg', 0.75), - SearchData( - 1800, - 31825, - 'Dagger (Khanjar) with Sheath', - 'dagger (khanjar) with sheath|steel, jade, gold, ruby, emerald, diamond, silver, pearl, wood, velvet|daggers', - 'aa/mobile-large/36.25.652ab_003june2014.jpg', - 0.56), - SearchData(-100, 38087, 'Plaque with Goddess and Attendant', 'plaque|terracotta|sculpture', - 'as/mobile-large/1987_417_3.jpg', 0.65), - SearchData( - 1800, - 31862, - 'Dagger (Katar) with Sheath', - 'dagger (katar) with sheath|steel, gold, ruby, emerald, diamond, wood, velvet|daggers', - 'aa/mobile-large/36.25.692ab_010june2014.jpg', - 0.56), - SearchData(1710, 454619, 'The Emperor Aurangzeb Carried on a Palanquin', - 'illustrated single work|opaque watercolor and gold on paper|codices', 'is/mobile-large/DP116022.jpg', 0.68), - SearchData(1700, 32259, 'Dagger', 'dagger|steel, jade, ruby, gold|daggers', - 'aa/mobile-large/32.75.264_001june2014.jpg', 0.56), - SearchData(1850, 21922, 'Shield (Dhál)', 'shield (dhàl)|steel, gold, silk-velvet|shields', - 'aa/mobile-large/sfma02.5.4_165461.jpg', 0.96), - SearchData( - 1649, - 452813, - 'Flower-Style Box with Drawers', - 'box|wood (poplar); overlaid with ebony inlaid with wood and incised, stained ivory|wood', - 'is/mobile-large/wb-1976.176.1b.JPG', - 1.50), - SearchData(-149, 38924, 'Goddess with Weapons in Her Hair', 'figure|copper alloy|sculpture', - 'as/mobile-large/DP252968.jpg', 0.69), - SearchData( - 1700, 33536, 'Hilt of a Dagger', 'hilt of a dagger|nephrite|daggers', 'aa/mobile-large/DP158302.jpg', 0.84), - SearchData(1875, 500764, 'Turhā or Karnā', 'turhā or karnā|brass|aerophone-lip vibrated-trumpet / trombone', - 'mi/mobile-large/DP-12679-003.jpg', 1.97), - SearchData(1850, 31689, 'Dagger (Khanjar)', 'dagger (khanjar)|steel, horn, ruby|daggers', - 'aa/mobile-large/36.25.709_002june2014.jpg', 0.56), - SearchData(983, 39608, 'Celestial Attendant', 'figure|bronze|sculpture', 'as/mobile-large/1996_475_O1.jpg', 1.33), - SearchData(-283, 38084, 'Ring stone with goddesses and aquatic plants', 'ring stone|steatite (?)|sculpture', - 'as/mobile-large/DP-18252-025.jpg', 1.33), - SearchData(424, 38242, 'Linga with Face of Shiva (Ekamukhalinga)', 'linga|sandstone|sculpture', - 'as/mobile-large/DP297454.jpg', 0.75), + 1775, 22938, 'Smallsword with Scabbard', 'smallsword with scabbard|steel, gold, wood, leather, textile|swords'), SearchData(1700, 457771, 'A Bejewelled Maiden with a Parakeet', - 'illustrated single work|opaque watercolor and gold on paper|codices', 'is/mobile-large/DP269558.jpg', 0.70), - SearchData(1600, 456312, 'Spittoon or Incense Burner', 'spittoon|brass; cast in sections, joined, engraved|metal', - 'is/mobile-large/DP231251.jpg', 0.75), - SearchData(499, 40076, 'Tile with Impressed Figure of Emaciated Ascetics and Couples Behind Balconies', - 'tile|terracotta|ceramics', 'as/mobile-large/1998_122.jpg', 0.76), - SearchData(1799, 56230, 'Jewelled plate', 'plate|jade (nephrite) with gold and stone inlays|jade', - 'as/mobile-large/DP-14153-029.jpg', 1.14), - SearchData(1649, 56204, 'Bowl', 'bowl|nephrite|jade', 'as/mobile-large/32883.jpg', 1.41), - SearchData(1750, 24425, 'Lance', 'lance|steel, gold, silver|shafted weapons', 'aa/mobile-large/DP210386.jpg', 0.42), - SearchData(-1, 38367, 'Toy', 'toy|terracotta|sculpture', 'as/mobile-large/1984_491_16.jpg', 1.00), - SearchData(850, 37400, 'Stupa', 'stupa|bronze|sculpture', 'as/mobile-large/264819.jpg', 0.75), - SearchData(50, 38746, 'Figure of a Ram', 'statuette|terracotta|sculpture', 'as/mobile-large/33_50_8.JPG', 1.45), - SearchData(885, 38252, 'Four-Armed Goddess, possibly Sarada', 'figure|chlorite schist|sculpture', - 'as/mobile-large/DT5248.jpg', 0.80), - SearchData(1949, 72384, 'Standing Buddha', 'figure|bronze|sculpture', 'as/mobile-large/271785.jpg', 0.61), + 'illustrated single work|opaque watercolor and gold on paper|codices'), + SearchData(549, 38395, 'Head of a Male Figure', 'head|terracotta|sculpture'), + SearchData(791, 38134, 'Garuda (Vishnu\'s Mount) Seated in Royal Ease', 'figure|granite|sculpture'), + SearchData(-1250, 50630, 'Ax Blade (Celt)', 'ax blade|copper|metalwork'), + SearchData(885, 38252, 'Four-Armed Goddess, possibly Sarada', 'figure|chlorite schist|sculpture'), + SearchData(1099, 38131, 'Carved Conch with Lakshmi-Narayana', 'conch|shell with silver additions|shell'), + SearchData(1199, 38140, 'Tree Dryad (Shalabhanjika)', 'figure|ferruginous stone|sculpture'), + SearchData(1749, 56237, 'Dish', 'dish|jade (nephrite) with silver inlays|jade'), + SearchData(1750, 31726, 'Dagger (Katar)', 'dagger (katar)|steel|daggers'), + SearchData(-33, 38925, 'Female Worshipper in Front of a Column Support', 'figure and column|bronze|sculpture'), + SearchData(1783, 858237, 'Krishna Rajagopalaswamy, king of the cowherds', + 'painting|opaque watercolor and hand-colored silver on paper|paintings'), + SearchData(1049, 38132, 'Carved Conch', 'carved conch|shell|sculpture'), + SearchData(50, 73258, 'Jewelry Mold with Figures in a Temple', 'jewelry mold|argillite|sculpture'), + SearchData(266, 75200, 'Dharma-wheel pilaster (dharmacakrastambha)', 'relief|limestone|sculpture'), + SearchData(1799, 56225, 'Bracelet', 'bracelet|jade (nephrite) with gold, enamel, and stone inlays|jade'), + SearchData(1850, 31844, 'Dagger (Khanjar)', 'dagger (khanjar)|steel, nephrite, ruby, gold|daggers'), + SearchData(1850, 31691, 'Dagger (Jambiya) with Sheath', + 'dagger (jambiya) with sheath|steel, marble, gold, silver, silk, wood|daggers'), + SearchData(1749, 452734, 'Gilded Green Bottle', 'bottle|glass, green; mold blown, gilded, and silvered|glass'), + SearchData(100, 38430, 'Loving Couple (Mithuna)', 'disk|double-molded terracotta|sculpture'), + SearchData(1900, 503204, 'Sarangi', 'sarangi|wood, ivory, parchment, metal|chordophone-lute-bowed-unfretted'), + SearchData(1725, 37947, 'Rama Releases the Demon Spies Shuka and Sarana: Folio from the Siege of Lanka series', + 'folio|opaque watercolor, ink and gold on paper|paintings'), SearchData( - 1700, - 454738, - 'Goa Stone and Gold Case', - 'goa stone and container|container: gold; pierced, repoussé, with cast legs and finials goa stone: compound of organic and inorganic materials|metal', - 'is/mobile-large/DP116018.jpg', - 1.00), - SearchData(450, 38219, 'Ear Plug with Kinnari (Half-Bird, Half-Female Creature)', 'ear plug|terracotta|sculpture', - 'as/mobile-large/1987_142_390.jpg', 1.15), - SearchData( - 1150, - 73214, - 'Model of the Mahabodhi Temple', - 'temple model|quartz-muscovite-chlorite-talc phyllite|sculpture', - 'as/mobile-large/8 NEW DP257785r1_61E.jpg', - 0.75), + 1116, + 74906, + 'The Bodhisattva Avalokitesvara Expounding the Dharma to a Devotee: Folio from a Ashtasahasrika Prajnaparamita Sutra Manuscript', + 'folio|opaque watercolor on palm leaf|paintings'), + SearchData(749, 38514, 'The Brahmanical Triad: Brahma, Shiva, Vishnu', 'group|stone|sculpture'), + SearchData(1683, 38639, 'Three Arches', 'arches|wood|sculpture'), SearchData( 1627, 451270, '"Shah Jahan on a Terrace, Holding a Pendant Set With His Portrait", Folio from the Shah Jahan Album', - 'album leaf|ink, opaque watercolor, and gold on paper|codices', - 'is/mobile-large/DP246547.jpg', - 0.67), - SearchData(1585, 451265, '"Portrait of Maharaja Bhim Kanwar", Folio from the Shah Jahan Album', - 'album leaf|ink, opaque watercolor, and gold on paper|codices', 'is/mobile-large/DP246545.jpg', 0.67), - SearchData(449, 38731, 'Head of a Buddha', 'head|mottled red and white sandstone|sculpture', - 'as/mobile-large/28_159_5.JPG', 0.64), - SearchData(1850, 31443, 'Dagger (Khanjar)', 'dagger (khanjar)|steel, rock crystal|daggers', - 'aa/mobile-large/36.25.1047_001july2014.jpg', 0.56), - SearchData( - 449, 38205, 'Standing Four-Armed Vishnu', 'figure|terracotta|sculpture', 'as/mobile-large/DP323567.jpg', 0.75), - SearchData(50, 38728, 'Head of Buddha', 'head|red sandstone|sculpture', 'as/mobile-large/28_97_2.JPG', 0.74), - SearchData(453, 38199, 'Standing Nagaraja (Serpent King)', 'figure|red sandstone|sculpture', - 'as/mobile-large/1991_83_1_O.jpg', 0.55), - SearchData( - 949, 74100, 'Dancing Ganesha', 'figure|mottled red sandstone|sculpture', 'as/mobile-large/DP158921.jpg', 0.75), - SearchData(1149, 74502, 'The Goddess Durga Slaying the Demon Buffalo Mahisha', 'figure|brass|sculpture', - 'as/mobile-large/DP231297.jpg', 0.75), - SearchData( - 1949, 44669, 'Standing Nagini (Study Collection)', 'figure||sculpture', 'as/mobile-large/1991_453_2.JPG', 0.48), - SearchData(9, 39345, 'Crowned Buddha', 'figure|brass|sculpture', 'as/mobile-large/DT229537.jpg', 0.80), - SearchData(1749, 452734, 'Gilded Green Bottle', 'bottle|glass, green; mold blown, gilded, and silvered|glass', - 'is/mobile-large/sf1975-64a.jpg', 0.57), - SearchData(1793, 24490, 'Flintlock Blunderbuss', 'flintlock blunderbuss|steel, wood, gold, silver|firearms', - 'aa/mobile-large/DP165542.jpg', 2.07), - SearchData(749, 37412, 'Panel of a Portable Buddhist Shrine with Dancer and Musician Celebrants', - 'panel|ivory with traces of color|ivories', 'as/mobile-large/1988_148_1.jpg', 1.34), - SearchData(-249, 38086, 'Sphere with Scenes of Rites at the Shrine of a Yaksha (Male Nature Spirit)', - 'sphere|stone|sculpture', 'as/mobile-large/DP-18252-030.jpg', 1.33), - SearchData(1674, 452815, 'Shield with Hunting and Landscape Vignettes', - 'shield|steel; with gold overlay|arms and armor', 'is/mobile-large/DP153429.jpg', 1.25), - SearchData( - 1786, - 24328, - 'Saber (Talwar) with Scabbard', - 'saber (talwar) with scabbard|steel, silver, diamonds enamel, leather|swords', - 'aa/mobile-large/DP163746.jpg', - 0.77), - SearchData(1850, 31844, 'Dagger (Khanjar)', 'dagger (khanjar)|steel, nephrite, ruby, gold|daggers', - 'aa/mobile-large/36.25.674_002june2014.jpg', 0.56), - SearchData( - 1800, - 31681, - 'Dagger (Pesh-kabz) with Sheath', - 'dagger (pesh-kabz) with sheath|jade, steel, silver, wood, velvet, ruby, gold|daggers', - 'aa/mobile-large/36.25.700ab_002june2014.jpg', - 0.56), - SearchData(116, 38381, 'Princely Couple', 'relief|terracotta|sculpture', 'as/mobile-large/31_82_6.JPG', 0.70), - SearchData(1792, 203778, 'Chandelier', 'chandelier|ivory|natural substances-ivory', - 'es/mobile-large/DP-13853-084.jpg', 1.00), - SearchData(1000, 39489, 'Meditating Buddha with Alms Bowl Enthroned in a Foliated Niche', - 'architectural element|stone|sculpture', 'as/mobile-large/DP158746.jpg', 1.33), + 'album leaf|ink, opaque watercolor, and gold on paper|codices'), + SearchData(1649, 56228, 'Jewelled Dagger Handle', 'dagger-handle|nephrite, white with faint bluish tint|jade'), + SearchData(1740, 64893, 'The Demon Hiranyaksha Departs the Demon Palace: Folio from a Bhagavata Purana Series', + 'folio|opaque watercolor, ink and gold on paper|paintings'), + SearchData(-1000, 50599, 'Serrated Harpoon', 'harpoon|copper|metalwork'), + SearchData(549, 38453, 'Standing Jain Tirthankara Parshvanatha', 'figure|sandstone|sculpture'), + SearchData(649, 38250, 'Linga with Face of Shiva (Ekamukhalinga)', 'linga|stone|sculpture'), + SearchData(1750, 24932, 'Helmet', 'helmet|steel, brass, gold, textile, metallic thread|helmets'), + SearchData(749, 39341, 'Karttikeya, the God of War', 'figure|brass with silver inlay|sculpture'), + SearchData(1650, 24306, 'Dagger (Katar) and Sheath', 'dagger (katar) and sheath|steel, leather, gold|daggers'), + SearchData(199, 38733, 'Head of a Female', 'head|terracotta|sculpture'), + SearchData(963, 39326, 'Standing Vishnu', 'figure|copper alloy|metalwork'), + SearchData(1850, 31851, 'Dagger (Khanjar) with Sheath', + 'dagger (khanjar) with sheath|steel, jade, gold, velvet, pearl, turquoise, wood|daggers'), ]; diff --git a/lib/ui/common/collectible_item.dart b/lib/ui/common/collectible_item.dart index 36a33026..cd771361 100644 --- a/lib/ui/common/collectible_item.dart +++ b/lib/ui/common/collectible_item.dart @@ -8,7 +8,7 @@ import 'package:wonders/ui/screens/collectible_found/collectible_found_screen.da class CollectibleItem extends StatelessWidget with GetItMixin { CollectibleItem(this.collectible, {this.size = 64.0, Key? key}) : super(key: key) { // pre-fetch the image, so it's ready if we show the collectible found screen. - _imageProvider = NetworkImage(AppImage.maybeAddImgProxy(collectible.imageUrl)); + _imageProvider = NetworkImage(collectible.imageUrl); _imageProvider.resolve(ImageConfiguration()).addListener(ImageStreamListener((_, __) {})); } From 5065002bce965e9909e9b619d0bacf012a65ef33 Mon Sep 17 00:00:00 2001 From: Shawn Date: Tue, 3 Oct 2023 14:11:59 -0600 Subject: [PATCH 3/9] Update artifact related data classes to use the self-hosted url --- lib/logic/data/artifact_data.dart | 10 ++ lib/logic/data/highlight_data.dart | 102 +----------------- .../data/wonders_data/search/search_data.dart | 14 +-- 3 files changed, 21 insertions(+), 105 deletions(-) diff --git a/lib/logic/data/artifact_data.dart b/lib/logic/data/artifact_data.dart index 1a7bc95e..68217714 100644 --- a/lib/logic/data/artifact_data.dart +++ b/lib/logic/data/artifact_data.dart @@ -14,6 +14,8 @@ class ArtifactData { required this.objectBeginYear, required this.objectEndYear, }); + static const String baseSelfHostedImagePath = 'https://www.wonderous.info/met/'; + final String objectId; // Artifact ID, used to identify through MET server calls. final String title; // Artifact title / name final String image; // Artifact primary image URL (can have multiple) @@ -28,4 +30,12 @@ class ArtifactData { final String dimension; // Width and height of physical artifact final String classification; // Type of artifact final String culture; // Culture of artifact + + String get selfHostedImageUrl => getSelfHostedImageUrl(objectId); + String get selfHostedImageUrlSmall => getSelfHostedImageUrlSmall(objectId); + String get selfHostedImageUrlMedium => getSelfHostedImageUrlMedium(objectId); + + static String getSelfHostedImageUrl(String id) => '$baseSelfHostedImagePath$id.jpg'; + static String getSelfHostedImageUrlSmall(String id) => '$baseSelfHostedImagePath${id}_600.jpg'; + static String getSelfHostedImageUrlMedium(String id) => '$baseSelfHostedImagePath${id}_2000.jpg'; } diff --git a/lib/logic/data/highlight_data.dart b/lib/logic/data/highlight_data.dart index aa8b2463..1b4d7e72 100644 --- a/lib/logic/data/highlight_data.dart +++ b/lib/logic/data/highlight_data.dart @@ -1,10 +1,9 @@ import 'package:wonders/common_libs.dart'; +import 'package:wonders/logic/data/artifact_data.dart'; class HighlightData { HighlightData({ required this.title, - required this.imageUrl, - required this.imageUrlSmall, required this.culture, required this.artifactId, required this.wonder, @@ -17,8 +16,6 @@ class HighlightData { static List get all => _highlights; final String title; - final String imageUrl; - final String imageUrlSmall; final String culture; final String date; @@ -29,6 +26,9 @@ class HighlightData { String get id => artifactId; String get subtitle => wondersLogic.getData(wonder).artifactCulture; + + String get imageUrl => ArtifactData.getSelfHostedImageUrl(artifactId); + String get imageUrlSmall => ArtifactData.getSelfHostedImageUrlSmall(artifactId); } // Note: look up a human readable page with: @@ -41,8 +41,6 @@ List _highlights = [ wonder: WonderType.chichenItza, artifactId: '503940', culture: 'Mayan', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/mi/web-large/DT4624a.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/mi/original/DT4624a.jpg', date: '7th–9th century', ), HighlightData( @@ -50,8 +48,6 @@ List _highlights = [ wonder: WonderType.chichenItza, artifactId: '312595', culture: 'Maya', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/ao/web-large/DP-12659-001.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/ao/original/DP-12659-001.jpg', date: '6th–9th century', ), HighlightData( @@ -59,8 +55,6 @@ List _highlights = [ wonder: WonderType.chichenItza, artifactId: '310551', culture: 'Maya', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/ao/web-large/DP102949.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/ao/original/DP102949.jpg', date: 'mid-7th–9th century', ), HighlightData( @@ -68,8 +62,6 @@ List _highlights = [ wonder: WonderType.chichenItza, artifactId: '316304', culture: 'Maya', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/ao/web-large/DP219258.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/ao/original/DP219258.jpg', date: '9th–10th century', ), HighlightData( @@ -77,8 +69,6 @@ List _highlights = [ wonder: WonderType.chichenItza, artifactId: '313151', culture: 'Maya', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/ao/web-large/1979.206.953_a.JPG', - imageUrl: 'https://images.metmuseum.org/CRDImages/ao/original/1979.206.953_a.JPG', date: '7th–8th century', ), HighlightData( @@ -86,8 +76,6 @@ List _highlights = [ wonder: WonderType.chichenItza, artifactId: '310480', culture: 'Maya', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/ao/web-large/DP102948.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/ao/original/DP102948.jpg', date: '10th–11th century', ), @@ -97,8 +85,6 @@ List _highlights = [ wonder: WonderType.christRedeemer, artifactId: '764815', culture: '', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/ph/web-large/DP-15801-131.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/ph/original/DP-15801-131.jpg', date: '1864–66', ), HighlightData( @@ -106,8 +92,6 @@ List _highlights = [ wonder: WonderType.christRedeemer, artifactId: '502019', culture: 'Native American (Brazilian)', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/mi/web-large/midp89.4.1453.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/mi/original/midp89.4.1453.jpg', date: '19th century', ), HighlightData( @@ -115,8 +99,6 @@ List _highlights = [ wonder: WonderType.christRedeemer, artifactId: '764814', culture: '', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/ph/web-large/DP-15801-129.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/ph/original/DP-15801-129.jpg', date: '1864–66', ), HighlightData( @@ -124,8 +106,6 @@ List _highlights = [ wonder: WonderType.christRedeemer, artifactId: '764816', culture: '', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/ph/web-large/DP-15801-133.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/ph/original/DP-15801-133.jpg', date: '1864–66', ), HighlightData( @@ -133,8 +113,6 @@ List _highlights = [ wonder: WonderType.christRedeemer, artifactId: '501319', culture: 'African American (Brazil - Afro-Brazilian?)', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/mi/web-large/midp89.4.703.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/mi/original/midp89.4.703.jpg', date: 'late 19th century', ), @@ -144,8 +122,6 @@ List _highlights = [ wonder: WonderType.colosseum, artifactId: '251350', culture: 'Roman', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/gr/web-large/DP331280.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/gr/original/DP331280.jpg', date: 'A.D. 150–175', ), HighlightData( @@ -153,8 +129,6 @@ List _highlights = [ wonder: WonderType.colosseum, artifactId: '255960', culture: 'Roman', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/gr/web-large/DP145605.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/gr/original/DP145605.jpg', date: '4th century A.D.', ), HighlightData( @@ -162,8 +136,6 @@ List _highlights = [ wonder: WonderType.colosseum, artifactId: '247993', culture: 'Roman', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/gr/web-large/DP337220.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/gr/original/DP337220.jpg', date: 'ca. A.D. 14–37', ), HighlightData( @@ -171,8 +143,6 @@ List _highlights = [ wonder: WonderType.colosseum, artifactId: '250464', culture: 'Roman', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/gr/web-large/DP105842.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/gr/original/DP105842.jpg', date: 'late 2nd–early 3rd century A.D.', ), HighlightData( @@ -180,8 +150,6 @@ List _highlights = [ wonder: WonderType.colosseum, artifactId: '251476', culture: 'Roman', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/gr/web-large/DP357289.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/gr/original/DP357289.jpg', date: '1st–2nd century A.D.', ), HighlightData( @@ -189,8 +157,6 @@ List _highlights = [ wonder: WonderType.colosseum, artifactId: '255960', culture: 'Roman', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/gr/web-large/DP145605.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/gr/original/DP145605.jpg', date: '4th century A.D.', ), @@ -200,8 +166,6 @@ List _highlights = [ wonder: WonderType.greatWall, artifactId: '79091', culture: 'French', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/ci/web-large/DT2183.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/ci/original/DT2183.jpg', date: 'second half 16th century', ), HighlightData( @@ -209,8 +173,6 @@ List _highlights = [ wonder: WonderType.greatWall, artifactId: '781812', culture: 'China', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/as/web-large/DP-17100-001.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/as/original/DP-17100-001.jpg', date: 'early 17th century', ), HighlightData( @@ -218,8 +180,6 @@ List _highlights = [ wonder: WonderType.greatWall, artifactId: '40213', culture: 'China', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/as/web-large/DP704217.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/as/original/DP704217.jpg', date: 'early 15th century', ), HighlightData( @@ -227,8 +187,6 @@ List _highlights = [ wonder: WonderType.greatWall, artifactId: '40765', culture: 'China', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/as/web-large/DP229015.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/as/original/DP229015.jpg', date: '15th century', ), HighlightData( @@ -236,8 +194,6 @@ List _highlights = [ wonder: WonderType.greatWall, artifactId: '57612', culture: 'China', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/as/web-large/DP164061.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/as/original/DP164061.jpg', date: '', ), HighlightData( @@ -245,8 +201,6 @@ List _highlights = [ wonder: WonderType.greatWall, artifactId: '666573', culture: 'China', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/as/web-large/DP356342.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/as/original/DP356342.jpg', date: 'early 15th century', ), @@ -256,8 +210,6 @@ List _highlights = [ wonder: WonderType.machuPicchu, artifactId: '313295', culture: 'Inca', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/ao/web-large/DP-27120-001.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/ao/original/DP-27120-001.jpg', date: '14th–early 16th century', ), HighlightData( @@ -265,8 +217,6 @@ List _highlights = [ wonder: WonderType.machuPicchu, artifactId: '316926', culture: 'Inca', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/ao/web-large/DP158704.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/ao/original/DP158704.jpg', date: '15th–early 16th century', ), HighlightData( @@ -274,8 +224,6 @@ List _highlights = [ wonder: WonderType.machuPicchu, artifactId: '309944', culture: 'Inca', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/ao/web-large/DP-13440-023.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/ao/original/DP-13440-023.jpg', date: '1400–1533', ), HighlightData( @@ -283,8 +231,6 @@ List _highlights = [ wonder: WonderType.machuPicchu, artifactId: '309436', culture: 'Moche', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/ao/web-large/67.92.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/ao/original/67.92.jpg', date: '4th–7th century', ), HighlightData( @@ -292,8 +238,6 @@ List _highlights = [ wonder: WonderType.machuPicchu, artifactId: '309960', culture: 'Inca', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/ao/web-large/DP-13440-031.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/ao/original/DP-13440-031.jpg', date: '1400–1533', ), HighlightData( @@ -301,8 +245,6 @@ List _highlights = [ wonder: WonderType.machuPicchu, artifactId: '316873', culture: 'Aztec', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/ao/web-large/DP341942.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/ao/original/DP341942.jpg', date: '1400–1521', ), @@ -312,8 +254,6 @@ List _highlights = [ wonder: WonderType.petra, artifactId: '325900', culture: 'Nabataean', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/an/web-large/ME67_246_19.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/an/original/ME67_246_19.jpg', date: 'ca. 1st century A.D.', ), HighlightData( @@ -321,8 +261,6 @@ List _highlights = [ wonder: WonderType.petra, artifactId: '325902', culture: 'Nabataean', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/an/web-large/ME67_246_21.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/an/original/ME67_246_21.jpg', date: 'ca. 1st century A.D.', ), HighlightData( @@ -330,8 +268,6 @@ List _highlights = [ wonder: WonderType.petra, artifactId: '325919', culture: 'Nabataean', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/an/web-large/ME67_246_38.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/an/original/ME67_246_38.jpg', date: 'ca. 1st century A.D.', ), HighlightData( @@ -339,8 +275,6 @@ List _highlights = [ wonder: WonderType.petra, artifactId: '325884', culture: 'Nabataean', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/an/web-large/ME67_246_3.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/an/original/ME67_246_3.jpg', date: 'ca. 1st century A.D.', ), HighlightData( @@ -348,8 +282,6 @@ List _highlights = [ wonder: WonderType.petra, artifactId: '325887', culture: 'Nabataean', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/an/web-large/ME67_246_6.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/an/original/ME67_246_6.jpg', date: 'ca. 1st century A.D.', ), HighlightData( @@ -357,8 +289,6 @@ List _highlights = [ wonder: WonderType.petra, artifactId: '325891', culture: 'Nabataean', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/an/web-large/ME67_246_10.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/an/original/ME67_246_10.jpg', date: 'ca. 1st century A.D.', ), @@ -368,8 +298,6 @@ List _highlights = [ wonder: WonderType.pyramidsGiza, artifactId: '543864', culture: '', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/eg/web-large/DP330260.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/eg/original/DP330260.jpg', date: 'ca. 1919–1885 B.C.', ), HighlightData( @@ -377,8 +305,6 @@ List _highlights = [ wonder: WonderType.pyramidsGiza, artifactId: '546488', culture: '', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/eg/web-large/LC-34_1_183_EGDP033257.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/eg/original/LC-34_1_183_EGDP033257.jpg', date: 'ca. 1981–1640 B.C.', ), HighlightData( @@ -386,8 +312,6 @@ List _highlights = [ wonder: WonderType.pyramidsGiza, artifactId: '557137', culture: '', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/eg/web-large/15.3.205_EGDP015425.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/eg/original/15.3.205_EGDP015425.jpg', date: 'ca. 1850–1640 B.C.', ), HighlightData( @@ -395,8 +319,6 @@ List _highlights = [ wonder: WonderType.pyramidsGiza, artifactId: '543900', culture: '', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/eg/web-large/DP240451.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/eg/original/DP240451.jpg', date: 'ca. 2420–2389 B.C. or later', ), HighlightData( @@ -404,8 +326,6 @@ List _highlights = [ wonder: WonderType.pyramidsGiza, artifactId: '543935', culture: '', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/eg/web-large/DP109397.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/eg/original/DP109397.jpg', date: 'ca. 2490–2472 B.C.', ), HighlightData( @@ -413,8 +333,6 @@ List _highlights = [ wonder: WonderType.pyramidsGiza, artifactId: '544782', culture: '', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/eg/web-large/DP225343.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/eg/original/DP225343.jpg', date: 'ca. 1336–1327 B.C.', ), @@ -424,8 +342,6 @@ List _highlights = [ wonder: WonderType.tajMahal, artifactId: '453341', culture: '', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/is/web-large/DP240307.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/is/original/DP240307.jpg', date: 'mid-17th century', ), HighlightData( @@ -433,8 +349,6 @@ List _highlights = [ wonder: WonderType.tajMahal, artifactId: '453243', culture: '', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/is/web-large/DP214317.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/is/original/DP214317.jpg', date: 'late 17th century', ), HighlightData( @@ -442,8 +356,6 @@ List _highlights = [ wonder: WonderType.tajMahal, artifactId: '73309', culture: 'India (Gujarat)', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/as/web-large/DP138506.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/as/original/DP138506.jpg', date: 'mid-16th–17th century', ), HighlightData( @@ -451,8 +363,6 @@ List _highlights = [ wonder: WonderType.tajMahal, artifactId: '24932', culture: 'Indian, Mughal', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/aa/web-large/1988.147_007mar2015.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/aa/original/1988.147_007mar2015.jpg', date: '18th century', ), HighlightData( @@ -460,8 +370,6 @@ List _highlights = [ wonder: WonderType.tajMahal, artifactId: '56230', culture: 'India', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/as/web-large/DP-14153-029.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/as/original/DP-14153-029.jpg', date: '18th–19th century', ), HighlightData( @@ -469,8 +377,6 @@ List _highlights = [ wonder: WonderType.tajMahal, artifactId: '35633', culture: 'Indian', - imageUrlSmall: 'https://images.metmuseum.org/CRDImages/aa/web-large/DP219616.jpg', - imageUrl: 'https://images.metmuseum.org/CRDImages/aa/original/DP219616.jpg', date: 'dated A.H. 1042/A.D. 1632–33', ), ]; diff --git a/lib/logic/data/wonders_data/search/search_data.dart b/lib/logic/data/wonders_data/search/search_data.dart index dd13fd9d..e62dcd62 100644 --- a/lib/logic/data/wonders_data/search/search_data.dart +++ b/lib/logic/data/wonders_data/search/search_data.dart @@ -1,17 +1,17 @@ +import 'package:wonders/logic/data/artifact_data.dart'; + class SearchData { - static const String baseImagePath = 'https://images.metmuseum.org/CRDImages/'; - static const missingIds = [313256, 327544, 327596, 545776, 38549, 38578, 38473, 38598, 38153, 38203, 64486, 64487]; - const SearchData(this.year, this.id, this.title, this.keywords, this.imagePath, [this.aspectRatio = 0]); + const SearchData(this.year, this.id, this.title, this.keywords, [this.aspectRatio = 0]); + final int year; final int id; - final String imagePath; final String keywords; final String title; final double aspectRatio; - String get imageUrl => baseImagePath + imagePath; + String get imageUrl => ArtifactData.getSelfHostedImageUrl('$id'); + String get imageUrlSmall => ArtifactData.getSelfHostedImageUrlSmall('$id'); // used by the search helper tool: - String write() => - "SearchData($year, $id, '$title', '$keywords', '$imagePath'${aspectRatio == 0 ? '' : ', ${aspectRatio.toStringAsFixed(2)}'})"; + String write() => "SearchData($year, $id, '$title', '$keywords')"; } From dce9138640f44fa328c35062b5d33bea884ba879 Mon Sep 17 00:00:00 2001 From: Shawn Date: Tue, 3 Oct 2023 14:13:01 -0600 Subject: [PATCH 4/9] Update helper scripts --- lib/_tools/artifact_download_helper.dart | 169 ++++++++++++++--------- lib/_tools/artifact_search_helper.dart | 29 ++-- 2 files changed, 122 insertions(+), 76 deletions(-) diff --git a/lib/_tools/artifact_download_helper.dart b/lib/_tools/artifact_download_helper.dart index fe5c5404..8a9f7e3d 100644 --- a/lib/_tools/artifact_download_helper.dart +++ b/lib/_tools/artifact_download_helper.dart @@ -4,6 +4,8 @@ import 'dart:io'; import 'package:http/http.dart'; import 'package:image/image.dart'; import 'package:path_provider/path_provider.dart'; +import 'package:wonders/logic/data/collectible_data.dart'; +import 'package:wonders/logic/data/highlight_data.dart'; import 'package:wonders/logic/data/wonders_data/chichen_itza_data.dart'; import 'package:wonders/logic/data/wonders_data/christ_redeemer_data.dart'; import 'package:wonders/logic/data/wonders_data/great_wall_data.dart'; @@ -12,9 +14,8 @@ import 'package:wonders/logic/data/wonders_data/petra_data.dart'; import 'package:wonders/logic/data/wonders_data/pyramids_giza_data.dart'; import 'package:wonders/logic/data/wonders_data/taj_mahal_data.dart'; -import '../common_libs.dart'; -import '../logic/data/collectible_data.dart'; -import '../logic/data/wonders_data/colosseum_data.dart'; +import 'package:wonders/common_libs.dart'; +import 'package:wonders/logic/data/wonders_data/colosseum_data.dart'; class ArtifactDownloadHelper extends StatefulWidget { const ArtifactDownloadHelper({super.key}); @@ -54,56 +55,23 @@ class _ArtifactDownloadHelperState extends State { ); } - Future downloadImage(String id, String url) async { - //final sizes = [400, 800, 1600, 3000]; - debugPrint('Downloading $url to $imagesDir'); - final imgResponse = await get(Uri.parse(url)); - // If the image is less than a KB, it's probably a 404 image. - if (imgResponse.bodyBytes.lengthInBytes < 2000) { - return false; - } - File file = File('$imagesDir/$id.jpg'); - file.writeAsBytesSync(imgResponse.bodyBytes); - print('img saved @ ${file.path}'); - return true; - } - - Future downloadImageAndJson(String id) async { - File imgFile = File('$imagesDir/$id.jpg'); - if (imgFile.existsSync()) { - print('Skipping $id'); - await resizeImage(id, 600); - return; - } - Uri uri = Uri.parse('https://collectionapi.metmuseum.org/public/collection/v1/objects/$id'); - print('Downloading $id'); - final response = await http.get(uri); - Map json = jsonDecode(response.body) as Map; - if (!json.containsKey('primaryImage') || json['primaryImage'].isEmpty) { - print('Missing $id'); - missingIds.add(id); - return; - } - final url = json['primaryImage'] as String; - //bool isPublicDomain = json['isPublicDomain'] as bool; - final downloadSuccess = await downloadImage(id, url); - if (downloadSuccess) { - File file = File('$imagesDir/$id.json'); - file.writeAsStringSync(response.body); - print('json saved @ ${file.path}'); - } else { - print('Missing $id'); - missingIds.add(id); - } - } - void downloadArtifacts() async { - /// Download collectibles - // for (var c in collectiblesData) { - // downloadImageAndJson(c.artifactId); - // } missingIds.clear(); + /// Download collectibles + for (var c in collectiblesData) { + if (await downloadImageAndJson(c.artifactId) == false) { + missingIds.add(c.artifactId); + } + } + + /// Download Highights + for (var h in HighlightData.all) { + if (await downloadImageAndJson(h.artifactId) == false) { + missingIds.add(h.artifactId); + } + } + /// Download search artifacts final searchData = ChichenItzaData().searchData + ChristRedeemerData().searchData + @@ -113,25 +81,94 @@ class _ArtifactDownloadHelperState extends State { PetraData().searchData + PyramidsGizaData().searchData + TajMahalData().searchData; - for (var a in searchData) { - await downloadImageAndJson(a.id.toString()); - print('${searchData.indexOf(a) + 1}/${searchData.length}'); - } - print('Missing IDs: $missingIds'); + + // for (var a in searchData) { + // final id = a.id.toString(); + // if (await downloadImageAndJson(id) == false) { + // missingIds.add(id); + // } + // final index = searchData.indexOf(a) + 1; + // if (index % 100 == 0) { + // debugPrint('$index/${searchData.length}'); + // } + // } + debugPrint('Download complete :) Missing IDs: $missingIds'); } - Future resizeImage(String id, int size) async { - final resizedFile = File('$imagesDir/${id}_$size.jpg'); - final srcFile = File('$imagesDir/$id.jpg'); - print('Resizing $id...'); - if (resizedFile.existsSync() || !srcFile.existsSync()) return; - final img = decodeJpg(srcFile.readAsBytesSync()); - if (img != null) { - final resizedImg = copyResize(img, width: size); - resizedFile.writeAsBytesSync(encodeJpg(resizedImg)); - print('Resized $id'); + Future downloadImageAndJson(String id) async { + File jsonFile = File('$imagesDir/$id.json'); + late Map json; + if (jsonFile.existsSync()) { + json = jsonDecode(jsonFile.readAsStringSync()) as Map; } else { - print('Failed to resize $id'); + debugPrint('Downloading $id'); + // Fetch JSON for id + Uri uri = Uri.parse('https://collectionapi.metmuseum.org/public/collection/v1/objects/$id'); + final response = await http.get(uri); + json = jsonDecode(response.body) as Map; } + + // Check if primaryImage field is valid + if (!json.containsKey('primaryImage') || json['primaryImage'].isEmpty) { + return false; + } + // Download image + final url = json['primaryImage'] as String; + //bool isPublicDomain = json['isPublicDomain'] as bool; + File imgFile = File('$imagesDir/$id.jpg'); + // If image does not already exist, download it + if (!imgFile.existsSync()) { + await downloadImage(id, url); + if (!imgFile.existsSync()) return false; + } + // Try to resize image + if (await resizeImage(id, [600, 2000]) == false) { + debugPrint('Failed to resize $id'); + imgFile.deleteSync(); + return false; + } + // Write JSON to file + if (!jsonFile.existsSync()) { + jsonFile.writeAsStringSync(jsonEncode(json)); + debugPrint('json saved @ ${jsonFile.path}'); + } + return true; + } + + Future downloadImage(String id, String url) async { + //final sizes = [400, 800, 1600, 3000]; + debugPrint('Downloading $url to $imagesDir'); + final imgResponse = await get(Uri.parse(url)); + // If the image is less than a KB, it's probably a 404 image. + if (imgResponse.bodyBytes.lengthInBytes < 2000) { + return false; + } + File file = File('$imagesDir/$id.jpg'); + file.writeAsBytesSync(imgResponse.bodyBytes); + debugPrint('img saved @ ${file.path}'); + return true; + } + + Future resizeImage(String id, List sizes) async { + final srcFile = File('$imagesDir/$id.jpg'); + //debugPrint('Resizing $id...'); + try { + final img = decodeJpg(srcFile.readAsBytesSync()); + if (img != null) { + // Write various sizes to disk + for (var size in sizes) { + final resizedFile = File('$imagesDir/${id}_$size.jpg'); + if (await resizedFile.exists()) continue; + final resizedImg = copyResize(img, width: size); + await resizedFile.writeAsBytes(encodeJpg(resizedImg, quality: 90)); + debugPrint('Resized ${id}_$size'); + } + return true; + } + } catch (e) { + debugPrint('Failed to resize $id'); + debugPrint(e.toString()); + } + return false; } } diff --git a/lib/_tools/artifact_search_helper.dart b/lib/_tools/artifact_search_helper.dart index 1171c75f..5f74d24e 100644 --- a/lib/_tools/artifact_search_helper.dart +++ b/lib/_tools/artifact_search_helper.dart @@ -164,12 +164,12 @@ class _ArtifactSearchHelperState extends State { if (year < minYear || year > maxYear) return _logError(id, 'year is out of range'); String? imageUrlSmall = json['primaryImageSmall']; - if (imageUrlSmall == null) return _logError(id, 'no small image url'); - if (!imageUrlSmall.startsWith(SearchData.baseImagePath)) { - return _logError(id, 'unexpected image uri: "$imageUrlSmall"'); - } - String imagePath = imageUrlSmall.substring(SearchData.baseImagePath.length); - imagePath = imagePath.replaceFirst('/web-large/', '/mobile-large/'); + if (imageUrlSmall == null || imageUrlSmall.isEmpty) return _logError(id, 'no small image url'); + // if (!imageUrlSmall.startsWith(SearchData.baseImagePath)) { + // return _logError(id, 'unexpected image uri: "$imageUrlSmall"'); + // } + // String imageUrl = imageUrlSmall.substring(SearchData.baseImagePath.length); + // imageUrl = imageUrl.replaceFirst('/web-large/', '/mobile-large/'); double? aspectRatio = 0; if (checkImages) aspectRatio = await _getAspectRatio(imageUrlSmall); @@ -180,7 +180,6 @@ class _ArtifactSearchHelperState extends State { id, _escape(json['title']), _getKeywords(json), - imagePath, aspectRatio, ); @@ -229,12 +228,22 @@ class _ArtifactSearchHelperState extends State { String suggestions = _getSuggestions(entries); + const fileNames = { + WonderType.chichenItza: 'chichen_itza', + WonderType.christRedeemer: 'christ_redeemer', + WonderType.colosseum: 'colosseum', + WonderType.greatWall: 'great_wall', + WonderType.machuPicchu: 'machu_picchu', + WonderType.petra: 'petra', + WonderType.pyramidsGiza: 'pyramids_giza', + WonderType.tajMahal: 'taj_mahal', + }; Directory dir = await getApplicationDocumentsDirectory(); - String type = wonder!.type.toString().split('.').last; - String path = '${dir.path}/$type.dart'; + String name = '${fileNames[wonder!.type]}_search_data.dart'; + String path = '${dir.path}/$name'; File file = File(path); await file.writeAsString('$suggestions\n\n$output'); - _log('- Wrote file: $type.dart'); + _log('- Wrote file: $name'); debugPrint(path); _nextWonder(); } From fdaabec9f35f4ea549e024061d49a980b647f4e0 Mon Sep 17 00:00:00 2001 From: Shawn Date: Tue, 3 Oct 2023 14:14:40 -0600 Subject: [PATCH 5/9] Update search result tile to use smaller image --- .../screens/artifact/artifact_search/widgets/_result_tile.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ui/screens/artifact/artifact_search/widgets/_result_tile.dart b/lib/ui/screens/artifact/artifact_search/widgets/_result_tile.dart index e14b1c22..0a866811 100644 --- a/lib/ui/screens/artifact/artifact_search/widgets/_result_tile.dart +++ b/lib/ui/screens/artifact/artifact_search/widgets/_result_tile.dart @@ -10,7 +10,7 @@ class _ResultTile extends StatelessWidget { Widget build(BuildContext context) { final Widget image = AppImage( key: ValueKey(data.id), - image: NetworkImage(data.imageUrl), + image: NetworkImage(data.imageUrlSmall), fit: BoxFit.cover, scale: 0.5, distractor: true, From 8f2625bc233da9b5cf5e72cdfaf16289d8d8b8ed Mon Sep 17 00:00:00 2001 From: Shawn Date: Tue, 3 Oct 2023 14:15:36 -0600 Subject: [PATCH 6/9] Rename MetAPI to ArtifactAPI etc --- .../{met_api_logic.dart => artifact_api_logic.dart} | 11 ++++++----- ...met_api_service.dart => artifact_api_service.dart} | 10 ++++++++-- .../artifact_details/artifact_details_screen.dart | 8 ++++---- .../{_image_btn.dart => _artifact_image_btn.dart} | 10 +++++----- 4 files changed, 23 insertions(+), 16 deletions(-) rename lib/logic/{met_api_logic.dart => artifact_api_logic.dart} (59%) rename lib/logic/{met_api_service.dart => artifact_api_service.dart} (72%) rename lib/ui/screens/artifact/artifact_details/widgets/{_image_btn.dart => _artifact_image_btn.dart} (82%) diff --git a/lib/logic/met_api_logic.dart b/lib/logic/artifact_api_logic.dart similarity index 59% rename from lib/logic/met_api_logic.dart rename to lib/logic/artifact_api_logic.dart index a083eecc..692ec5ea 100644 --- a/lib/logic/met_api_logic.dart +++ b/lib/logic/artifact_api_logic.dart @@ -3,17 +3,18 @@ import 'dart:collection'; import 'package:wonders/common_libs.dart'; import 'package:wonders/logic/common/http_client.dart'; import 'package:wonders/logic/data/artifact_data.dart'; -import 'package:wonders/logic/met_api_service.dart'; +import 'package:wonders/logic/artifact_api_service.dart'; -class MetAPILogic { +class ArtifactAPILogic { final HashMap _artifactCache = HashMap(); - MetAPIService get service => GetIt.I.get(); + ArtifactAPIService get service => GetIt.I.get(); /// Returns artifact data by ID. Returns null if artifact cannot be found. */ - Future getArtifactByID(String id) async { + Future getArtifactByID(String id, {bool selfHosted = false}) async { if (_artifactCache.containsKey(id)) return _artifactCache[id]; - ServiceResult result = (await service.getObjectByID(id)); + ServiceResult result = + (await (selfHosted ? service.getSelfHostedObjectByID(id) : service.getMetObjectByID(id))); if (!result.success) throw $strings.artifactDetailsErrorNotFound(id); ArtifactData? artifact = result.content; return _artifactCache[id] = artifact; diff --git a/lib/logic/met_api_service.dart b/lib/logic/artifact_api_service.dart similarity index 72% rename from lib/logic/met_api_service.dart rename to lib/logic/artifact_api_service.dart index c8cb9a3e..c14c1aec 100644 --- a/lib/logic/met_api_service.dart +++ b/lib/logic/artifact_api_service.dart @@ -1,14 +1,20 @@ import 'package:wonders/logic/common/http_client.dart'; import 'package:wonders/logic/data/artifact_data.dart'; -class MetAPIService { +class ArtifactAPIService { final String _baseMETUrl = 'https://collectionapi.metmuseum.org/public/collection/v1'; + final String _baseSelfHostedUrl = 'https://www.wonderous.info/met'; - Future> getObjectByID(String id) async { + Future> getMetObjectByID(String id) async { HttpResponse? response = await HttpClient.send('$_baseMETUrl/objects/$id'); return ServiceResult(response, _parseArtifactData); } + Future> getSelfHostedObjectByID(String id) async { + HttpResponse? response = await HttpClient.send('$_baseSelfHostedUrl/$id.json'); + return ServiceResult(response, _parseArtifactData); + } + ArtifactData? _parseArtifactData(Map content) { // Source: https://metmuseum.github.io/ return ArtifactData( diff --git a/lib/ui/screens/artifact/artifact_details/artifact_details_screen.dart b/lib/ui/screens/artifact/artifact_details/artifact_details_screen.dart index 2b3df379..f9ef8c04 100644 --- a/lib/ui/screens/artifact/artifact_details/artifact_details_screen.dart +++ b/lib/ui/screens/artifact/artifact_details/artifact_details_screen.dart @@ -7,7 +7,7 @@ import 'package:wonders/ui/common/gradient_container.dart'; import 'package:wonders/ui/common/modals/fullscreen_url_img_viewer.dart'; part 'widgets/_info_column.dart'; -part 'widgets/_image_btn.dart'; +part 'widgets/_artifact_image_btn.dart'; class ArtifactDetailsScreen extends StatefulWidget { const ArtifactDetailsScreen({Key? key, required this.artifactId}) : super(key: key); @@ -18,7 +18,7 @@ class ArtifactDetailsScreen extends StatefulWidget { } class _ArtifactDetailsScreenState extends State { - late final _future = metAPILogic.getArtifactByID(widget.artifactId); + late final _future = metAPILogic.getArtifactByID(widget.artifactId, selfHosted: true); @override Widget build(BuildContext context) { @@ -37,7 +37,7 @@ class _ArtifactDetailsScreenState extends State { } else { content = hzMode ? Row(children: [ - Expanded(child: _ImageBtn(data: data!)), + Expanded(child: _ArtifactImageBtn(data: data!)), Expanded(child: Center(child: SizedBox(width: 600, child: _InfoColumn(data: data)))), ]) : CustomScrollView( @@ -48,7 +48,7 @@ class _ArtifactDetailsScreenState extends State { leading: SizedBox.shrink(), expandedHeight: context.heightPx * .5, collapsedHeight: context.heightPx * .35, - flexibleSpace: _ImageBtn(data: data!), + flexibleSpace: _ArtifactImageBtn(data: data!), ), SliverToBoxAdapter(child: _InfoColumn(data: data)), ], diff --git a/lib/ui/screens/artifact/artifact_details/widgets/_image_btn.dart b/lib/ui/screens/artifact/artifact_details/widgets/_artifact_image_btn.dart similarity index 82% rename from lib/ui/screens/artifact/artifact_details/widgets/_image_btn.dart rename to lib/ui/screens/artifact/artifact_details/widgets/_artifact_image_btn.dart index 2ae8f924..c7e25a1e 100644 --- a/lib/ui/screens/artifact/artifact_details/widgets/_image_btn.dart +++ b/lib/ui/screens/artifact/artifact_details/widgets/_artifact_image_btn.dart @@ -1,7 +1,7 @@ part of '../artifact_details_screen.dart'; -class _ImageBtn extends StatelessWidget { - const _ImageBtn({Key? key, required this.data}) : super(key: key); +class _ArtifactImageBtn extends StatelessWidget { + const _ArtifactImageBtn({Key? key, required this.data}) : super(key: key); final ArtifactData data; @override @@ -28,9 +28,9 @@ class _ImageBtn extends StatelessWidget { bottom: false, minimum: EdgeInsets.symmetric(vertical: $styles.insets.sm), child: Hero( - tag: data.image, + tag: data.selfHostedImageUrl, child: AppImage( - image: NetworkImage(data.image), + image: NetworkImage(data.selfHostedImageUrl), fit: BoxFit.contain, distractor: true, scale: FullscreenUrlImgViewer.imageScale, // so the image isn't reloaded @@ -44,6 +44,6 @@ class _ImageBtn extends StatelessWidget { } void _handleImagePressed(BuildContext context) { - appLogic.showFullscreenDialogRoute(context, FullscreenUrlImgViewer(urls: [data.image])); + appLogic.showFullscreenDialogRoute(context, FullscreenUrlImgViewer(urls: [data.selfHostedImageUrl])); } } From c4e34edfd26069a396361578b79f534a37b5faf2 Mon Sep 17 00:00:00 2001 From: Shawn Date: Tue, 3 Oct 2023 14:15:48 -0600 Subject: [PATCH 7/9] Use self-hosted youtube thumbs --- lib/ui/screens/editorial/widgets/_scrolling_content.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ui/screens/editorial/widgets/_scrolling_content.dart b/lib/ui/screens/editorial/widgets/_scrolling_content.dart index 199a505a..db6e386b 100644 --- a/lib/ui/screens/editorial/widgets/_scrolling_content.dart +++ b/lib/ui/screens/editorial/widgets/_scrolling_content.dart @@ -170,7 +170,7 @@ class _YouTubeThumbnail extends StatelessWidget { final String id; final String caption; - String get imageUrl => 'https://img.youtube.com/vi/$id/hqdefault.jpg'; + String get imageUrl => 'https://www.wonderous.info/youtube/$id.jpg'; @override Widget build(BuildContext context) { From 79631cd91d7163c2267440510e0179fa724af293 Mon Sep 17 00:00:00 2001 From: Shawn Date: Tue, 3 Oct 2023 14:16:01 -0600 Subject: [PATCH 8/9] Remove proxy code --- lib/ui/common/controls/app_image.dart | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/lib/ui/common/controls/app_image.dart b/lib/ui/common/controls/app_image.dart index 2ce7537e..1a5b6c59 100644 --- a/lib/ui/common/controls/app_image.dart +++ b/lib/ui/common/controls/app_image.dart @@ -28,14 +28,6 @@ class AppImage extends StatefulWidget { final Color? color; final double? scale; - static String maybeAddImgProxy(String url) { - String proxyUrl = 'proxy.wonderous.app:8081/'; - if (!url.contains(proxyUrl) && (url.contains('images.metmuseum.org') || url.contains('img.youtube.com'))) { - url = 'https://$proxyUrl$url'; - } - return url; - } - @override State createState() => _AppImageState(); } @@ -59,15 +51,9 @@ class _AppImageState extends State { void _updateImage() { if (widget.image == _sourceImage) return; _sourceImage = widget.image; - /// Apply proxy to MET api images - if(kIsWeb && _sourceImage is NetworkImage){ - final url = (_sourceImage as NetworkImage).url; - _sourceImage = NetworkImage(AppImage.maybeAddImgProxy(url)); - } _displayImage = _capImageSize(_addRetry(_sourceImage)); } - @override Widget build(BuildContext context) { return ImageFade( @@ -102,7 +88,7 @@ class _AppImageState extends State { ImageProvider? _capImageSize(ImageProvider? image) { // Disable resizing for web as it is currently single-threaded and causes the UI to lock up when resizing large images - if(kIsWeb) return image; // TODO: Remove this when the web engine is updated to support non-blocking image resizing + if (kIsWeb) return image; // TODO: Remove this when the web engine is updated to support non-blocking image resizing if (image == null || widget.scale == null) return image; final MediaQueryData mq = MediaQuery.of(context); final Size screenSize = mq.size * mq.devicePixelRatio * widget.scale!; From bbd6a68731123c60a8430aaf957a3a65fa9fcd6a Mon Sep 17 00:00:00 2001 From: Shawn Date: Tue, 3 Oct 2023 14:17:20 -0600 Subject: [PATCH 9/9] Cleanup --- lib/main.dart | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/lib/main.dart b/lib/main.dart index 92fe2edf..fcdb3f77 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -4,15 +4,13 @@ import 'package:flutter_native_splash/flutter_native_splash.dart'; import 'package:wonders/common_libs.dart'; import 'package:wonders/logic/collectibles_logic.dart'; import 'package:wonders/logic/locale_logic.dart'; -import 'package:wonders/logic/met_api_logic.dart'; -import 'package:wonders/logic/met_api_service.dart'; +import 'package:wonders/logic/artifact_api_logic.dart'; +import 'package:wonders/logic/artifact_api_service.dart'; import 'package:wonders/logic/timeline_logic.dart'; import 'package:wonders/logic/unsplash_logic.dart'; import 'package:wonders/logic/wallpaper_logic.dart'; import 'package:wonders/logic/wonders_logic.dart'; -import '_tools/artifact_download_helper.dart'; - void main() async { WidgetsBinding widgetsBinding = WidgetsFlutterBinding.ensureInitialized(); // Keep native splash screen up until app is finished bootstrapping @@ -32,7 +30,6 @@ class WondersApp extends StatelessWidget with GetItMixin { WondersApp({Key? key}) : super(key: key); @override Widget build(BuildContext context) { - return MaterialApp(home: ArtifactDownloadHelper()); final locale = watchX((SettingsLogic s) => s.currentLocale); return MaterialApp.router( routeInformationProvider: appRouter.routeInformationProvider, @@ -61,8 +58,8 @@ void registerSingletons() { // Timeline / Events GetIt.I.registerLazySingleton(() => TimelineLogic()); // Search - GetIt.I.registerLazySingleton(() => MetAPILogic()); - GetIt.I.registerLazySingleton(() => MetAPIService()); + GetIt.I.registerLazySingleton(() => ArtifactAPILogic()); + GetIt.I.registerLazySingleton(() => ArtifactAPIService()); // Settings GetIt.I.registerLazySingleton(() => SettingsLogic()); // Unsplash @@ -80,7 +77,7 @@ WondersLogic get wondersLogic => GetIt.I.get(); TimelineLogic get timelineLogic => GetIt.I.get(); SettingsLogic get settingsLogic => GetIt.I.get(); UnsplashLogic get unsplashLogic => GetIt.I.get(); -MetAPILogic get metAPILogic => GetIt.I.get(); +ArtifactAPILogic get metAPILogic => GetIt.I.get(); CollectiblesLogic get collectiblesLogic => GetIt.I.get(); WallPaperLogic get wallpaperLogic => GetIt.I.get(); LocaleLogic get localeLogic => GetIt.I.get();