Add basic coins scene

This commit is contained in:
2023-09-12 13:16:07 +01:00
parent a756fff95f
commit c1d179cbc7
245 changed files with 2863 additions and 2818 deletions
+3
View File
@@ -22,3 +22,6 @@ dist-ssr
*.njsproj *.njsproj
*.sln *.sln
*.sw? *.sw?
# fetchable assets
public/photos
+1 -2
View File
@@ -1,2 +1 @@
node_modules node_modules
public
+86
View File
@@ -0,0 +1,86 @@
import { readFile, readdir, writeFile } from "fs/promises";
import process from "process";
import path from "path";
import Vibrant from "node-vibrant";
import { spawn } from "child_process";
const baseDir = process.argv[2];
const asyncSpawn = (command, args) => {
return new Promise((resolve, reject) => {
const child = spawn(command, args, {
stdio: "inherit",
});
child.on("error", reject);
child.stdout?.on("data", process.stdout.write);
child.stderr?.on("data", process.stderr.write);
child.on("close", (code) => {
if (code === 0) {
resolve(code);
} else {
reject(code);
}
});
});
};
const downloadFile = async (url) => {
const filepath = url.split("catalogue")[1];
const folder = path.join(
baseDir,
"..",
filepath.split("/").slice(0, -1).join("/"),
);
await asyncSpawn("mkdir", ["-p", folder]);
const destination = path.join(baseDir, "..", filepath);
await asyncSpawn("curl", [url, "--output", destination]);
return destination;
};
const processCoin = async (country, filename) => {
console.log(" ", filename);
const filepath = path.join(baseDir, country, filename);
try {
const coin = JSON.parse(await readFile(filepath, { encoding: "utf-8" }));
if (coin?.obverse?.picture) {
const destination = await downloadFile(coin.obverse.picture);
coin.obverse.picture = destination.split("public")[1];
const palette = await Vibrant.from(destination).getPalette();
coin.color = "rgb(" + palette.Vibrant.rgb.join(",") + ")";
}
if (coin?.reverse?.picture) {
const destination = await downloadFile(coin.reverse.picture);
coin.reverse.picture = destination.split("public")[1];
}
if (coin?.edge?.picture) {
const destination = await downloadFile(coin.edge.picture);
coin.edge.picture = destination.split("public")[1];
}
await writeFile(filepath, JSON.stringify(coin, null, 2));
} catch (e) {
console.log("\nfailed for", filename, "\n");
console.error(e);
}
};
const processCountry = async (country) => {
console.log(country);
const coins = (await readdir(path.join(baseDir, country))).filter((file) =>
file.endsWith(".json"),
);
for (const coin of coins) {
await processCoin(country, coin);
}
};
const countries = (await readdir(baseDir, { withFileTypes: true }))
.filter((file) => file.isDirectory())
.map(({ name }) => name);
for (const country of countries) {
await processCountry(country);
}
+5 -3
View File
@@ -10,22 +10,24 @@
"preview": "vite preview" "preview": "vite preview"
}, },
"dependencies": { "dependencies": {
"@react-three/fiber": "^8.14.1", "@react-three/drei": "^9.83.9",
"@react-three/fiber": "^8.13.0",
"prettier": "^3.0.3", "prettier": "^3.0.3",
"react": "^18.2.0", "react": "^18.2.0",
"react-dom": "^18.2.0", "react-dom": "^18.2.0",
"three": "^0.156.1" "three": "^0.152.2"
}, },
"devDependencies": { "devDependencies": {
"@types/react": "^18.2.15", "@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7", "@types/react-dom": "^18.2.7",
"@types/three": "^0.156.0", "@types/three": "^0.152.0",
"@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0", "@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react-swc": "^3.3.2", "@vitejs/plugin-react-swc": "^3.3.2",
"eslint": "^8.45.0", "eslint": "^8.45.0",
"eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3", "eslint-plugin-react-refresh": "^0.4.3",
"node-vibrant": "^3.2.1-alpha.1",
"typescript": "^5.0.2", "typescript": "^5.0.2",
"vite": "^4.4.5" "vite": "^4.4.5"
} }
-13
View File
File diff suppressed because one or more lines are too long
+5 -6
View File
@@ -48,7 +48,7 @@
} }
], ],
"lettering_translation": "Bank of Algeria\r\n20\r\nDinars", "lettering_translation": "Bank of Algeria\r\n20\r\nDinars",
"picture": "https://en.numista.com/catalogue/photos/algerie/466-original.jpg", "picture": "/photos/algerie/466-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/algerie/466-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/algerie/466-180.jpg",
"picture_copyright": "Ulmo" "picture_copyright": "Ulmo"
}, },
@@ -60,14 +60,12 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/algerie/465-original.jpg", "picture": "/photos/algerie/465-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/algerie/465-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/algerie/465-180.jpg",
"picture_copyright": "Ulmo" "picture_copyright": "Ulmo"
}, },
"comments": "The Barbary Lion or Atlas Lion (Panthera leo) found in Algeria is considered now a sub-species.<br />\r\nIts tri-Nominal name or Sub-species name is Panthera leo barbaricus<br />\r\n<br />\r\n1413 (1992) Proof Set:<br />\r\n<a href=\"https://en.numista.com/catalogue/images/5e10f4e8b66ee.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5e10f4e8b66ee.jpg\" alt=\"\" width=\"200\" height=\"113\" /></a> <a href=\"https://en.numista.com/catalogue/images/5e10f4f0848dd.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5e10f4f0848dd.jpg\" alt=\"\" width=\"200\" height=\"113\" /></a><br />\r\n<a href=\"https://en.numista.com/catalogue/images/5e10f4fa32459.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5e10f4fa32459.jpg\" alt=\"\" width=\"199\" height=\"97\" /></a> <a href=\"https://en.numista.com/catalogue/images/5e10f503271fa.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5e10f503271fa.jpg\" alt=\"\" width=\"199\" height=\"97\" /></a><br />\r\n<a href=\"https://en.numista.com/catalogue/images/5e10f50b5a379.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5e10f50b5a379.jpg\" alt=\"\" width=\"200\" height=\"150\" /></a><br />\r\n© gdch6ng<br />\r\n<br />\r\n1417 (1997) Mint Set<br />\r\n<a href=\"https://en.numista.com/catalogue/images/5fd111243d6f1.gif\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5fd111243d6f1.gif\" alt=\"\" width=\"200\" height=\"140\" /></a><a href=\"https://en.numista.com/catalogue/images/5fd1113157d87.gif\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5fd1113157d87.gif\" alt=\"\" width=\"200\" height=\"150\" /></a><a href=\"https://en.numista.com/catalogue/images/5fd1113e602a4.gif\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5fd1113e602a4.gif\" alt=\"\" width=\"199\" height=\"149\" /></a><a href=\"https://en.numista.com/catalogue/images/5fd1114cb1b43.gif\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5fd1114cb1b43.gif\" alt=\"\" width=\"200\" height=\"133\" /></a><a href=\"https://en.numista.com/catalogue/images/5fd1115b1f542.gif\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5fd1115b1f542.gif\" alt=\"\" width=\"200\" height=\"135\" /></a><br />\r\n<br />\r\n1421 (2000) Mint Set:<br />\r\n<a href=\"https://en.numista.com/catalogue/images/598ff0643d796.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/598ff0643d796.jpg\" alt=\"\" width=\"200\" height=\"122\" /></a> <a href=\"https://en.numista.com/catalogue/images/598ff0734177c.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/598ff0734177c.jpg\" alt=\"\" width=\"200\" height=\"133\" /></a> <a href=\"https://en.numista.com/catalogue/images/598ff084c544c.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/598ff084c544c.jpg\" alt=\"\" width=\"200\" height=\"115\" /></a><br />\r\n<a href=\"https://en.numista.com/catalogue/images/598ff090852da.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/598ff090852da.jpg\" alt=\"\" width=\"200\" height=\"124\" /></a> <a href=\"https://en.numista.com/catalogue/images/598ff09e398ed.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/598ff09e398ed.jpg\" alt=\"\" width=\"200\" height=\"113\" /></a><br />\r\n© gregg", "comments": "The Barbary Lion or Atlas Lion (Panthera leo) found in Algeria is considered now a sub-species.<br />\r\nIts tri-Nominal name or Sub-species name is Panthera leo barbaricus<br />\r\n<br />\r\n1413 (1992) Proof Set:<br />\r\n<a href=\"https://en.numista.com/catalogue/images/5e10f4e8b66ee.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5e10f4e8b66ee.jpg\" alt=\"\" width=\"200\" height=\"113\" /></a> <a href=\"https://en.numista.com/catalogue/images/5e10f4f0848dd.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5e10f4f0848dd.jpg\" alt=\"\" width=\"200\" height=\"113\" /></a><br />\r\n<a href=\"https://en.numista.com/catalogue/images/5e10f4fa32459.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5e10f4fa32459.jpg\" alt=\"\" width=\"199\" height=\"97\" /></a> <a href=\"https://en.numista.com/catalogue/images/5e10f503271fa.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5e10f503271fa.jpg\" alt=\"\" width=\"199\" height=\"97\" /></a><br />\r\n<a href=\"https://en.numista.com/catalogue/images/5e10f50b5a379.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5e10f50b5a379.jpg\" alt=\"\" width=\"200\" height=\"150\" /></a><br />\r\n© gdch6ng<br />\r\n<br />\r\n1417 (1997) Mint Set<br />\r\n<a href=\"https://en.numista.com/catalogue/images/5fd111243d6f1.gif\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5fd111243d6f1.gif\" alt=\"\" width=\"200\" height=\"140\" /></a><a href=\"https://en.numista.com/catalogue/images/5fd1113157d87.gif\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5fd1113157d87.gif\" alt=\"\" width=\"200\" height=\"150\" /></a><a href=\"https://en.numista.com/catalogue/images/5fd1113e602a4.gif\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5fd1113e602a4.gif\" alt=\"\" width=\"199\" height=\"149\" /></a><a href=\"https://en.numista.com/catalogue/images/5fd1114cb1b43.gif\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5fd1114cb1b43.gif\" alt=\"\" width=\"200\" height=\"133\" /></a><a href=\"https://en.numista.com/catalogue/images/5fd1115b1f542.gif\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5fd1115b1f542.gif\" alt=\"\" width=\"200\" height=\"135\" /></a><br />\r\n<br />\r\n1421 (2000) Mint Set:<br />\r\n<a href=\"https://en.numista.com/catalogue/images/598ff0643d796.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/598ff0643d796.jpg\" alt=\"\" width=\"200\" height=\"122\" /></a> <a href=\"https://en.numista.com/catalogue/images/598ff0734177c.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/598ff0734177c.jpg\" alt=\"\" width=\"200\" height=\"133\" /></a> <a href=\"https://en.numista.com/catalogue/images/598ff084c544c.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/598ff084c544c.jpg\" alt=\"\" width=\"200\" height=\"115\" /></a><br />\r\n<a href=\"https://en.numista.com/catalogue/images/598ff090852da.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/598ff090852da.jpg\" alt=\"\" width=\"200\" height=\"124\" /></a> <a href=\"https://en.numista.com/catalogue/images/598ff09e398ed.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/598ff09e398ed.jpg\" alt=\"\" width=\"200\" height=\"113\" /></a><br />\r\n© gregg",
"tags": [ "tags": ["Cat or feline"],
"Cat or feline"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -96,5 +94,6 @@
"id": "5345", "id": "5345",
"name": "Algiers" "name": "Algiers"
} }
] ],
"color": "rgb(196,172,76)"
} }
+6 -7
View File
@@ -47,7 +47,7 @@
], ],
"unabridged_legend": "8 escudos", "unabridged_legend": "8 escudos",
"lettering_translation": "Argentinian Republic\r\nIn Unity and Liberty·PTS·J·8S\r\n·1813·\r\n·First Coin of the Motherland·", "lettering_translation": "Argentinian Republic\r\nIn Unity and Liberty·PTS·J·8S\r\n·1813·\r\n·First Coin of the Motherland·",
"picture": "https://en.numista.com/catalogue/photos/argentine/1495-original.jpg", "picture": "/photos/argentine/1495-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/argentine/1495-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/argentine/1495-180.jpg",
"picture_copyright": "Essor Prof" "picture_copyright": "Essor Prof"
}, },
@@ -60,7 +60,7 @@
} }
], ],
"lettering_translation": "One Peso\r\nProvinces of the Rio de la Plata\r\n2006", "lettering_translation": "One Peso\r\nProvinces of the Rio de la Plata\r\n2006",
"picture": "https://en.numista.com/catalogue/photos/argentine/1496-original.jpg", "picture": "/photos/argentine/1496-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/argentine/1496-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/argentine/1496-180.jpg",
"picture_copyright": "Essor Prof" "picture_copyright": "Essor Prof"
}, },
@@ -89,9 +89,7 @@
"maxYear": 2013 "maxYear": 2013
} }
], ],
"tags": [ "tags": ["Coin depiction"],
"Coin depiction"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -121,7 +119,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Smooth", "description": "Smooth",
"picture": "https://en.numista.com/catalogue/photos/argentine/1203-original.jpg", "picture": "/photos/argentine/1203-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/argentine/1203-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/argentine/1203-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -150,5 +148,6 @@
"id": "22", "id": "22",
"name": "Istituto Poligrafico e Zecca dello Stato" "name": "Istituto Poligrafico e Zecca dello Stato"
} }
] ],
"color": "rgb(176,140,84)"
} }
+6 -7
View File
@@ -46,7 +46,7 @@
} }
], ],
"lettering_translation": "Republic of Argentina\r\nIn unity and liberty", "lettering_translation": "Republic of Argentina\r\nIn unity and liberty",
"picture": "https://en.numista.com/catalogue/photos/argentine/1072-original.jpg", "picture": "/photos/argentine/1072-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/argentine/1072-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/argentine/1072-180.jpg",
"picture_copyright": "nalaberong" "picture_copyright": "nalaberong"
}, },
@@ -58,14 +58,12 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/argentine/1073-original.jpg", "picture": "/photos/argentine/1073-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/argentine/1073-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/argentine/1073-180.jpg",
"picture_copyright": "nalaberong" "picture_copyright": "nalaberong"
}, },
"comments": "<a href=\"https://en.numista.com/catalogue/images/5e924a85b29ae.png\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5e924a85b29ae.png\" alt=\"\" width=\"200\" height=\"209\" /></a><br />\r\nLogo of the Argentina Bicentennial (designed by Cristina Fernández)<br />\r\n<br />\r\nDifference between &quot;normal eyes&quot; and &quot;bulging eyes&quot; for the 2 pesos 2010:<br />\r\n<a href=\"https://en.numista.com/catalogue/images/621796992c4a5.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/621796992c4a5.jpg\" alt=\"\" width=\"200\" height=\"150\" /></a>", "comments": "<a href=\"https://en.numista.com/catalogue/images/5e924a85b29ae.png\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5e924a85b29ae.png\" alt=\"\" width=\"200\" height=\"209\" /></a><br />\r\nLogo of the Argentina Bicentennial (designed by Cristina Fernández)<br />\r\n<br />\r\nDifference between &quot;normal eyes&quot; and &quot;bulging eyes&quot; for the 2 pesos 2010:<br />\r\n<a href=\"https://en.numista.com/catalogue/images/621796992c4a5.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/621796992c4a5.jpg\" alt=\"\" width=\"200\" height=\"150\" /></a>",
"tags": [ "tags": ["Revolution or civil war"],
"Revolution or civil war"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -95,7 +93,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Segmented reeding", "description": "Segmented reeding",
"picture": "https://en.numista.com/catalogue/photos/argentine/834-original.jpg", "picture": "/photos/argentine/834-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/argentine/834-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/argentine/834-180.jpg",
"picture_copyright": "Phil59" "picture_copyright": "Phil59"
}, },
@@ -104,5 +102,6 @@
"id": "1336", "id": "1336",
"name": "Buenos Aires" "name": "Buenos Aires"
} }
] ],
"color": "rgb(188,153,112)"
} }
+6 -7
View File
@@ -45,7 +45,7 @@
} }
], ],
"lettering_translation": "Republic of Argentina · In Union and Liberty", "lettering_translation": "Republic of Argentina · In Union and Liberty",
"picture": "https://en.numista.com/catalogue/photos/argentine/1180-original.jpg", "picture": "/photos/argentine/1180-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/argentine/1180-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/argentine/1180-180.jpg",
"picture_copyright": "Ulmo" "picture_copyright": "Ulmo"
}, },
@@ -57,7 +57,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/argentine/1181-original.jpg", "picture": "/photos/argentine/1181-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/argentine/1181-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/argentine/1181-180.jpg",
"picture_copyright": "Ulmo" "picture_copyright": "Ulmo"
}, },
@@ -75,9 +75,7 @@
"maxYear": 1996 "maxYear": 1996
} }
], ],
"tags": [ "tags": ["Castle or fortification"],
"Castle or fortification"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -107,7 +105,7 @@
"orientation": "coin", "orientation": "coin",
"edge": { "edge": {
"description": "Reeded", "description": "Reeded",
"picture": "https://en.numista.com/catalogue/photos/argentine/5f0a0fa91c9105.96404192-original.jpg", "picture": "/photos/argentine/5f0a0fa91c9105.96404192-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/argentine/5f0a0fa91c9105.96404192-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/argentine/5f0a0fa91c9105.96404192-180.jpg",
"picture_copyright": "Renato Lima" "picture_copyright": "Renato Lima"
}, },
@@ -128,5 +126,6 @@
"id": "1300", "id": "1300",
"name": "South African Mint" "name": "South African Mint"
} }
] ],
"color": "rgb(192,164,100)"
} }
+6 -8
View File
@@ -46,7 +46,7 @@
} }
], ],
"lettering_translation": "ARGENTINA REPUBLIC\r\n1816 ° INDEPENDENCE ° 2016", "lettering_translation": "ARGENTINA REPUBLIC\r\n1816 ° INDEPENDENCE ° 2016",
"picture": "https://en.numista.com/catalogue/photos/argentine/1259-original.jpg", "picture": "/photos/argentine/1259-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/argentine/1259-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/argentine/1259-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -59,16 +59,13 @@
} }
], ],
"lettering_translation": "IN UNION AND FREEDOM\r\n2 PESOS\r\n2016", "lettering_translation": "IN UNION AND FREEDOM\r\n2 PESOS\r\n2016",
"picture": "https://en.numista.com/catalogue/photos/argentine/1260-original.jpg", "picture": "/photos/argentine/1260-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/argentine/1260-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/argentine/1260-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
"commemorated_topic": "Bicentennial of the Declaration of Independence Argentina", "commemorated_topic": "Bicentennial of the Declaration of Independence Argentina",
"comments": "<a href=\"https://en.numista.com/catalogue/images/57a9fff7c467a.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/57a9fff7c467a.jpg\" alt=\"\" width=\"200\" height=\"87\" /></a>", "comments": "<a href=\"https://en.numista.com/catalogue/images/57a9fff7c467a.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/57a9fff7c467a.jpg\" alt=\"\" width=\"200\" height=\"87\" /></a>",
"tags": [ "tags": ["Independence", "Phrygian cap"],
"Independence",
"Phrygian cap"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -84,7 +81,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Segmented reeding", "description": "Segmented reeding",
"picture": "https://en.numista.com/catalogue/photos/argentine/1261-original.jpg", "picture": "/photos/argentine/1261-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/argentine/1261-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/argentine/1261-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -93,5 +90,6 @@
"id": "1336", "id": "1336",
"name": "Buenos Aires" "name": "Buenos Aires"
} }
] ],
"color": "rgb(220,164,60)"
} }
+7 -10
View File
@@ -41,9 +41,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"designers": [ "designers": ["Ian Rank-Broadley"],
"Ian Rank-Broadley"
],
"description": "4th portrait of Queen Elizabeth II facing right wearing the Girls of Great Britain and Ireland Tiara", "description": "4th portrait of Queen Elizabeth II facing right wearing the Girls of Great Britain and Ireland Tiara",
"lettering": "ELIZABETH II \r\nAUSTRALIA 2007\r\nIRB", "lettering": "ELIZABETH II \r\nAUSTRALIA 2007\r\nIRB",
"lettering_scripts": [ "lettering_scripts": [
@@ -51,16 +49,14 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/australie/62a210db06a899.82205180-original.jpg", "picture": "/photos/australie/62a210db06a899.82205180-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/australie/62a210db06a899.82205180-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/australie/62a210db06a899.82205180-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
"picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en"
}, },
"reverse": { "reverse": {
"designers": [ "designers": ["Stuart Devlin"],
"Stuart Devlin"
],
"description": "Platypus (Ornithorhynchus anatinus) and the numeral \"20\"", "description": "Platypus (Ornithorhynchus anatinus) and the numeral \"20\"",
"lettering": "20\r\nSD", "lettering": "20\r\nSD",
"lettering_scripts": [ "lettering_scripts": [
@@ -68,7 +64,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/australie/62a210dc350a20.47448877-original.jpg", "picture": "/photos/australie/62a210dc350a20.47448877-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/australie/62a210dc350a20.47448877-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/australie/62a210dc350a20.47448877-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
@@ -154,7 +150,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Reeded", "description": "Reeded",
"picture": "https://en.numista.com/catalogue/photos/australie/9337-original.jpg", "picture": "/photos/australie/9337-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/australie/9337-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/australie/9337-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
@@ -165,5 +161,6 @@
"id": "28", "id": "28",
"name": "Royal Australian Mint" "name": "Royal Australian Mint"
} }
] ],
"color": "rgb(141.0638297872341,127.5,113.9361702127659)"
} }
+8 -13
View File
@@ -41,9 +41,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"designers": [ "designers": ["Raphael David Maklouf"],
"Raphael David Maklouf"
],
"description": "3rd portrait of Queen Elizabeth II facing right wearing the King George IV State Diadem", "description": "3rd portrait of Queen Elizabeth II facing right wearing the King George IV State Diadem",
"lettering": "ELIZABETH II \r\nAUSTRALIA 1989\r\nRDM", "lettering": "ELIZABETH II \r\nAUSTRALIA 1989\r\nRDM",
"lettering_scripts": [ "lettering_scripts": [
@@ -51,16 +49,14 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/australie/62a2133d8489b5.93573580-original.jpg", "picture": "/photos/australie/62a2133d8489b5.93573580-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/australie/62a2133d8489b5.93573580-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/australie/62a2133d8489b5.93573580-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
"picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en"
}, },
"reverse": { "reverse": {
"designers": [ "designers": ["Stuart Devlin"],
"Stuart Devlin"
],
"description": "Platypus (Ornithorhynchus anatinus) and the numeral \"20\"", "description": "Platypus (Ornithorhynchus anatinus) and the numeral \"20\"",
"lettering": "20\r\nSD", "lettering": "20\r\nSD",
"lettering_scripts": [ "lettering_scripts": [
@@ -68,7 +64,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/australie/62a2133ed01437.43713544-original.jpg", "picture": "/photos/australie/62a2133ed01437.43713544-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/australie/62a2133ed01437.43713544-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/australie/62a2133ed01437.43713544-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
@@ -110,9 +106,7 @@
"maxYear": 2023 "maxYear": 2023
} }
], ],
"tags": [ "tags": ["Other animal"],
"Other animal"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -135,7 +129,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Reeded", "description": "Reeded",
"picture": "https://en.numista.com/catalogue/photos/australie/8348-original.jpg", "picture": "/photos/australie/8348-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/australie/8348-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/australie/8348-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
@@ -146,5 +140,6 @@
"id": "28", "id": "28",
"name": "Royal Australian Mint" "name": "Royal Australian Mint"
} }
] ],
"color": "rgb(142.7064220183486,131.00917431192659,112.29357798165138)"
} }
+8 -15
View File
@@ -37,9 +37,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Josef Kaiser"],
"Josef Kaiser"
],
"description": "A gentian, which symbolizes a duty to the environment encircled by the face value, heraldic hatchings representing the Austrian flag and twelve five-pointed stars representing the European Union around the rim", "description": "A gentian, which symbolizes a duty to the environment encircled by the face value, heraldic hatchings representing the Austrian flag and twelve five-pointed stars representing the European Union around the rim",
"lettering": "EIN EURO CENT 2007", "lettering": "EIN EURO CENT 2007",
"lettering_scripts": [ "lettering_scripts": [
@@ -47,16 +45,14 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/autriche/62ca843026f837.34117868-original.jpg", "picture": "/photos/autriche/62ca843026f837.34117868-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/autriche/62ca843026f837.34117868-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/autriche/62ca843026f837.34117868-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
"picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Luc Luycx"],
"Luc Luycx"
],
"description": "A globe, next to the face value, shows Europe in relation to Africa and Asia.", "description": "A globe, next to the face value, shows Europe in relation to Africa and Asia.",
"lettering": "1 EURO CENT LL", "lettering": "1 EURO CENT LL",
"lettering_scripts": [ "lettering_scripts": [
@@ -64,18 +60,14 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/autriche/62ca843116f7d5.49400449-original.jpg", "picture": "/photos/autriche/62ca843116f7d5.49400449-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/autriche/62ca843116f7d5.49400449-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/autriche/62ca843116f7d5.49400449-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
"picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en"
}, },
"comments": "Gentian Flower or Stemless Gentian Flower &nbsp;- Binomial Name: Gentiana acaulis<br />\r\n<br />\r\n<a href=\"https://en.numista.com/catalogue/images/608ad98405ca2.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/608ad98405ca2.jpg\" alt=\"\" width=\"200\" height=\"150\" /></a><br />\r\n<br />\r\nThere are small differences in the oblique lines on the reverse in 2018:<br />\r\n<a href=\"https://en.numista.com/catalogue/images/5c01b57e63ede.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5c01b57e63ede.jpg\" alt=\"\" width=\"200\" height=\"150\" /></a><br />\r\n<br />\r\nSlightly modified obverse (thinner, longer and more numerous lines in the red fields of the Austrian flag):<br />\r\n<a href=\"https://en.numista.com/catalogue/images/5ed5f731e352c.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5ed5f731e352c.jpg\" alt=\"\" width=\"200\" height=\"147\" /></a>", "comments": "Gentian Flower or Stemless Gentian Flower &nbsp;- Binomial Name: Gentiana acaulis<br />\r\n<br />\r\n<a href=\"https://en.numista.com/catalogue/images/608ad98405ca2.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/608ad98405ca2.jpg\" alt=\"\" width=\"200\" height=\"150\" /></a><br />\r\n<br />\r\nThere are small differences in the oblique lines on the reverse in 2018:<br />\r\n<a href=\"https://en.numista.com/catalogue/images/5c01b57e63ede.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5c01b57e63ede.jpg\" alt=\"\" width=\"200\" height=\"150\" /></a><br />\r\n<br />\r\nSlightly modified obverse (thinner, longer and more numerous lines in the red fields of the Austrian flag):<br />\r\n<a href=\"https://en.numista.com/catalogue/images/5ed5f731e352c.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5ed5f731e352c.jpg\" alt=\"\" width=\"200\" height=\"147\" /></a>",
"tags": [ "tags": ["Map", "Globe", "Flower"],
"Map",
"Globe",
"Flower"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -98,7 +90,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Smooth", "description": "Smooth",
"picture": "https://en.numista.com/catalogue/photos/autriche/3024-original.jpg", "picture": "/photos/autriche/3024-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/autriche/3024-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/autriche/3024-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -108,5 +100,6 @@
"name": "Münze Österreich" "name": "Münze Österreich"
} }
], ],
"count": 4 "count": 4,
"color": "rgb(167,113,74)"
} }
+7 -13
View File
@@ -41,9 +41,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Arnold Machin"],
"Arnold Machin"
],
"description": "The arms of the Bahamas with the country name above and the date below", "description": "The arms of the Bahamas with the country name above and the date below",
"lettering": "COMMONWEALTH OF THE BAHAMAS\r\nFORWARD, UPWARD, ONWARD TOGETHER\r\n2005", "lettering": "COMMONWEALTH OF THE BAHAMAS\r\nFORWARD, UPWARD, ONWARD TOGETHER\r\n2005",
"lettering_scripts": [ "lettering_scripts": [
@@ -51,14 +49,12 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/bahamas/688-original.jpg", "picture": "/photos/bahamas/688-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bahamas/688-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bahamas/688-180.jpg",
"picture_copyright": "fryant" "picture_copyright": "fryant"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Arnold Machin"],
"Arnold Machin"
],
"description": "Bahamian sailboat, value above", "description": "Bahamian sailboat, value above",
"lettering": "TWENTYFIVE CENTS", "lettering": "TWENTYFIVE CENTS",
"lettering_scripts": [ "lettering_scripts": [
@@ -66,7 +62,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/bahamas/689-original.jpg", "picture": "/photos/bahamas/689-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bahamas/689-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bahamas/689-180.jpg",
"picture_copyright": "fryant" "picture_copyright": "fryant"
}, },
@@ -116,10 +112,7 @@
"maxYear": 2015 "maxYear": 2015
} }
], ],
"tags": [ "tags": ["Coat of Arms", "Boat or watercraft"],
"Coat of Arms",
"Boat or watercraft"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -148,5 +141,6 @@
"id": "16", "id": "16",
"name": "Royal Mint" "name": "Royal Mint"
} }
] ],
"color": "rgb(200.35714285714297,145.7142857142854,54.64285714285703)"
} }
+5 -7
View File
@@ -48,7 +48,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/bahamas/357-original.jpg", "picture": "/photos/bahamas/357-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bahamas/357-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bahamas/357-180.jpg",
"picture_copyright": "Ulmo" "picture_copyright": "Ulmo"
}, },
@@ -60,14 +60,11 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/bahamas/358-original.jpg", "picture": "/photos/bahamas/358-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bahamas/358-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bahamas/358-180.jpg",
"picture_copyright": "Ulmo" "picture_copyright": "Ulmo"
}, },
"tags": [ "tags": ["Coat of Arms", "Fruit"],
"Coat of Arms",
"Fruit"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -100,5 +97,6 @@
"id": "1319", "id": "1319",
"name": "The Franklin Mint" "name": "The Franklin Mint"
} }
] ],
"color": "rgb(184.53947368421052,167.76315789473682,70.46052631578947)"
} }
+6 -12
View File
@@ -48,16 +48,14 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/bahamas/261-original.jpg", "picture": "/photos/bahamas/261-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bahamas/261-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bahamas/261-180.jpg",
"picture_copyright": "moi4992", "picture_copyright": "moi4992",
"picture_license_name": "CC BY-NC-SA", "picture_license_name": "CC BY-NC-SA",
"picture_license_url": "https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en"
}, },
"reverse": { "reverse": {
"designers": [ "designers": ["Arnold Machin"],
"Arnold Machin"
],
"description": "Hibiscus (Hibiscus rosa-sinensis) and the denomination divided below", "description": "Hibiscus (Hibiscus rosa-sinensis) and the denomination divided below",
"lettering": "· · · FIFTEEN · CENTS · · ·", "lettering": "· · · FIFTEEN · CENTS · · ·",
"lettering_scripts": [ "lettering_scripts": [
@@ -65,18 +63,13 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/bahamas/262-original.jpg", "picture": "/photos/bahamas/262-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bahamas/262-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bahamas/262-180.jpg",
"picture_copyright": "moi4992", "picture_copyright": "moi4992",
"picture_license_name": "CC BY-NC-SA", "picture_license_name": "CC BY-NC-SA",
"picture_license_url": "https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en"
}, },
"tags": [ "tags": ["Bird", "Fish", "Coat of Arms", "Flower"],
"Bird",
"Fish",
"Coat of Arms",
"Flower"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -109,5 +102,6 @@
"id": "1319", "id": "1319",
"name": "The Franklin Mint" "name": "The Franklin Mint"
} }
] ],
"color": "rgb(70.34482758620689,153.8793103448276,184.6551724137931)"
} }
+7 -12
View File
@@ -49,14 +49,12 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/bahamas/359-original.jpg", "picture": "/photos/bahamas/359-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bahamas/359-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bahamas/359-180.jpg",
"picture_copyright": "Ulmo" "picture_copyright": "Ulmo"
}, },
"reverse": { "reverse": {
"designers": [ "designers": ["Arnold Machin"],
"Arnold Machin"
],
"description": "Two Bonefish (Albula vulpes) above the denomination", "description": "Two Bonefish (Albula vulpes) above the denomination",
"lettering": "FM\r\nTEN CENTS", "lettering": "FM\r\nTEN CENTS",
"lettering_scripts": [ "lettering_scripts": [
@@ -64,15 +62,11 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/bahamas/360-original.jpg", "picture": "/photos/bahamas/360-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bahamas/360-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bahamas/360-180.jpg",
"picture_copyright": "Ulmo" "picture_copyright": "Ulmo"
}, },
"tags": [ "tags": ["Bird", "Fish", "Coat of Arms"],
"Bird",
"Fish",
"Coat of Arms"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -95,7 +89,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Plain", "description": "Plain",
"picture": "https://en.numista.com/catalogue/photos/bahamas/627d8a8a060cb7.98306122-original.jpg", "picture": "/photos/bahamas/627d8a8a060cb7.98306122-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bahamas/627d8a8a060cb7.98306122-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bahamas/627d8a8a060cb7.98306122-180.jpg",
"picture_copyright": "Harryg", "picture_copyright": "Harryg",
"picture_license_name": "CC BY", "picture_license_name": "CC BY",
@@ -110,5 +104,6 @@
"id": "1319", "id": "1319",
"name": "The Franklin Mint" "name": "The Franklin Mint"
} }
] ],
"color": "rgb(157,143,72)"
} }
+5 -7
View File
@@ -50,7 +50,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/bahamas/692-original.jpg", "picture": "/photos/bahamas/692-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bahamas/692-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bahamas/692-180.jpg",
"picture_copyright": "HOOK" "picture_copyright": "HOOK"
}, },
@@ -62,7 +62,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/bahamas/693-original.jpg", "picture": "/photos/bahamas/693-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bahamas/693-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bahamas/693-180.jpg",
"picture_copyright": "HOOK" "picture_copyright": "HOOK"
}, },
@@ -79,10 +79,7 @@
"maxYear": 1985 "maxYear": 1985
} }
], ],
"tags": [ "tags": ["Marine invertebrate", "Coat of Arms"],
"Marine invertebrate",
"Coat of Arms"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -111,5 +108,6 @@
"id": "16", "id": "16",
"name": "Royal Mint" "name": "Royal Mint"
} }
] ],
"color": "rgb(188,108,76)"
} }
+8 -15
View File
@@ -41,9 +41,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Luc Luycx"],
"Luc Luycx"
],
"description": "Right profile portrait of King Phillipe is encircled by the twelve stars of Europe. Between the head and the band of stars is his Crowned monogram: Crown above capital \"FP\". The mint marks appear on either side of the year of issuance.", "description": "Right profile portrait of King Phillipe is encircled by the twelve stars of Europe. Between the head and the band of stars is his Crowned monogram: Crown above capital \"FP\". The mint marks appear on either side of the year of issuance.",
"lettering": "FP\r\nBE \r\n2014", "lettering": "FP\r\nBE \r\n2014",
"lettering_scripts": [ "lettering_scripts": [
@@ -51,16 +49,14 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/belgique/61f94d99ab5967.97108825-original.jpg", "picture": "/photos/belgique/61f94d99ab5967.97108825-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/belgique/61f94d99ab5967.97108825-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/belgique/61f94d99ab5967.97108825-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
"picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Luc Luycx"],
"Luc Luycx"
],
"description": "A globe, next to the face value, shows Europe in relation to Africa and Asia.", "description": "A globe, next to the face value, shows Europe in relation to Africa and Asia.",
"lettering": "EURO\r\nCENT\r\n1 LL", "lettering": "EURO\r\nCENT\r\n1 LL",
"lettering_scripts": [ "lettering_scripts": [
@@ -68,18 +64,14 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/belgique/61f94d9a944ae6.03694853-original.jpg", "picture": "/photos/belgique/61f94d9a944ae6.03694853-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/belgique/61f94d9a944ae6.03694853-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/belgique/61f94d9a944ae6.03694853-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
"picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en"
}, },
"comments": "(fr) <span style=\"text-decoration:underline;\"><span style=\"font-weight:bold;\">Initiale FP de l&#039;avers:</span></span><br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&quot;F&quot; = Filip en néerlandais<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&quot;P&quot; = Philippe en français<br />\r\n<br />\r\n<span style=\"text-decoration:underline;\"><span style=\"font-weight:bold;\">Différents d&#039;atelier:</span></span><br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;Tête de l&#039;archange &nbsp;St. Michel surmontée d&#039;une croix - Monnaie royale de Belgique à Bruxelles (2014-2017)<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;Caducée - Monnaie royale des Pays-Bas à Utrecht (2018-2020)<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;Caducée - Monnaie royale des Pays-Bas à Houten (2020-présent)<br />\r\n<br />\r\n<span style=\"text-decoration:underline;\"><span style=\"font-weight:bold;\">Différents de graveur:</span></span><br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;Chat - Bernard Gillard (2014-2016)<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;Blason - Ingrid van Herzele (2017-Présent)<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;Aster et fiole - Giovanni Van de Velde (2023 - à présent)", "comments": "(fr) <span style=\"text-decoration:underline;\"><span style=\"font-weight:bold;\">Initiale FP de l&#039;avers:</span></span><br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&quot;F&quot; = Filip en néerlandais<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;&quot;P&quot; = Philippe en français<br />\r\n<br />\r\n<span style=\"text-decoration:underline;\"><span style=\"font-weight:bold;\">Différents d&#039;atelier:</span></span><br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;Tête de l&#039;archange &nbsp;St. Michel surmontée d&#039;une croix - Monnaie royale de Belgique à Bruxelles (2014-2017)<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;Caducée - Monnaie royale des Pays-Bas à Utrecht (2018-2020)<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;Caducée - Monnaie royale des Pays-Bas à Houten (2020-présent)<br />\r\n<br />\r\n<span style=\"text-decoration:underline;\"><span style=\"font-weight:bold;\">Différents de graveur:</span></span><br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;Chat - Bernard Gillard (2014-2016)<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;Blason - Ingrid van Herzele (2017-Présent)<br />\r\n&nbsp;&nbsp;&nbsp;&nbsp;Aster et fiole - Giovanni Van de Velde (2023 - à présent)",
"tags": [ "tags": ["Map", "Monarch", "Monogram"],
"Map",
"Monarch",
"Monogram"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -102,7 +94,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Smooth", "description": "Smooth",
"picture": "https://en.numista.com/catalogue/photos/belgique/2712-original.jpg", "picture": "/photos/belgique/2712-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/belgique/2712-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/belgique/2712-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -116,5 +108,6 @@
"name": "Royal Mint of Belgium" "name": "Royal Mint of Belgium"
} }
], ],
"count": 1 "count": 1,
"color": "rgb(193,119,51)"
} }
+8 -15
View File
@@ -41,9 +41,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Luc Luycx"],
"Luc Luycx"
],
"description": "Bust of King Philippe facing right, date below, crowned monogram at left", "description": "Bust of King Philippe facing right, date below, crowned monogram at left",
"lettering": "FP\r\nBE\r\n2015", "lettering": "FP\r\nBE\r\n2015",
"lettering_scripts": [ "lettering_scripts": [
@@ -51,16 +49,14 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/belgique/605d6f24575a33.43979441-original.jpg", "picture": "/photos/belgique/605d6f24575a33.43979441-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/belgique/605d6f24575a33.43979441-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/belgique/605d6f24575a33.43979441-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
"picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Luc Luycx"],
"Luc Luycx"
],
"description": "Relief map of Western Europe, stars and value", "description": "Relief map of Western Europe, stars and value",
"lettering": "50\r\nLL\r\nEURO\r\nCENT", "lettering": "50\r\nLL\r\nEURO\r\nCENT",
"lettering_scripts": [ "lettering_scripts": [
@@ -68,18 +64,14 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/belgique/605d6f24db4298.62700064-original.jpg", "picture": "/photos/belgique/605d6f24db4298.62700064-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/belgique/605d6f24db4298.62700064-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/belgique/605d6f24db4298.62700064-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
"picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en"
}, },
"comments": "Mint Marks:<br />\r\n<ul><li>Head of archangel St. Michael - Brussels Mint (2014-2017)<br />\r\n</li><li>Mercury&#039;s wand - Royal Dutch Mint (2018-Present)<br />\r\n</li></ul>Privy marks:<ul><li>Cat, Mint Master Bernard Gillard, 2013-2016<br />\r\n</li><li>Coat of arms, Ingrid van Herzele, 2017-<br />\r\n</li></ul>", "comments": "Mint Marks:<br />\r\n<ul><li>Head of archangel St. Michael - Brussels Mint (2014-2017)<br />\r\n</li><li>Mercury&#039;s wand - Royal Dutch Mint (2018-Present)<br />\r\n</li></ul>Privy marks:<ul><li>Cat, Mint Master Bernard Gillard, 2013-2016<br />\r\n</li><li>Coat of arms, Ingrid van Herzele, 2017-<br />\r\n</li></ul>",
"tags": [ "tags": ["Map", "Monarch", "Monogram"],
"Map",
"Monarch",
"Monogram"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -109,7 +101,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Indented (50 indentations)", "description": "Indented (50 indentations)",
"picture": "https://en.numista.com/catalogue/photos/belgique/2697-original.jpg", "picture": "/photos/belgique/2697-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/belgique/2697-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/belgique/2697-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -123,5 +115,6 @@
"name": "Royal Mint of Belgium" "name": "Royal Mint of Belgium"
} }
], ],
"count": 1 "count": 1,
"color": "rgb(156,132,60)"
} }
+8 -14
View File
@@ -41,9 +41,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Jan Alfons Keustermans"],
"Jan Alfons Keustermans"
],
"description": "Left profile portrait of King Albert II is encircled by the twelve stars of Europe. Between the head and the band of stars is his Crowned monogram: Crown above capital \"A\" with the Roman numeral \"II\".", "description": "Left profile portrait of King Albert II is encircled by the twelve stars of Europe. Between the head and the band of stars is his Crowned monogram: Crown above capital \"A\" with the Roman numeral \"II\".",
"lettering": "A II 2012 BE", "lettering": "A II 2012 BE",
"lettering_scripts": [ "lettering_scripts": [
@@ -51,16 +49,14 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/belgique/61f93b01ae94c2.42272366-original.jpg", "picture": "/photos/belgique/61f93b01ae94c2.42272366-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/belgique/61f93b01ae94c2.42272366-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/belgique/61f93b01ae94c2.42272366-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
"picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Luc Luycx"],
"Luc Luycx"
],
"description": "A globe, next to the face value, shows Europe in relation to Africa and Asia.", "description": "A globe, next to the face value, shows Europe in relation to Africa and Asia.",
"lettering": "1 EURO CENT LL", "lettering": "1 EURO CENT LL",
"lettering_scripts": [ "lettering_scripts": [
@@ -68,7 +64,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/belgique/61f93b029062a5.76364516-original.jpg", "picture": "/photos/belgique/61f93b029062a5.76364516-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/belgique/61f93b029062a5.76364516-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/belgique/61f93b029062a5.76364516-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
@@ -87,10 +83,7 @@
"maxYear": 2007 "maxYear": 2007
} }
], ],
"tags": [ "tags": ["Map", "Monarch"],
"Map",
"Monarch"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -120,7 +113,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Smooth", "description": "Smooth",
"picture": "https://en.numista.com/catalogue/photos/belgique/2711-original.jpg", "picture": "/photos/belgique/2711-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/belgique/2711-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/belgique/2711-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -130,5 +123,6 @@
"name": "Royal Mint of Belgium" "name": "Royal Mint of Belgium"
} }
], ],
"count": 5 "count": 5,
"color": "rgb(175,116,83)"
} }
+8 -14
View File
@@ -41,9 +41,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Jan Alfons Keustermans"],
"Jan Alfons Keustermans"
],
"description": "The portrait in left profile of King Albert II is encircled by the twelve stars of Europe, among which is situated his monogram: a capital \"A\" with the Roman numeral \"II\" underneath a crown.", "description": "The portrait in left profile of King Albert II is encircled by the twelve stars of Europe, among which is situated his monogram: a capital \"A\" with the Roman numeral \"II\" underneath a crown.",
"lettering": "A II 2005", "lettering": "A II 2005",
"lettering_scripts": [ "lettering_scripts": [
@@ -51,16 +49,14 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/belgique/61f90964c1b165.14171227-original.jpg", "picture": "/photos/belgique/61f90964c1b165.14171227-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/belgique/61f90964c1b165.14171227-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/belgique/61f90964c1b165.14171227-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
"picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Luc Luycx"],
"Luc Luycx"
],
"description": "A globe, next to the face value, shows Europe in relation to Africa and Asia.", "description": "A globe, next to the face value, shows Europe in relation to Africa and Asia.",
"lettering": "1 EURO CENT LL", "lettering": "1 EURO CENT LL",
"lettering_scripts": [ "lettering_scripts": [
@@ -68,7 +64,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/belgique/61f9096597aca4.76643749-original.jpg", "picture": "/photos/belgique/61f9096597aca4.76643749-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/belgique/61f9096597aca4.76643749-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/belgique/61f9096597aca4.76643749-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
@@ -88,10 +84,7 @@
"maxYear": 2013 "maxYear": 2013
} }
], ],
"tags": [ "tags": ["Map", "Monarch"],
"Map",
"Monarch"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -121,7 +114,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Smooth", "description": "Smooth",
"picture": "https://en.numista.com/catalogue/photos/belgique/2710-original.jpg", "picture": "/photos/belgique/2710-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/belgique/2710-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/belgique/2710-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -131,5 +124,6 @@
"name": "Royal Mint of Belgium" "name": "Royal Mint of Belgium"
} }
], ],
"count": 3 "count": 3,
"color": "rgb(172,92,52)"
} }
+7 -10
View File
@@ -41,9 +41,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Jan Alfons Keustermans"],
"Jan Alfons Keustermans"
],
"description": "The portrait in left profile of King Albert II is encircled by the twelve stars of Europe, among which is situated his monogram: a capital \"A\" with the Roman numeral \"II\" underneath a crown", "description": "The portrait in left profile of King Albert II is encircled by the twelve stars of Europe, among which is situated his monogram: a capital \"A\" with the Roman numeral \"II\" underneath a crown",
"lettering": "A II 2005", "lettering": "A II 2005",
"lettering_scripts": [ "lettering_scripts": [
@@ -51,16 +49,14 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/belgique/61fde21a83e7b0.77023192-original.jpg", "picture": "/photos/belgique/61fde21a83e7b0.77023192-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/belgique/61fde21a83e7b0.77023192-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/belgique/61fde21a83e7b0.77023192-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
"picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Luc Luycx"],
"Luc Luycx"
],
"description": "A globe, next to the face value, shows Europe in relation to Africa and Asia", "description": "A globe, next to the face value, shows Europe in relation to Africa and Asia",
"lettering": "5 EURO CENT LL", "lettering": "5 EURO CENT LL",
"lettering_scripts": [ "lettering_scripts": [
@@ -68,7 +64,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/belgique/61fde21b82e9f5.76970017-original.jpg", "picture": "/photos/belgique/61fde21b82e9f5.76970017-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/belgique/61fde21b82e9f5.76970017-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/belgique/61fde21b82e9f5.76970017-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
@@ -117,7 +113,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Smooth", "description": "Smooth",
"picture": "https://en.numista.com/catalogue/photos/belgique/2706-original.jpg", "picture": "/photos/belgique/2706-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/belgique/2706-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/belgique/2706-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -127,5 +123,6 @@
"name": "Royal Mint of Belgium" "name": "Royal Mint of Belgium"
} }
], ],
"count": 2 "count": 2,
"color": "rgb(172,92,52)"
} }
+7 -10
View File
@@ -41,9 +41,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Jan Alfons Keustermans"],
"Jan Alfons Keustermans"
],
"description": "The portrait in left profile of King Albert II encircled by the twelve stars of Europe, among which is situated his monogram: a capital \"A\" with the Roman numeral \"II\" underneath a crown", "description": "The portrait in left profile of King Albert II encircled by the twelve stars of Europe, among which is situated his monogram: a capital \"A\" with the Roman numeral \"II\" underneath a crown",
"lettering": "A II 2004", "lettering": "A II 2004",
"lettering_scripts": [ "lettering_scripts": [
@@ -51,14 +49,12 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/belgique/3429-original.jpg", "picture": "/photos/belgique/3429-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/belgique/3429-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/belgique/3429-180.jpg",
"picture_copyright": "Joseph Kunnappally" "picture_copyright": "Joseph Kunnappally"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Luc Luycx"],
"Luc Luycx"
],
"description": "A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union", "description": "A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union",
"lettering": "10 EURO CENT LL", "lettering": "10 EURO CENT LL",
"lettering_scripts": [ "lettering_scripts": [
@@ -66,7 +62,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/belgique/3430-original.jpg", "picture": "/photos/belgique/3430-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/belgique/3430-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/belgique/3430-180.jpg",
"picture_copyright": "Joseph Kunnappally" "picture_copyright": "Joseph Kunnappally"
}, },
@@ -113,7 +109,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Indented", "description": "Indented",
"picture": "https://en.numista.com/catalogue/photos/belgique/3062-original.jpg", "picture": "/photos/belgique/3062-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/belgique/3062-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/belgique/3062-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -123,5 +119,6 @@
"name": "Royal Mint of Belgium" "name": "Royal Mint of Belgium"
} }
], ],
"count": 1 "count": 1,
"color": "rgb(192,158,78)"
} }
+8 -15
View File
@@ -41,9 +41,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Jan Alfons Keustermans"],
"Jan Alfons Keustermans"
],
"description": "The portrait in left profile of King Albert II is encircled by the twelve stars of Europe, among which is situated his monogram: a capital \"A\" with the Roman numeral \"II\" underneath a crown", "description": "The portrait in left profile of King Albert II is encircled by the twelve stars of Europe, among which is situated his monogram: a capital \"A\" with the Roman numeral \"II\" underneath a crown",
"lettering": "A II \r\n2004", "lettering": "A II \r\n2004",
"lettering_scripts": [ "lettering_scripts": [
@@ -51,16 +49,14 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/belgique/3168-original.jpg", "picture": "/photos/belgique/3168-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/belgique/3168-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/belgique/3168-180.jpg",
"picture_copyright": "moi4992", "picture_copyright": "moi4992",
"picture_license_name": "CC BY-NC-SA", "picture_license_name": "CC BY-NC-SA",
"picture_license_url": "https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Luc Luycx"],
"Luc Luycx"
],
"description": "A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union", "description": "A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union",
"lettering": "20 \r\nLL\r\nEURO \r\nCENT", "lettering": "20 \r\nLL\r\nEURO \r\nCENT",
"lettering_scripts": [ "lettering_scripts": [
@@ -68,7 +64,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/belgique/3169-original.jpg", "picture": "/photos/belgique/3169-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/belgique/3169-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/belgique/3169-180.jpg",
"picture_copyright": "moi4992", "picture_copyright": "moi4992",
"picture_license_name": "CC BY-NC-SA", "picture_license_name": "CC BY-NC-SA",
@@ -99,11 +95,7 @@
"maxYear": 2013 "maxYear": 2013
} }
], ],
"tags": [ "tags": ["Map", "Monarch", "Monogram"],
"Map",
"Monarch",
"Monogram"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -133,7 +125,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Smooth with seven indentations (\"Spanish flower\")", "description": "Smooth with seven indentations (\"Spanish flower\")",
"picture": "https://en.numista.com/catalogue/photos/belgique/3064-original.jpg", "picture": "/photos/belgique/3064-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/belgique/3064-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/belgique/3064-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -143,5 +135,6 @@
"name": "Royal Mint of Belgium" "name": "Royal Mint of Belgium"
} }
], ],
"count": 1 "count": 1,
"color": "rgb(172,156,60)"
} }
+5 -6
View File
@@ -45,7 +45,7 @@
} }
], ],
"lettering_translation": "Republic of Bolivia", "lettering_translation": "Republic of Bolivia",
"picture": "https://en.numista.com/catalogue/photos/bolivie/1096-original.jpg", "picture": "/photos/bolivie/1096-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bolivie/1096-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bolivie/1096-180.jpg",
"picture_copyright": "gef" "picture_copyright": "gef"
}, },
@@ -58,7 +58,7 @@
} }
], ],
"lettering_translation": "Unity is strength", "lettering_translation": "Unity is strength",
"picture": "https://en.numista.com/catalogue/photos/bolivie/1097-original.jpg", "picture": "/photos/bolivie/1097-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bolivie/1097-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bolivie/1097-180.jpg",
"picture_copyright": "gef" "picture_copyright": "gef"
}, },
@@ -175,9 +175,7 @@
"maxYear": 2004 "maxYear": 2004
} }
], ],
"tags": [ "tags": ["Coat of Arms"],
"Coat of Arms"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -214,5 +212,6 @@
"id": "2", "id": "2",
"name": "Staatliche Münze Baden-Württemberg" "name": "Staatliche Münze Baden-Württemberg"
} }
] ],
"color": "rgb(104.08163265306119,130.10204081632654,150.9183673469388)"
} }
+5 -6
View File
@@ -45,7 +45,7 @@
} }
], ],
"lettering_translation": "Plurinational State of Bolivia", "lettering_translation": "Plurinational State of Bolivia",
"picture": "https://en.numista.com/catalogue/photos/bolivie/61fbd8cdc521c7.95775717-original.jpg", "picture": "/photos/bolivie/61fbd8cdc521c7.95775717-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bolivie/61fbd8cdc521c7.95775717-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bolivie/61fbd8cdc521c7.95775717-180.jpg",
"picture_copyright": "Essor Prof" "picture_copyright": "Essor Prof"
}, },
@@ -58,7 +58,7 @@
} }
], ],
"lettering_translation": "Unity is strength\r\n2\r\nBolivianos \r\n2010", "lettering_translation": "Unity is strength\r\n2\r\nBolivianos \r\n2010",
"picture": "https://en.numista.com/catalogue/photos/bolivie/61fbd8ce4fe5d9.40981720-original.jpg", "picture": "/photos/bolivie/61fbd8ce4fe5d9.40981720-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bolivie/61fbd8ce4fe5d9.40981720-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bolivie/61fbd8ce4fe5d9.40981720-180.jpg",
"picture_copyright": "Essor Prof" "picture_copyright": "Essor Prof"
}, },
@@ -120,9 +120,7 @@
"maxYear": 2012 "maxYear": 2012
} }
], ],
"tags": [ "tags": ["Coat of Arms"],
"Coat of Arms"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -145,5 +143,6 @@
"orientation": "coin", "orientation": "coin",
"edge": { "edge": {
"description": "Plain" "description": "Plain"
} },
"color": "rgb(133.3846153846154,121.61538461538461,121.61538461538461)"
} }
+4 -3
View File
@@ -45,7 +45,7 @@
} }
], ],
"lettering_translation": "Republic of Bolivia", "lettering_translation": "Republic of Bolivia",
"picture": "https://en.numista.com/catalogue/photos/bolivie/62023dc19a2656.58434193-original.jpg", "picture": "/photos/bolivie/62023dc19a2656.58434193-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bolivie/62023dc19a2656.58434193-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bolivie/62023dc19a2656.58434193-180.jpg",
"picture_copyright": "nordboutik59" "picture_copyright": "nordboutik59"
}, },
@@ -58,7 +58,7 @@
} }
], ],
"lettering_translation": "Unity is strength", "lettering_translation": "Unity is strength",
"picture": "https://en.numista.com/catalogue/photos/bolivie/62023dc2034434.51250636-original.jpg", "picture": "/photos/bolivie/62023dc2034434.51250636-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bolivie/62023dc2034434.51250636-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bolivie/62023dc2034434.51250636-180.jpg",
"picture_copyright": "nordboutik59" "picture_copyright": "nordboutik59"
}, },
@@ -197,5 +197,6 @@
"orientation": "coin", "orientation": "coin",
"edge": { "edge": {
"description": "Smooth" "description": "Smooth"
} },
"color": "rgb(123.33333333333331,131.66666666666669,123.33333333333331)"
} }
+4 -3
View File
@@ -46,7 +46,7 @@
} }
], ],
"lettering_translation": "Republic of Bolivia", "lettering_translation": "Republic of Bolivia",
"picture": "https://en.numista.com/catalogue/photos/bolivie/62054d5c05a143.15871433-original.jpg", "picture": "/photos/bolivie/62054d5c05a143.15871433-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bolivie/62054d5c05a143.15871433-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bolivie/62054d5c05a143.15871433-180.jpg",
"picture_copyright": "Essor Prof" "picture_copyright": "Essor Prof"
}, },
@@ -58,7 +58,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/bolivie/62054d5c576849.05953848-original.jpg", "picture": "/photos/bolivie/62054d5c576849.05953848-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bolivie/62054d5c576849.05953848-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bolivie/62054d5c576849.05953848-180.jpg",
"picture_copyright": "Essor Prof" "picture_copyright": "Essor Prof"
}, },
@@ -158,5 +158,6 @@
"id": "4157", "id": "4157",
"name": "VDM Metals / Vereinigte Deutsche Metallwerke" "name": "VDM Metals / Vereinigte Deutsche Metallwerke"
} }
] ],
"color": "rgb(145.45774647887322,127.5,109.54225352112678)"
} }
+4 -3
View File
@@ -45,7 +45,7 @@
} }
], ],
"lettering_translation": "Republic of Bolivia", "lettering_translation": "Republic of Bolivia",
"picture": "https://en.numista.com/catalogue/photos/bolivie/61ffcb781e47e6.03131765-original.jpg", "picture": "/photos/bolivie/61ffcb781e47e6.03131765-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bolivie/61ffcb781e47e6.03131765-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bolivie/61ffcb781e47e6.03131765-180.jpg",
"picture_copyright": "Essor Prof" "picture_copyright": "Essor Prof"
}, },
@@ -58,7 +58,7 @@
} }
], ],
"lettering_translation": "Unity is strength", "lettering_translation": "Unity is strength",
"picture": "https://en.numista.com/catalogue/photos/bolivie/61ffcb786c5df5.93434559-original.jpg", "picture": "/photos/bolivie/61ffcb786c5df5.93434559-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bolivie/61ffcb786c5df5.93434559-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bolivie/61ffcb786c5df5.93434559-180.jpg",
"picture_copyright": "Essor Prof" "picture_copyright": "Essor Prof"
}, },
@@ -211,5 +211,6 @@
"id": "4175", "id": "4175",
"name": "Vereinigte Deutsche Nickelwerke" "name": "Vereinigte Deutsche Nickelwerke"
} }
] ],
"color": "rgb(132.68292682926833,122.31707317073166,126.46341463414632)"
} }
+4 -3
View File
@@ -45,7 +45,7 @@
} }
], ],
"lettering_translation": "Republic of Bolivia", "lettering_translation": "Republic of Bolivia",
"picture": "https://en.numista.com/catalogue/photos/bolivie/307-original.jpg", "picture": "/photos/bolivie/307-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bolivie/307-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bolivie/307-180.jpg",
"picture_copyright": "seb" "picture_copyright": "seb"
}, },
@@ -58,7 +58,7 @@
} }
], ],
"lettering_translation": "Unity is strength", "lettering_translation": "Unity is strength",
"picture": "https://en.numista.com/catalogue/photos/bolivie/308-original.jpg", "picture": "/photos/bolivie/308-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bolivie/308-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bolivie/308-180.jpg",
"picture_copyright": "seb" "picture_copyright": "seb"
}, },
@@ -211,5 +211,6 @@
"id": "4175", "id": "4175",
"name": "Vereinigte Deutsche Nickelwerke" "name": "Vereinigte Deutsche Nickelwerke"
} }
] ],
"color": "rgb(126.60839160839161,119.47552447552445,135.52447552447555)"
} }
+5 -8
View File
@@ -46,7 +46,7 @@
} }
], ],
"lettering_translation": "Republic of Bolivia", "lettering_translation": "Republic of Bolivia",
"picture": "https://en.numista.com/catalogue/photos/bolivie/6214bb38c40759.70314599-original.jpg", "picture": "/photos/bolivie/6214bb38c40759.70314599-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bolivie/6214bb38c40759.70314599-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bolivie/6214bb38c40759.70314599-180.jpg",
"picture_copyright": "Essor Prof" "picture_copyright": "Essor Prof"
}, },
@@ -59,7 +59,7 @@
} }
], ],
"lettering_translation": "Fifty Cents\r\n50 c\r\n1942", "lettering_translation": "Fifty Cents\r\n50 c\r\n1942",
"picture": "https://en.numista.com/catalogue/photos/bolivie/6214bb3921f4e4.87659322-original.jpg", "picture": "/photos/bolivie/6214bb3921f4e4.87659322-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bolivie/6214bb3921f4e4.87659322-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bolivie/6214bb3921f4e4.87659322-180.jpg",
"picture_copyright": "Essor Prof" "picture_copyright": "Essor Prof"
}, },
@@ -88,11 +88,7 @@
"maxYear": 1942 "maxYear": 1942
} }
], ],
"tags": [ "tags": ["Coat of Arms", "Mountain", "Caduceus"],
"Coat of Arms",
"Mountain",
"Caduceus"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -121,5 +117,6 @@
"id": "11", "id": "11",
"name": "United States Mint of Philadelphia" "name": "United States Mint of Philadelphia"
} }
] ],
"color": "rgb(177,80,65)"
} }
+5 -6
View File
@@ -46,7 +46,7 @@
} }
], ],
"lettering_translation": "Republic of Bolivia", "lettering_translation": "Republic of Bolivia",
"picture": "https://en.numista.com/catalogue/photos/bolivie/6214bce0dbdcd7.19257317-original.jpg", "picture": "/photos/bolivie/6214bce0dbdcd7.19257317-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bolivie/6214bce0dbdcd7.19257317-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bolivie/6214bce0dbdcd7.19257317-180.jpg",
"picture_copyright": "Essor Prof" "picture_copyright": "Essor Prof"
}, },
@@ -59,13 +59,11 @@
} }
], ],
"lettering_translation": "Fifty Centavos", "lettering_translation": "Fifty Centavos",
"picture": "https://en.numista.com/catalogue/photos/bolivie/6214bce16e9ff7.82437752-original.jpg", "picture": "/photos/bolivie/6214bce16e9ff7.82437752-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bolivie/6214bce16e9ff7.82437752-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bolivie/6214bce16e9ff7.82437752-180.jpg",
"picture_copyright": "Essor Prof" "picture_copyright": "Essor Prof"
}, },
"tags": [ "tags": ["Caduceus"],
"Caduceus"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -94,5 +92,6 @@
"id": "292", "id": "292",
"name": "Huguenin" "name": "Huguenin"
} }
] ],
"color": "rgb(145.7142857142857,125.4761904761905,109.28571428571429)"
} }
+5 -6
View File
@@ -45,7 +45,7 @@
} }
], ],
"lettering_translation": "Brazil\r\nDeodoro\r\nRepublic\r\nNovember 15", "lettering_translation": "Brazil\r\nDeodoro\r\nRepublic\r\nNovember 15",
"picture": "https://en.numista.com/catalogue/photos/bresil/39-original.jpg", "picture": "/photos/bresil/39-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bresil/39-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bresil/39-180.jpg",
"picture_copyright": "Numista", "picture_copyright": "Numista",
"picture_license_name": "CC BY", "picture_license_name": "CC BY",
@@ -59,7 +59,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/bresil/40-original.jpg", "picture": "/photos/bresil/40-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bresil/40-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bresil/40-180.jpg",
"picture_copyright": "Numista", "picture_copyright": "Numista",
"picture_license_name": "CC BY", "picture_license_name": "CC BY",
@@ -156,9 +156,7 @@
"maxYear": 2023 "maxYear": 2023
} }
], ],
"tags": [ "tags": ["Politician"],
"Politician"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -187,5 +185,6 @@
"id": "1335", "id": "1335",
"name": "Casa da Moeda do Brasil" "name": "Casa da Moeda do Brasil"
} }
] ],
"color": "rgb(156,132,75)"
} }
+5 -7
View File
@@ -46,7 +46,7 @@
} }
], ],
"lettering_translation": "Brazil", "lettering_translation": "Brazil",
"picture": "https://en.numista.com/catalogue/photos/bresil/6415b4c0a6da96.46073896-original.jpg", "picture": "/photos/bresil/6415b4c0a6da96.46073896-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bresil/6415b4c0a6da96.46073896-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bresil/6415b4c0a6da96.46073896-180.jpg",
"picture_copyright": "Rogbert", "picture_copyright": "Rogbert",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
@@ -60,7 +60,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/bresil/6415b4c18b1fc0.64531988-original.jpg", "picture": "/photos/bresil/6415b4c18b1fc0.64531988-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bresil/6415b4c18b1fc0.64531988-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bresil/6415b4c18b1fc0.64531988-180.jpg",
"picture_copyright": "Rogbert", "picture_copyright": "Rogbert",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
@@ -157,10 +157,7 @@
"maxYear": 2023 "maxYear": 2023
} }
], ],
"tags": [ "tags": ["Horse or equine", "Politician"],
"Horse or equine",
"Politician"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -189,5 +186,6 @@
"id": "1335", "id": "1335",
"name": "Casa da Moeda do Brasil" "name": "Casa da Moeda do Brasil"
} }
] ],
"color": "rgb(132,100,60)"
} }
+7 -11
View File
@@ -37,9 +37,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Luciano Dias Araújo"],
"Luciano Dias Araújo"
],
"description": "Portrait of José Maria da Silva Paranhos Júnior (1845-1912), Baron of Rio Branco, Statesman, diplomat and historian, and the country name to the left", "description": "Portrait of José Maria da Silva Paranhos Júnior (1845-1912), Baron of Rio Branco, Statesman, diplomat and historian, and the country name to the left",
"lettering": "BRASIL\r\nRIO BRANCO", "lettering": "BRASIL\r\nRIO BRANCO",
"lettering_scripts": [ "lettering_scripts": [
@@ -48,7 +46,7 @@
} }
], ],
"lettering_translation": "Brazil", "lettering_translation": "Brazil",
"picture": "https://en.numista.com/catalogue/photos/bresil/1481-original.jpg", "picture": "/photos/bresil/1481-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bresil/1481-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bresil/1481-180.jpg",
"picture_copyright": "Monéphil", "picture_copyright": "Monéphil",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
@@ -62,7 +60,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/bresil/1482-original.jpg", "picture": "/photos/bresil/1482-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bresil/1482-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bresil/1482-180.jpg",
"picture_copyright": "Monéphil", "picture_copyright": "Monéphil",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
@@ -159,10 +157,7 @@
"maxYear": 2023 "maxYear": 2023
} }
], ],
"tags": [ "tags": ["Politician", "Map"],
"Politician",
"Map"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -199,7 +194,7 @@
} }
], ],
"lettering_translation": "Order and Progress Brazil", "lettering_translation": "Order and Progress Brazil",
"picture": "https://en.numista.com/catalogue/photos/bresil/1500-original.jpg", "picture": "/photos/bresil/1500-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bresil/1500-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bresil/1500-180.jpg",
"picture_copyright": "ZacUK" "picture_copyright": "ZacUK"
}, },
@@ -212,5 +207,6 @@
"id": "23", "id": "23",
"name": "Royal Dutch Mint" "name": "Royal Dutch Mint"
} }
] ],
"color": "rgb(200.35714285714297,145.7142857142854,54.64285714285703)"
} }
+6 -7
View File
@@ -45,7 +45,7 @@
} }
], ],
"lettering_translation": "BRAZIL", "lettering_translation": "BRAZIL",
"picture": "https://en.numista.com/catalogue/photos/bresil/6415b67398cc93.94235770-original.jpg", "picture": "/photos/bresil/6415b67398cc93.94235770-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bresil/6415b67398cc93.94235770-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bresil/6415b67398cc93.94235770-180.jpg",
"picture_copyright": "Rogbert", "picture_copyright": "Rogbert",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
@@ -59,7 +59,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/bresil/6415b674c4fe24.52982882-original.jpg", "picture": "/photos/bresil/6415b674c4fe24.52982882-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bresil/6415b674c4fe24.52982882-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bresil/6415b674c4fe24.52982882-180.jpg",
"picture_copyright": "Rogbert", "picture_copyright": "Rogbert",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
@@ -156,9 +156,7 @@
"maxYear": 1999 "maxYear": 1999
} }
], ],
"tags": [ "tags": ["Allegory"],
"Allegory"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -181,7 +179,7 @@
"orientation": "coin", "orientation": "coin",
"edge": { "edge": {
"description": "Segmented reeding", "description": "Segmented reeding",
"picture": "https://en.numista.com/catalogue/photos/bresil/1540-original.jpg", "picture": "/photos/bresil/1540-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bresil/1540-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bresil/1540-180.jpg",
"picture_copyright": "nalaberong" "picture_copyright": "nalaberong"
}, },
@@ -190,5 +188,6 @@
"id": "1335", "id": "1335",
"name": "Casa da Moeda do Brasil" "name": "Casa da Moeda do Brasil"
} }
] ],
"color": "rgb(140,100,60)"
} }
+7 -15
View File
@@ -38,10 +38,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Petar Stoikov", "Vladimir Yossifov"],
"Petar Stoikov",
"Vladimir Yossifov"
],
"description": "Madara horseman facing right.", "description": "Madara horseman facing right.",
"lettering": "БЪЛГАРИЯ", "lettering": "БЪЛГАРИЯ",
"lettering_scripts": [ "lettering_scripts": [
@@ -50,15 +47,12 @@
} }
], ],
"lettering_translation": "Bulgaria", "lettering_translation": "Bulgaria",
"picture": "https://en.numista.com/catalogue/photos/bulgarie/1055-original.jpg", "picture": "/photos/bulgarie/1055-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bulgarie/1055-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bulgarie/1055-180.jpg",
"picture_copyright": "gef" "picture_copyright": "gef"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Petar Stoikov", "Vladimir Yossifov"],
"Petar Stoikov",
"Vladimir Yossifov"
],
"description": "The twelve stars of the European community, denomination, and date.", "description": "The twelve stars of the European community, denomination, and date.",
"lettering": "10\r\n1999\r\nСТОТИНКИ", "lettering": "10\r\n1999\r\nСТОТИНКИ",
"lettering_scripts": [ "lettering_scripts": [
@@ -67,15 +61,12 @@
} }
], ],
"lettering_translation": "10 Stotinki", "lettering_translation": "10 Stotinki",
"picture": "https://en.numista.com/catalogue/photos/bulgarie/1056-original.jpg", "picture": "/photos/bulgarie/1056-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bulgarie/1056-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bulgarie/1056-180.jpg",
"picture_copyright": "gef" "picture_copyright": "gef"
}, },
"comments": "There are two different versions from 1999: <br />\r\n- Yellow matte, thickness: 1.59mm, Rectangular rim<br />\r\n- White shiny, thickness: 1,54mm, Rounded rim<br />\r\nSee this <a href=\"https://en.numista.com/forum/topic70664.html\">topic</a><br />\r\n<a href=\"https://en.numista.com/catalogue/images/5b229b43d85fb.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5b229b43d85fb.jpg\" alt=\"\" width=\"200\" height=\"160\" /></a> <a href=\"https://en.numista.com/catalogue/images/5b23876de2220.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5b23876de2220.jpg\" alt=\"\" width=\"200\" height=\"122\" /></a>", "comments": "There are two different versions from 1999: <br />\r\n- Yellow matte, thickness: 1.59mm, Rectangular rim<br />\r\n- White shiny, thickness: 1,54mm, Rounded rim<br />\r\nSee this <a href=\"https://en.numista.com/forum/topic70664.html\">topic</a><br />\r\n<a href=\"https://en.numista.com/catalogue/images/5b229b43d85fb.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5b229b43d85fb.jpg\" alt=\"\" width=\"200\" height=\"160\" /></a> <a href=\"https://en.numista.com/catalogue/images/5b23876de2220.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5b23876de2220.jpg\" alt=\"\" width=\"200\" height=\"122\" /></a>",
"tags": [ "tags": ["Cat or feline", "Horse or equine"],
"Cat or feline",
"Horse or equine"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -118,5 +109,6 @@
"id": "1329", "id": "1329",
"name": "Bulgarian Mint" "name": "Bulgarian Mint"
} }
] ],
"color": "rgb(157.25,144.5,97.74999999999999)"
} }
+7 -15
View File
@@ -38,10 +38,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Petar Stoikov", "Vladimir Yossifov"],
"Petar Stoikov",
"Vladimir Yossifov"
],
"description": "Madara horseman facing right and the country name above", "description": "Madara horseman facing right and the country name above",
"lettering": "БЪЛГАРИЯ", "lettering": "БЪЛГАРИЯ",
"lettering_scripts": [ "lettering_scripts": [
@@ -50,15 +47,12 @@
} }
], ],
"lettering_translation": "Bulgaria", "lettering_translation": "Bulgaria",
"picture": "https://en.numista.com/catalogue/photos/bulgarie/1053-original.jpg", "picture": "/photos/bulgarie/1053-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bulgarie/1053-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bulgarie/1053-180.jpg",
"picture_copyright": "gef" "picture_copyright": "gef"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Petar Stoikov", "Vladimir Yossifov"],
"Petar Stoikov",
"Vladimir Yossifov"
],
"description": "The twelve stars of the European community, denomination and date", "description": "The twelve stars of the European community, denomination and date",
"lettering": "20\r\n1999\r\nСТОТИНКИ", "lettering": "20\r\n1999\r\nСТОТИНКИ",
"lettering_scripts": [ "lettering_scripts": [
@@ -67,15 +61,12 @@
} }
], ],
"lettering_translation": "20 \r\n1999\r\nStotinki", "lettering_translation": "20 \r\n1999\r\nStotinki",
"picture": "https://en.numista.com/catalogue/photos/bulgarie/1054-original.jpg", "picture": "/photos/bulgarie/1054-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bulgarie/1054-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bulgarie/1054-180.jpg",
"picture_copyright": "gef" "picture_copyright": "gef"
}, },
"comments": "Two varieties for 1999:<br />\r\n- Small stars, angular/square shoulder<br />\r\n- Big stars, bold lettering, rounded shoulder<br />\r\n<a href=\"https://en.numista.com/catalogue/images/5c228d134c761.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5c228d134c761.jpg\" alt=\"\" width=\"199\" height=\"100\" /></a><a href=\"https://en.numista.com/catalogue/images/5c228d29ce1f2.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5c228d29ce1f2.jpg\" alt=\"\" width=\"200\" height=\"100\" /></a><br />\r\n<a href=\"https://en.numista.com/catalogue/images/5c228d44a00b0.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5c228d44a00b0.jpg\" alt=\"\" width=\"200\" height=\"221\" /></a>", "comments": "Two varieties for 1999:<br />\r\n- Small stars, angular/square shoulder<br />\r\n- Big stars, bold lettering, rounded shoulder<br />\r\n<a href=\"https://en.numista.com/catalogue/images/5c228d134c761.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5c228d134c761.jpg\" alt=\"\" width=\"199\" height=\"100\" /></a><a href=\"https://en.numista.com/catalogue/images/5c228d29ce1f2.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5c228d29ce1f2.jpg\" alt=\"\" width=\"200\" height=\"100\" /></a><br />\r\n<a href=\"https://en.numista.com/catalogue/images/5c228d44a00b0.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5c228d44a00b0.jpg\" alt=\"\" width=\"200\" height=\"221\" /></a>",
"tags": [ "tags": ["Cat or feline", "Horse or equine"],
"Cat or feline",
"Horse or equine"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -118,5 +109,6 @@
"id": "1329", "id": "1329",
"name": "Bulgarian Mint" "name": "Bulgarian Mint"
} }
] ],
"color": "rgb(157.98913043478262,149.67391304347825,97.01086956521736)"
} }
+8 -16
View File
@@ -38,10 +38,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Petar Stoikov", "Vladimir Yossifov"],
"Petar Stoikov",
"Vladimir Yossifov"
],
"description": "Madara horseman facing right and the country name at the top", "description": "Madara horseman facing right and the country name at the top",
"lettering": "БЪЛГАРИЯ", "lettering": "БЪЛГАРИЯ",
"lettering_scripts": [ "lettering_scripts": [
@@ -50,15 +47,12 @@
} }
], ],
"lettering_translation": "Bulgaria", "lettering_translation": "Bulgaria",
"picture": "https://en.numista.com/catalogue/photos/bulgarie/1519-original.jpg", "picture": "/photos/bulgarie/1519-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bulgarie/1519-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bulgarie/1519-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Petar Stoikov", "Vladimir Yossifov"],
"Petar Stoikov",
"Vladimir Yossifov"
],
"description": "Denomination above date, half-circle of 12 stars across the top", "description": "Denomination above date, half-circle of 12 stars across the top",
"lettering": "2\r\n2000\r\nСТОТИНКИ", "lettering": "2\r\n2000\r\nСТОТИНКИ",
"lettering_scripts": [ "lettering_scripts": [
@@ -67,7 +61,7 @@
} }
], ],
"lettering_translation": "2\r\n2000\r\nStotinki", "lettering_translation": "2\r\n2000\r\nStotinki",
"picture": "https://en.numista.com/catalogue/photos/bulgarie/1520-original.jpg", "picture": "/photos/bulgarie/1520-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bulgarie/1520-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bulgarie/1520-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -85,10 +79,7 @@
"maxYear": 1999 "maxYear": 1999
} }
], ],
"tags": [ "tags": ["Cat or feline", "Horse or equine"],
"Cat or feline",
"Horse or equine"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -125,7 +116,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Smooth", "description": "Smooth",
"picture": "https://en.numista.com/catalogue/photos/bulgarie/1521-original.jpg", "picture": "/photos/bulgarie/1521-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bulgarie/1521-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bulgarie/1521-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -134,5 +125,6 @@
"id": "1329", "id": "1329",
"name": "Bulgarian Mint" "name": "Bulgarian Mint"
} }
] ],
"color": "rgb(228,180,82)"
} }
+8 -16
View File
@@ -38,10 +38,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Petar Stoikov", "Vladimir Yossifov"],
"Petar Stoikov",
"Vladimir Yossifov"
],
"description": "Madara horseman facing right with the country name above", "description": "Madara horseman facing right with the country name above",
"lettering": "БЪЛГАРИЯ", "lettering": "БЪЛГАРИЯ",
"lettering_scripts": [ "lettering_scripts": [
@@ -50,15 +47,12 @@
} }
], ],
"lettering_translation": "Bulgaria", "lettering_translation": "Bulgaria",
"picture": "https://en.numista.com/catalogue/photos/bulgarie/1506-original.jpg", "picture": "/photos/bulgarie/1506-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bulgarie/1506-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bulgarie/1506-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Petar Stoikov", "Vladimir Yossifov"],
"Petar Stoikov",
"Vladimir Yossifov"
],
"description": "Denomination above date, half circle of 12 stars across top", "description": "Denomination above date, half circle of 12 stars across top",
"lettering": "1\r\n2000\r\nСТОТИНКА", "lettering": "1\r\n2000\r\nСТОТИНКА",
"lettering_scripts": [ "lettering_scripts": [
@@ -67,7 +61,7 @@
} }
], ],
"lettering_translation": "1\r\n2000\r\nStotinka", "lettering_translation": "1\r\n2000\r\nStotinka",
"picture": "https://en.numista.com/catalogue/photos/bulgarie/1507-original.jpg", "picture": "/photos/bulgarie/1507-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bulgarie/1507-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bulgarie/1507-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -85,10 +79,7 @@
"maxYear": 1999 "maxYear": 1999
} }
], ],
"tags": [ "tags": ["Cat or feline", "Horse or equine"],
"Cat or feline",
"Horse or equine"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -125,7 +116,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Smooth", "description": "Smooth",
"picture": "https://en.numista.com/catalogue/photos/bulgarie/1508-original.jpg", "picture": "/photos/bulgarie/1508-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bulgarie/1508-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bulgarie/1508-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -134,5 +125,6 @@
"id": "1329", "id": "1329",
"name": "Bulgarian Mint" "name": "Bulgarian Mint"
} }
] ],
"color": "rgb(242,199,85)"
} }
+8 -15
View File
@@ -38,10 +38,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Petar Stoikov", "Vladimir Yossifov"],
"Petar Stoikov",
"Vladimir Yossifov"
],
"description": "Madara horseman facing right with the country name above", "description": "Madara horseman facing right with the country name above",
"lettering": "БЪЛГАРИЯ", "lettering": "БЪЛГАРИЯ",
"lettering_scripts": [ "lettering_scripts": [
@@ -50,15 +47,12 @@
} }
], ],
"lettering_translation": "Bulgaria", "lettering_translation": "Bulgaria",
"picture": "https://en.numista.com/catalogue/photos/bulgarie/1537-original.jpg", "picture": "/photos/bulgarie/1537-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bulgarie/1537-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bulgarie/1537-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Petar Stoikov", "Vladimir Yossifov"],
"Petar Stoikov",
"Vladimir Yossifov"
],
"description": "Denomination above date, half circle of 12 stars across top", "description": "Denomination above date, half circle of 12 stars across top",
"lettering": "5\r\n2000\r\nСТОТИНКИ", "lettering": "5\r\n2000\r\nСТОТИНКИ",
"lettering_scripts": [ "lettering_scripts": [
@@ -67,7 +61,7 @@
} }
], ],
"lettering_translation": "5\r\n2000\r\nStotinki", "lettering_translation": "5\r\n2000\r\nStotinki",
"picture": "https://en.numista.com/catalogue/photos/bulgarie/1538-original.jpg", "picture": "/photos/bulgarie/1538-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bulgarie/1538-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bulgarie/1538-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -85,9 +79,7 @@
"maxYear": 1999 "maxYear": 1999
} }
], ],
"tags": [ "tags": ["Horse or equine"],
"Horse or equine"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -124,7 +116,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Smooth", "description": "Smooth",
"picture": "https://en.numista.com/catalogue/photos/bulgarie/1539-original.jpg", "picture": "/photos/bulgarie/1539-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bulgarie/1539-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bulgarie/1539-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -133,5 +125,6 @@
"id": "1329", "id": "1329",
"name": "Bulgarian Mint" "name": "Bulgarian Mint"
} }
] ],
"color": "rgb(212,152,44)"
} }
+8 -13
View File
@@ -38,9 +38,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Petar Stoykov"],
"Petar Stoykov"
],
"description": "Bulgaria's patron saint, St. Ivan Rilsky (Saint John of Rila) (c876 - 946) is the first Bulgarian hermit and the founder of the grandest monastery in Bulgaria. This coin was released on September 2nd, 2002.", "description": "Bulgaria's patron saint, St. Ivan Rilsky (Saint John of Rila) (c876 - 946) is the first Bulgarian hermit and the founder of the grandest monastery in Bulgaria. This coin was released on September 2nd, 2002.",
"lettering": "СВ. ИВАН РИЛСКИ\r\nБЪЛГАРИЯ", "lettering": "СВ. ИВАН РИЛСКИ\r\nБЪЛГАРИЯ",
"lettering_scripts": [ "lettering_scripts": [
@@ -49,14 +47,12 @@
} }
], ],
"lettering_translation": "St. Ivan Rilsky\r\nBulgaria", "lettering_translation": "St. Ivan Rilsky\r\nBulgaria",
"picture": "https://en.numista.com/catalogue/photos/bulgarie/1908-original.jpg", "picture": "/photos/bulgarie/1908-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bulgarie/1908-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bulgarie/1908-180.jpg",
"picture_copyright": "gef" "picture_copyright": "gef"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Petar Stoykov"],
"Petar Stoykov"
],
"description": "Denomination and date.", "description": "Denomination and date.",
"lettering": "1\r\nΛЕВ 2002", "lettering": "1\r\nΛЕВ 2002",
"lettering_scripts": [ "lettering_scripts": [
@@ -65,7 +61,7 @@
} }
], ],
"lettering_translation": "1 Lev", "lettering_translation": "1 Lev",
"picture": "https://en.numista.com/catalogue/photos/bulgarie/1909-original.jpg", "picture": "/photos/bulgarie/1909-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bulgarie/1909-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bulgarie/1909-180.jpg",
"picture_copyright": "gef" "picture_copyright": "gef"
}, },
@@ -82,9 +78,7 @@
"maxYear": 2002 "maxYear": 2002
} }
], ],
"tags": [ "tags": ["Cross"],
"Cross"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -107,7 +101,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Alternating smooth and reeded segments (8 each)", "description": "Alternating smooth and reeded segments (8 each)",
"picture": "https://en.numista.com/catalogue/photos/bulgarie/598-original.jpg", "picture": "/photos/bulgarie/598-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/bulgarie/598-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/bulgarie/598-180.jpg",
"picture_copyright": "ZacUK" "picture_copyright": "ZacUK"
}, },
@@ -116,5 +110,6 @@
"id": "1329", "id": "1329",
"name": "Bulgarian Mint" "name": "Bulgarian Mint"
} }
] ],
"color": "rgb(198,178,124)"
} }
+9 -16
View File
@@ -41,12 +41,8 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Susan Taylor"],
"Susan Taylor" "designers": ["Susanna Blunt"],
],
"designers": [
"Susanna Blunt"
],
"description": "Head of Queen Elizabeth II, as at 77 years of age, bare headed, wearing necklace and earrings, facing right.", "description": "Head of Queen Elizabeth II, as at 77 years of age, bare headed, wearing necklace and earrings, facing right.",
"lettering": "ELIZABETH II D·G·REGINA\r\n2012\r\nSB", "lettering": "ELIZABETH II D·G·REGINA\r\n2012\r\nSB",
"lettering_scripts": [ "lettering_scripts": [
@@ -56,16 +52,14 @@
], ],
"unabridged_legend": "ELIZABETH II DEI GRATIA REGINA", "unabridged_legend": "ELIZABETH II DEI GRATIA REGINA",
"lettering_translation": "Elizabeth II Queen by the grace of God\n", "lettering_translation": "Elizabeth II Queen by the grace of God\n",
"picture": "https://en.numista.com/catalogue/photos/canada/3228-original.jpg", "picture": "/photos/canada/3228-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/canada/3228-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/canada/3228-180.jpg",
"picture_copyright": "Monéphil", "picture_copyright": "Monéphil",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
"picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en"
}, },
"reverse": { "reverse": {
"designers": [ "designers": ["Robert-Ralph Carmichael"],
"Robert-Ralph Carmichael"
],
"description": "Loon with security feature above, with the country name above and the denomination at the bottom", "description": "Loon with security feature above, with the country name above and the denomination at the bottom",
"lettering": "CANADA\r\nDOLLAR\r\nRRC", "lettering": "CANADA\r\nDOLLAR\r\nRRC",
"lettering_scripts": [ "lettering_scripts": [
@@ -73,7 +67,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/canada/3229-original.jpg", "picture": "/photos/canada/3229-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/canada/3229-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/canada/3229-180.jpg",
"picture_copyright": "Monéphil", "picture_copyright": "Monéphil",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
@@ -93,9 +87,7 @@
"maxYear": 2012 "maxYear": 2012
} }
], ],
"tags": [ "tags": ["Bird"],
"Bird"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -118,7 +110,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Smooth", "description": "Smooth",
"picture": "https://en.numista.com/catalogue/photos/canada/5108-original.jpg", "picture": "/photos/canada/5108-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/canada/5108-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/canada/5108-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -131,5 +123,6 @@
"id": "20", "id": "20",
"name": "Royal Canadian Mint of Winnipeg" "name": "Royal Canadian Mint of Winnipeg"
} }
] ],
"color": "rgb(180,139,97)"
} }
+9 -16
View File
@@ -41,12 +41,8 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Susan Taylor"],
"Susan Taylor" "designers": ["Susanna Blunt"],
],
"designers": [
"Susanna Blunt"
],
"description": "Head of Queen Elizabeth II, as at 77 years of age, bare headed, wearing necklace and earrings, facing right.", "description": "Head of Queen Elizabeth II, as at 77 years of age, bare headed, wearing necklace and earrings, facing right.",
"lettering": "ELIZABETH II D•G•REGINA", "lettering": "ELIZABETH II D•G•REGINA",
"lettering_scripts": [ "lettering_scripts": [
@@ -56,16 +52,14 @@
], ],
"unabridged_legend": "ELIZABETH II DEI GRATIA REGINA", "unabridged_legend": "ELIZABETH II DEI GRATIA REGINA",
"lettering_translation": "Elizabeth II Queen by the grace of God", "lettering_translation": "Elizabeth II Queen by the grace of God",
"picture": "https://en.numista.com/catalogue/photos/canada/64f9f5a3a10549.15917871-original.jpg", "picture": "/photos/canada/64f9f5a3a10549.15917871-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/canada/64f9f5a3a10549.15917871-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/canada/64f9f5a3a10549.15917871-180.jpg",
"picture_copyright": "Carlos-Imbe", "picture_copyright": "Carlos-Imbe",
"picture_license_name": "CC BY-NC-SA", "picture_license_name": "CC BY-NC-SA",
"picture_license_url": "https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Emanuel Otto Hahn"],
"Emanuel Otto Hahn"
],
"description": "The Bluenose under sail, a Canadian schooner from Nova Scotia, a celebrated racing ship and a symbol of the province, is surrounded with the face value and the inscription \"CANADA\"", "description": "The Bluenose under sail, a Canadian schooner from Nova Scotia, a celebrated racing ship and a symbol of the province, is surrounded with the face value and the inscription \"CANADA\"",
"lettering": "CANADA\r\n2009\r\n10 CENTS\r\nH", "lettering": "CANADA\r\n2009\r\n10 CENTS\r\nH",
"lettering_scripts": [ "lettering_scripts": [
@@ -73,16 +67,14 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/canada/64f9f5a42e97f7.69114930-original.jpg", "picture": "/photos/canada/64f9f5a42e97f7.69114930-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/canada/64f9f5a42e97f7.69114930-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/canada/64f9f5a42e97f7.69114930-180.jpg",
"picture_copyright": "Carlos-Imbe", "picture_copyright": "Carlos-Imbe",
"picture_license_name": "CC BY-NC-SA", "picture_license_name": "CC BY-NC-SA",
"picture_license_url": "https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en"
}, },
"comments": "The Royal Mint&#039;s 2017 annual report lists a 199,925,000 mintage for regular circulating 2017 coins, even though the design that year was a Canada 150 design (which has a different mintage listed). However, starting in 2017, the annual report omitted the &#039;Coins struck dated 2017&#039; table, meaning the 199,925,000 coins were likely struck in 2017 are dated 2016 or 2018.<br />\n<br />\n2006 the mint mark &quot;P&quot; &nbsp;was last used and the Royal Canadian Mint Logo was also started.", "comments": "The Royal Mint&#039;s 2017 annual report lists a 199,925,000 mintage for regular circulating 2017 coins, even though the design that year was a Canada 150 design (which has a different mintage listed). However, starting in 2017, the annual report omitted the &#039;Coins struck dated 2017&#039; table, meaning the 199,925,000 coins were likely struck in 2017 are dated 2016 or 2018.<br />\n<br />\n2006 the mint mark &quot;P&quot; &nbsp;was last used and the Royal Canadian Mint Logo was also started.",
"tags": [ "tags": ["Boat or watercraft"],
"Boat or watercraft"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -105,7 +97,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Milled", "description": "Milled",
"picture": "https://en.numista.com/catalogue/photos/canada/5125-original.jpg", "picture": "/photos/canada/5125-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/canada/5125-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/canada/5125-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -118,5 +110,6 @@
"id": "20", "id": "20",
"name": "Royal Canadian Mint of Winnipeg" "name": "Royal Canadian Mint of Winnipeg"
} }
] ],
"color": "rgb(192.55102040816325,145.7142857142857,62.448979591836746)"
} }
+10 -19
View File
@@ -41,12 +41,8 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Thomas Shingles"],
"Thomas Shingles" "designers": ["Mary Gillick"],
],
"designers": [
"Mary Gillick"
],
"description": "Bust of Queen Elizabeth II, as at 27 years of age, wearing a wreath, facing right.", "description": "Bust of Queen Elizabeth II, as at 27 years of age, wearing a wreath, facing right.",
"lettering": "ELIZABETH II DEI GRATIA REGINA\r\nM·G·", "lettering": "ELIZABETH II DEI GRATIA REGINA\r\nM·G·",
"lettering_scripts": [ "lettering_scripts": [
@@ -56,19 +52,15 @@
], ],
"unabridged_legend": "ELIZABETH II DEI GRATIA REGINA", "unabridged_legend": "ELIZABETH II DEI GRATIA REGINA",
"lettering_translation": "Elizabeth II Queen by the grace of God", "lettering_translation": "Elizabeth II Queen by the grace of God",
"picture": "https://en.numista.com/catalogue/photos/canada/619901a3a3da14.36192018-original.jpg", "picture": "/photos/canada/619901a3a3da14.36192018-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/canada/619901a3a3da14.36192018-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/canada/619901a3a3da14.36192018-180.jpg",
"picture_copyright": "Ringgy", "picture_copyright": "Ringgy",
"picture_license_name": "CC BY", "picture_license_name": "CC BY",
"picture_license_url": "https://creativecommons.org/licenses/by/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by/4.0/deed.en"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Thomas Shingles"],
"Thomas Shingles" "designers": ["George Kruger Gray"],
],
"designers": [
"George Kruger Gray"
],
"description": "A beaver, over the inscription \"CANADA\", is surrounded with the face value, flanked on both sides by a maple leaf. This coin uses the same small beaver as KM# 50a, adjusted to the round frame.", "description": "A beaver, over the inscription \"CANADA\", is surrounded with the face value, flanked on both sides by a maple leaf. This coin uses the same small beaver as KM# 50a, adjusted to the round frame.",
"lettering": "5 CENTS\r\nCANADA\r\n1964\r\nK·G", "lettering": "5 CENTS\r\nCANADA\r\n1964\r\nK·G",
"lettering_scripts": [ "lettering_scripts": [
@@ -76,16 +68,14 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/canada/619901a409f4c1.32692476-original.jpg", "picture": "/photos/canada/619901a409f4c1.32692476-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/canada/619901a409f4c1.32692476-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/canada/619901a409f4c1.32692476-180.jpg",
"picture_copyright": "Ringgy", "picture_copyright": "Ringgy",
"picture_license_name": "CC BY", "picture_license_name": "CC BY",
"picture_license_url": "https://creativecommons.org/licenses/by/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by/4.0/deed.en"
}, },
"comments": "<a href=\"https://en.numista.com/catalogue/images/5ac885b47ca58.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5ac885b47ca58.jpg\" alt=\"\" width=\"200\" height=\"150\" /></a>", "comments": "<a href=\"https://en.numista.com/catalogue/images/5ac885b47ca58.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5ac885b47ca58.jpg\" alt=\"\" width=\"200\" height=\"150\" /></a>",
"tags": [ "tags": ["Rodent"],
"Rodent"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -108,7 +98,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Smooth", "description": "Smooth",
"picture": "https://en.numista.com/catalogue/photos/canada/614e00bddee690.26293339-original.jpg", "picture": "/photos/canada/614e00bddee690.26293339-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/canada/614e00bddee690.26293339-180.jpg" "thumbnail": "https://en.numista.com/catalogue/photos/canada/614e00bddee690.26293339-180.jpg"
}, },
"mints": [ "mints": [
@@ -116,5 +106,6 @@
"id": "19", "id": "19",
"name": "Royal Canadian Mint of Ottawa" "name": "Royal Canadian Mint of Ottawa"
} }
] ],
"color": "rgb(149.6739130434783,60.97826086956515,194.02173913043484)"
} }
+10 -20
View File
@@ -41,12 +41,8 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Patrick Brindley"],
"Patrick Brindley" "designers": ["Arnold Machin"],
],
"designers": [
"Arnold Machin"
],
"description": "Bust of Queen Elizabeth II, as at 37 years of age, wearing tiara, facing right.", "description": "Bust of Queen Elizabeth II, as at 37 years of age, wearing tiara, facing right.",
"lettering": "ELIZABETH II D·G·REGINA", "lettering": "ELIZABETH II D·G·REGINA",
"lettering_scripts": [ "lettering_scripts": [
@@ -56,19 +52,15 @@
], ],
"unabridged_legend": "ELIZABETH II DEI GRATIA REGINA", "unabridged_legend": "ELIZABETH II DEI GRATIA REGINA",
"lettering_translation": "Elizabeth II Queen by the grace of God", "lettering_translation": "Elizabeth II Queen by the grace of God",
"picture": "https://en.numista.com/catalogue/photos/canada/8268-original.jpg", "picture": "/photos/canada/8268-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/canada/8268-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/canada/8268-180.jpg",
"picture_copyright": "Monéphil", "picture_copyright": "Monéphil",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
"picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Terry Smith"],
"Terry Smith" "designers": ["Robert-Ralph Carmichael"],
],
"designers": [
"Robert-Ralph Carmichael"
],
"description": "A Canadian loon swimming on a lake with above the inscription \"CANADA\" and below the face value", "description": "A Canadian loon swimming on a lake with above the inscription \"CANADA\" and below the face value",
"lettering": "CANADA\r\n1987\r\nDOLLAR\r\nRRC", "lettering": "CANADA\r\n1987\r\nDOLLAR\r\nRRC",
"lettering_scripts": [ "lettering_scripts": [
@@ -76,17 +68,14 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/canada/8269-original.jpg", "picture": "/photos/canada/8269-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/canada/8269-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/canada/8269-180.jpg",
"picture_copyright": "Monéphil", "picture_copyright": "Monéphil",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
"picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en"
}, },
"comments": "Note: for 1987 the coin&#039;s thickness is 1.95 mm and diameter 26.72 mm, but for 1988 and 1989 coins it is 1.75 mm and 26.50.<br />\n<br />\nThe common loon or the Canadian Loon (Binomial Name: Gavia immer)", "comments": "Note: for 1987 the coin&#039;s thickness is 1.95 mm and diameter 26.72 mm, but for 1988 and 1989 coins it is 1.75 mm and 26.50.<br />\n<br />\nThe common loon or the Canadian Loon (Binomial Name: Gavia immer)",
"tags": [ "tags": ["Bird", "Lake"],
"Bird",
"Lake"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -116,7 +105,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Smooth", "description": "Smooth",
"picture": "https://en.numista.com/catalogue/photos/canada/5115-original.jpg", "picture": "/photos/canada/5115-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/canada/5115-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/canada/5115-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -125,5 +114,6 @@
"id": "20", "id": "20",
"name": "Royal Canadian Mint of Winnipeg" "name": "Royal Canadian Mint of Winnipeg"
} }
] ],
"color": "rgb(196,153,121)"
} }
+5 -7
View File
@@ -45,7 +45,7 @@
} }
], ],
"lettering_translation": "Republic of Chile\r\n11-IX\r\nSo\r\nFreedom", "lettering_translation": "Republic of Chile\r\n11-IX\r\nSo\r\nFreedom",
"picture": "https://en.numista.com/catalogue/photos/chili/1661-original.jpg", "picture": "/photos/chili/1661-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chili/1661-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chili/1661-180.jpg",
"picture_copyright": "Quodlibet" "picture_copyright": "Quodlibet"
}, },
@@ -57,15 +57,12 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/chili/1662-original.jpg", "picture": "/photos/chili/1662-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chili/1662-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chili/1662-180.jpg",
"picture_copyright": "Quodlibet" "picture_copyright": "Quodlibet"
}, },
"comments": "1986 Varieties:<br />\r\n<a href=\"https://en.numista.com/catalogue/images/59e7e34c0290f.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/59e7e34c0290f.jpg\" alt=\"\" width=\"200\" height=\"81\" /></a><br />\r\n<br />\r\n1988 Varieties:<br />\r\n<a href=\"https://en.numista.com/catalogue/images/59e7e480e12dd.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/59e7e480e12dd.jpg\" alt=\"\" width=\"200\" height=\"107\" /></a>", "comments": "1986 Varieties:<br />\r\n<a href=\"https://en.numista.com/catalogue/images/59e7e34c0290f.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/59e7e34c0290f.jpg\" alt=\"\" width=\"200\" height=\"81\" /></a><br />\r\n<br />\r\n1988 Varieties:<br />\r\n<a href=\"https://en.numista.com/catalogue/images/59e7e480e12dd.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/59e7e480e12dd.jpg\" alt=\"\" width=\"200\" height=\"107\" /></a>",
"tags": [ "tags": ["Allegory", "Wreath"],
"Allegory",
"Wreath"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -87,5 +84,6 @@
"id": "294", "id": "294",
"name": "Casa de Moneda de Chile" "name": "Casa de Moneda de Chile"
} }
] ],
"color": "rgb(209,156,81)"
} }
+5 -7
View File
@@ -18,13 +18,13 @@
"obverse": { "obverse": {
"description": "Bust of Nurhaci Emperor", "description": "Bust of Nurhaci Emperor",
"lettering": "1616 - 1626", "lettering": "1616 - 1626",
"picture": "https://en.numista.com/catalogue/photos/chine/606231d4e994d3.74372623-original.jpg", "picture": "/photos/chine/606231d4e994d3.74372623-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chine/606231d4e994d3.74372623-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chine/606231d4e994d3.74372623-180.jpg",
"picture_copyright": "baggasuresh" "picture_copyright": "baggasuresh"
}, },
"reverse": { "reverse": {
"description": "Dragon", "description": "Dragon",
"picture": "https://en.numista.com/catalogue/photos/chine/606231d63cadb6.41444147-original.jpg", "picture": "/photos/chine/606231d63cadb6.41444147-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chine/606231d63cadb6.41444147-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chine/606231d63cadb6.41444147-180.jpg",
"picture_copyright": "baggasuresh" "picture_copyright": "baggasuresh"
}, },
@@ -130,14 +130,12 @@
} }
} }
], ],
"tags": [ "tags": ["Fantasy animal", "Monarch"],
"Fantasy animal",
"Monarch"
],
"weight": 20, "weight": 20,
"size": 39, "size": 39,
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Reeded" "description": "Reeded"
} },
"color": "rgb(141.66666666666669,124.66666666666664,113.33333333333333)"
} }
+5 -7
View File
@@ -18,13 +18,13 @@
"obverse": { "obverse": {
"description": "Bust of Hong Taiji Emperor", "description": "Bust of Hong Taiji Emperor",
"lettering": "1627 -1643", "lettering": "1627 -1643",
"picture": "https://en.numista.com/catalogue/photos/chine/606231d76e8e00.74202044-original.jpg", "picture": "/photos/chine/606231d76e8e00.74202044-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chine/606231d76e8e00.74202044-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chine/606231d76e8e00.74202044-180.jpg",
"picture_copyright": "baggasuresh" "picture_copyright": "baggasuresh"
}, },
"reverse": { "reverse": {
"description": "Dragon", "description": "Dragon",
"picture": "https://en.numista.com/catalogue/photos/chine/606231d892b9d7.50822137-original.jpg", "picture": "/photos/chine/606231d892b9d7.50822137-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chine/606231d892b9d7.50822137-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chine/606231d892b9d7.50822137-180.jpg",
"picture_copyright": "baggasuresh" "picture_copyright": "baggasuresh"
}, },
@@ -121,14 +121,12 @@
} }
} }
], ],
"tags": [ "tags": ["Fantasy animal", "Monarch"],
"Fantasy animal",
"Monarch"
],
"weight": 20, "weight": 20,
"size": 39, "size": 39,
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Reeded" "description": "Reeded"
} },
"color": "rgb(155.02840909090907,120.25568181818181,99.97159090909095)"
} }
+5 -7
View File
@@ -18,13 +18,13 @@
"obverse": { "obverse": {
"description": "Bust of Shunzi Emperor", "description": "Bust of Shunzi Emperor",
"lettering": "1644 - 1661", "lettering": "1644 - 1661",
"picture": "https://en.numista.com/catalogue/photos/chine/606231d9c1f135.59604933-original.jpg", "picture": "/photos/chine/606231d9c1f135.59604933-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chine/606231d9c1f135.59604933-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chine/606231d9c1f135.59604933-180.jpg",
"picture_copyright": "baggasuresh" "picture_copyright": "baggasuresh"
}, },
"reverse": { "reverse": {
"description": "Dragon", "description": "Dragon",
"picture": "https://en.numista.com/catalogue/photos/chine/606231dad59eb7.11389822-original.jpg", "picture": "/photos/chine/606231dad59eb7.11389822-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chine/606231dad59eb7.11389822-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chine/606231dad59eb7.11389822-180.jpg",
"picture_copyright": "baggasuresh" "picture_copyright": "baggasuresh"
}, },
@@ -121,15 +121,13 @@
} }
} }
], ],
"tags": [ "tags": ["Fantasy animal", "Monarch"],
"Fantasy animal",
"Monarch"
],
"weight": 20, "weight": 20,
"size": 39, "size": 39,
"thickness": 2.39, "thickness": 2.39,
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Reeded" "description": "Reeded"
} },
"color": "rgb(164.33333333333334,117.11111111111113,90.66666666666666)"
} }
+5 -7
View File
@@ -18,14 +18,14 @@
"obverse": { "obverse": {
"description": "Bust of Kangxi Emperor", "description": "Bust of Kangxi Emperor",
"lettering": "帝皇熙康清大\r\n1662 - 1722", "lettering": "帝皇熙康清大\r\n1662 - 1722",
"picture": "https://en.numista.com/catalogue/photos/chine/606231dc05d215.51318411-original.jpg", "picture": "/photos/chine/606231dc05d215.51318411-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chine/606231dc05d215.51318411-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chine/606231dc05d215.51318411-180.jpg",
"picture_copyright": "baggasuresh" "picture_copyright": "baggasuresh"
}, },
"reverse": { "reverse": {
"description": "Dragon", "description": "Dragon",
"lettering": "清大\r\n帝皇大二十", "lettering": "清大\r\n帝皇大二十",
"picture": "https://en.numista.com/catalogue/photos/chine/606231dd3aa5a8.07528815-original.jpg", "picture": "/photos/chine/606231dd3aa5a8.07528815-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chine/606231dd3aa5a8.07528815-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chine/606231dd3aa5a8.07528815-180.jpg",
"picture_copyright": "baggasuresh" "picture_copyright": "baggasuresh"
}, },
@@ -122,14 +122,12 @@
} }
} }
], ],
"tags": [ "tags": ["Fantasy animal", "Monarch"],
"Fantasy animal",
"Monarch"
],
"weight": 20, "weight": 20,
"size": 39, "size": 39,
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Reeded" "description": "Reeded"
} },
"color": "rgb(139.9115044247788,124.11504424778762,115.08849557522119)"
} }
+5 -7
View File
@@ -18,13 +18,13 @@
"obverse": { "obverse": {
"description": "Bust of Yongzhen Emperor", "description": "Bust of Yongzhen Emperor",
"lettering": "1723 - 1735", "lettering": "1723 - 1735",
"picture": "https://en.numista.com/catalogue/photos/chine/606231de6464a4.68391610-original.jpg", "picture": "/photos/chine/606231de6464a4.68391610-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chine/606231de6464a4.68391610-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chine/606231de6464a4.68391610-180.jpg",
"picture_copyright": "baggasuresh" "picture_copyright": "baggasuresh"
}, },
"reverse": { "reverse": {
"description": "Dragon", "description": "Dragon",
"picture": "https://en.numista.com/catalogue/photos/chine/606231df9b4810.17354627-original.jpg", "picture": "/photos/chine/606231df9b4810.17354627-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chine/606231df9b4810.17354627-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chine/606231df9b4810.17354627-180.jpg",
"picture_copyright": "baggasuresh" "picture_copyright": "baggasuresh"
}, },
@@ -121,14 +121,12 @@
} }
} }
], ],
"tags": [ "tags": ["Fantasy animal", "Monarch"],
"Fantasy animal",
"Monarch"
],
"weight": 20, "weight": 20,
"size": 39, "size": 39,
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Reeded" "description": "Reeded"
} },
"color": "rgb(158.1,100.30000000000004,96.9)"
} }
+5 -7
View File
@@ -17,13 +17,13 @@
}, },
"obverse": { "obverse": {
"description": "Bust of Qianlong Emperor", "description": "Bust of Qianlong Emperor",
"picture": "https://en.numista.com/catalogue/photos/chine/606231e0bfdd47.88634228-original.jpg", "picture": "/photos/chine/606231e0bfdd47.88634228-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chine/606231e0bfdd47.88634228-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chine/606231e0bfdd47.88634228-180.jpg",
"picture_copyright": "baggasuresh" "picture_copyright": "baggasuresh"
}, },
"reverse": { "reverse": {
"description": "Dragon", "description": "Dragon",
"picture": "https://en.numista.com/catalogue/photos/chine/606231e1dba379.03535438-original.jpg", "picture": "/photos/chine/606231e1dba379.03535438-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chine/606231e1dba379.03535438-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chine/606231e1dba379.03535438-180.jpg",
"picture_copyright": "baggasuresh" "picture_copyright": "baggasuresh"
}, },
@@ -120,14 +120,12 @@
} }
} }
], ],
"tags": [ "tags": ["Fantasy animal", "Monarch"],
"Fantasy animal",
"Monarch"
],
"weight": 20, "weight": 20,
"size": 39, "size": 39,
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Reeded" "description": "Reeded"
} },
"color": "rgb(162.44444444444446,117.11111111111113,92.55555555555554)"
} }
+5 -7
View File
@@ -18,13 +18,13 @@
"obverse": { "obverse": {
"description": "Bust of Jiaqing Emperor", "description": "Bust of Jiaqing Emperor",
"lettering": "1796 - 1820", "lettering": "1796 - 1820",
"picture": "https://en.numista.com/catalogue/photos/chine/606231e2f28b11.88656580-original.jpg", "picture": "/photos/chine/606231e2f28b11.88656580-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chine/606231e2f28b11.88656580-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chine/606231e2f28b11.88656580-180.jpg",
"picture_copyright": "baggasuresh" "picture_copyright": "baggasuresh"
}, },
"reverse": { "reverse": {
"description": "Dragon", "description": "Dragon",
"picture": "https://en.numista.com/catalogue/photos/chine/606231e4490b12.02711543-original.jpg", "picture": "/photos/chine/606231e4490b12.02711543-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chine/606231e4490b12.02711543-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chine/606231e4490b12.02711543-180.jpg",
"picture_copyright": "baggasuresh" "picture_copyright": "baggasuresh"
}, },
@@ -121,14 +121,12 @@
} }
} }
], ],
"tags": [ "tags": ["Fantasy animal", "Monarch"],
"Fantasy animal",
"Monarch"
],
"weight": 20, "weight": 20,
"size": 39, "size": 39,
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Reeded" "description": "Reeded"
} },
"color": "rgb(161.7537313432836,117.98507462686567,93.24626865671641)"
} }
+5 -7
View File
@@ -18,13 +18,13 @@
"obverse": { "obverse": {
"description": "Bust of Daoguang Emperor", "description": "Bust of Daoguang Emperor",
"lettering": "1821 - 1850", "lettering": "1821 - 1850",
"picture": "https://en.numista.com/catalogue/photos/chine/606231e55d66b3.24946684-original.jpg", "picture": "/photos/chine/606231e55d66b3.24946684-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chine/606231e55d66b3.24946684-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chine/606231e55d66b3.24946684-180.jpg",
"picture_copyright": "baggasuresh" "picture_copyright": "baggasuresh"
}, },
"reverse": { "reverse": {
"description": "Dragon", "description": "Dragon",
"picture": "https://en.numista.com/catalogue/photos/chine/606231e6762cb2.91339870-original.jpg", "picture": "/photos/chine/606231e6762cb2.91339870-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chine/606231e6762cb2.91339870-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chine/606231e6762cb2.91339870-180.jpg",
"picture_copyright": "baggasuresh" "picture_copyright": "baggasuresh"
}, },
@@ -121,14 +121,12 @@
} }
} }
], ],
"tags": [ "tags": ["Fantasy animal", "Monarch"],
"Fantasy animal",
"Monarch"
],
"weight": 20, "weight": 20,
"size": 39, "size": 39,
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Reeded" "description": "Reeded"
} },
"color": "rgb(151.48514851485152,123.71287128712868,103.5148514851485)"
} }
+5 -7
View File
@@ -21,13 +21,13 @@
"obverse": { "obverse": {
"description": "Bust of Xianfeng Emperor", "description": "Bust of Xianfeng Emperor",
"lettering": "1851 - 1861", "lettering": "1851 - 1861",
"picture": "https://en.numista.com/catalogue/photos/chine/606231e7a15974.04430050-original.jpg", "picture": "/photos/chine/606231e7a15974.04430050-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chine/606231e7a15974.04430050-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chine/606231e7a15974.04430050-180.jpg",
"picture_copyright": "baggasuresh" "picture_copyright": "baggasuresh"
}, },
"reverse": { "reverse": {
"description": "Dragon", "description": "Dragon",
"picture": "https://en.numista.com/catalogue/photos/chine/606231e8bbeac0.83670836-original.jpg", "picture": "/photos/chine/606231e8bbeac0.83670836-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chine/606231e8bbeac0.83670836-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chine/606231e8bbeac0.83670836-180.jpg",
"picture_copyright": "baggasuresh" "picture_copyright": "baggasuresh"
}, },
@@ -124,15 +124,13 @@
} }
} }
], ],
"tags": [ "tags": ["Fantasy animal", "Monarch"],
"Fantasy animal",
"Monarch"
],
"weight": 20, "weight": 20,
"size": 39, "size": 39,
"thickness": 2, "thickness": 2,
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Reeded" "description": "Reeded"
} },
"color": "rgb(164.33333333333334,120.88888888888889,90.66666666666666)"
} }
+5 -7
View File
@@ -18,13 +18,13 @@
"obverse": { "obverse": {
"description": "Bust of Tongxhi Emperor", "description": "Bust of Tongxhi Emperor",
"lettering": "1862 -1874", "lettering": "1862 -1874",
"picture": "https://en.numista.com/catalogue/photos/chine/606231ea00cf51.47598134-original.jpg", "picture": "/photos/chine/606231ea00cf51.47598134-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chine/606231ea00cf51.47598134-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chine/606231ea00cf51.47598134-180.jpg",
"picture_copyright": "baggasuresh" "picture_copyright": "baggasuresh"
}, },
"reverse": { "reverse": {
"description": "Dragon", "description": "Dragon",
"picture": "https://en.numista.com/catalogue/photos/chine/606231eb1f5264.67992186-original.jpg", "picture": "/photos/chine/606231eb1f5264.67992186-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chine/606231eb1f5264.67992186-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chine/606231eb1f5264.67992186-180.jpg",
"picture_copyright": "baggasuresh" "picture_copyright": "baggasuresh"
}, },
@@ -121,14 +121,12 @@
} }
} }
], ],
"tags": [ "tags": ["Fantasy animal", "Monarch"],
"Fantasy animal",
"Monarch"
],
"weight": 20, "weight": 20,
"size": 39, "size": 39,
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Reeded" "description": "Reeded"
} },
"color": "rgb(150.9183673469388,122.29591836734696,104.08163265306119)"
} }
+5 -7
View File
@@ -18,13 +18,13 @@
"obverse": { "obverse": {
"description": "Bust of Guanxu Emperor", "description": "Bust of Guanxu Emperor",
"lettering": "1875 - 1908", "lettering": "1875 - 1908",
"picture": "https://en.numista.com/catalogue/photos/chine/606231ec454af0.23645790-original.jpg", "picture": "/photos/chine/606231ec454af0.23645790-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chine/606231ec454af0.23645790-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chine/606231ec454af0.23645790-180.jpg",
"picture_copyright": "baggasuresh" "picture_copyright": "baggasuresh"
}, },
"reverse": { "reverse": {
"description": "Dragon", "description": "Dragon",
"picture": "https://en.numista.com/catalogue/photos/chine/606231ed5ede24.41491594-original.jpg", "picture": "/photos/chine/606231ed5ede24.41491594-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chine/606231ed5ede24.41491594-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chine/606231ed5ede24.41491594-180.jpg",
"picture_copyright": "baggasuresh" "picture_copyright": "baggasuresh"
}, },
@@ -121,14 +121,12 @@
} }
} }
], ],
"tags": [ "tags": ["Fantasy animal", "Monarch"],
"Fantasy animal",
"Monarch"
],
"weight": 20, "weight": 20,
"size": 39, "size": 39,
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Reeded" "description": "Reeded"
} },
"color": "rgb(147.33333333333331,127.5,107.66666666666669)"
} }
+5 -7
View File
@@ -18,13 +18,13 @@
"obverse": { "obverse": {
"description": "Bust of Xuantong Emperor", "description": "Bust of Xuantong Emperor",
"lettering": "1909 - 1911", "lettering": "1909 - 1911",
"picture": "https://en.numista.com/catalogue/photos/chine/606231ee890585.62943757-original.jpg", "picture": "/photos/chine/606231ee890585.62943757-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chine/606231ee890585.62943757-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chine/606231ee890585.62943757-180.jpg",
"picture_copyright": "baggasuresh" "picture_copyright": "baggasuresh"
}, },
"reverse": { "reverse": {
"description": "Dragon", "description": "Dragon",
"picture": "https://en.numista.com/catalogue/photos/chine/606231efdc5795.96381491-original.jpg", "picture": "/photos/chine/606231efdc5795.96381491-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chine/606231efdc5795.96381491-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chine/606231efdc5795.96381491-180.jpg",
"picture_copyright": "baggasuresh" "picture_copyright": "baggasuresh"
}, },
@@ -121,14 +121,12 @@
} }
} }
], ],
"tags": [ "tags": ["Fantasy animal", "Monarch"],
"Fantasy animal",
"Monarch"
],
"weight": 20, "weight": 20,
"size": 39, "size": 39,
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Reeded" "description": "Reeded"
} },
"color": "rgb(154.9065420560748,123.9252336448598,100.09345794392519)"
} }
+6 -7
View File
@@ -38,9 +38,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Dicken Castro"],
"Dicken Castro"
],
"description": "State name, denomination, and year of issue.", "description": "State name, denomination, and year of issue.",
"lettering": "REPUBLICA DE COLOMBIA\r\n200 \r\nPESOS\r\n2005", "lettering": "REPUBLICA DE COLOMBIA\r\n200 \r\nPESOS\r\n2005",
"lettering_scripts": [ "lettering_scripts": [
@@ -49,14 +47,14 @@
} }
], ],
"lettering_translation": "Republic of Colombia", "lettering_translation": "Republic of Colombia",
"picture": "https://en.numista.com/catalogue/photos/colombie/1302-original.jpg", "picture": "/photos/colombie/1302-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/colombie/1302-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/colombie/1302-180.jpg",
"picture_copyright": "Ciscoins.net", "picture_copyright": "Ciscoins.net",
"picture_copyright_url": "https://web.archive.org/web/20201116183734/http://ciscoins.net/" "picture_copyright_url": "https://web.archive.org/web/20201116183734/http://ciscoins.net/"
}, },
"reverse": { "reverse": {
"description": "Quimbaya spindlewheel with stylized bird heads.", "description": "Quimbaya spindlewheel with stylized bird heads.",
"picture": "https://en.numista.com/catalogue/photos/colombie/1301-original.jpg", "picture": "/photos/colombie/1301-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/colombie/1301-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/colombie/1301-180.jpg",
"picture_copyright": "Ciscoins.net", "picture_copyright": "Ciscoins.net",
"picture_copyright_url": "https://web.archive.org/web/20201116183734/http://ciscoins.net/" "picture_copyright_url": "https://web.archive.org/web/20201116183734/http://ciscoins.net/"
@@ -111,7 +109,7 @@
} }
], ],
"lettering_translation": "Quimbayan motif *** 200 Pesos ***", "lettering_translation": "Quimbayan motif *** 200 Pesos ***",
"picture": "https://en.numista.com/catalogue/photos/colombie/291-original.jpg", "picture": "/photos/colombie/291-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/colombie/291-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/colombie/291-180.jpg",
"picture_copyright": "ZacUK" "picture_copyright": "ZacUK"
}, },
@@ -120,5 +118,6 @@
"id": "4172", "id": "4172",
"name": "Fábrica de Moneda de Ibagué" "name": "Fábrica de Moneda de Ibagué"
} }
] ],
"color": "rgb(149.3939393939394,131.36363636363637,105.60606060606061)"
} }
+5 -8
View File
@@ -44,7 +44,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/colombie/1299-original.jpg", "picture": "/photos/colombie/1299-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/colombie/1299-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/colombie/1299-180.jpg",
"picture_copyright": "Ciscoins.net", "picture_copyright": "Ciscoins.net",
"picture_copyright_url": "https://web.archive.org/web/20201116183734/http://ciscoins.net/" "picture_copyright_url": "https://web.archive.org/web/20201116183734/http://ciscoins.net/"
@@ -57,7 +57,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/colombie/1300-original.jpg", "picture": "/photos/colombie/1300-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/colombie/1300-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/colombie/1300-180.jpg",
"picture_copyright": "Ciscoins.net", "picture_copyright": "Ciscoins.net",
"picture_copyright_url": "https://web.archive.org/web/20201116183734/http://ciscoins.net/" "picture_copyright_url": "https://web.archive.org/web/20201116183734/http://ciscoins.net/"
@@ -76,11 +76,7 @@
"maxYear": 2012 "maxYear": 2012
} }
], ],
"tags": [ "tags": ["Bird", "Coat of Arms", "Wreath"],
"Bird",
"Coat of Arms",
"Wreath"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -102,5 +98,6 @@
"id": "4172", "id": "4172",
"name": "Fábrica de Moneda de Ibagué" "name": "Fábrica de Moneda de Ibagué"
} }
] ],
"color": "rgb(148.6092715231788,128.34437086092714,106.3907284768212)"
} }
+5 -6
View File
@@ -45,7 +45,7 @@
} }
], ],
"lettering_translation": "Republic of Colombia\r\nThe Guacari Tree", "lettering_translation": "Republic of Colombia\r\nThe Guacari Tree",
"picture": "https://en.numista.com/catalogue/photos/colombie/1287-original.jpg", "picture": "/photos/colombie/1287-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/colombie/1287-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/colombie/1287-180.jpg",
"picture_copyright": "Ciscoins.net", "picture_copyright": "Ciscoins.net",
"picture_copyright_url": "https://web.archive.org/web/20201116183734/http://ciscoins.net/" "picture_copyright_url": "https://web.archive.org/web/20201116183734/http://ciscoins.net/"
@@ -58,15 +58,13 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/colombie/1288-original.jpg", "picture": "/photos/colombie/1288-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/colombie/1288-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/colombie/1288-180.jpg",
"picture_copyright": "Ciscoins.net", "picture_copyright": "Ciscoins.net",
"picture_copyright_url": "https://web.archive.org/web/20201116183734/http://ciscoins.net/" "picture_copyright_url": "https://web.archive.org/web/20201116183734/http://ciscoins.net/"
}, },
"comments": "Varieties exist both in terms of the ratio of design size and the inner circle and in terms of placement of writing along the rim (closer vs. farther from the coin edge):<br />\r\n<a href=\"https://en.numista.com/catalogue/images/5fc0744b2b2d3.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5fc0744b2b2d3.jpg\" alt=\"\" width=\"200\" height=\"195\" /></a><br />\r\n<br />\r\nVarieties exist on the 1997 lettering: <br />\r\n<a href=\"https://en.numista.com/catalogue/images/5fbd77e9db1c0.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5fbd77e9db1c0.jpg\" alt=\"\" width=\"120\" height=\"250\" /></a><a href=\"https://en.numista.com/catalogue/images/5fbd77fda8032.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5fbd77fda8032.jpg\" alt=\"\" width=\"120\" height=\"250\" /></a> @Duberney Osorio<br />\r\n<a href=\"https://en.numista.com/catalogue/images/620d6ec4b96bc.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/620d6ec4b96bc.jpg\" alt=\"\" width=\"200\" height=\"200\" /></a><br />\r\n<br />\r\nFalse coin, 2004, 6,8 grams with rotation error<br />\r\n<a href=\"https://en.numista.com/catalogue/images/6289393bbf4d4.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/6289393bbf4d4.jpg\" alt=\"\" width=\"200\" height=\"200\" /></a><br />\r\n<a href=\"https://en.numista.com/catalogue/images/628939479ba57.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/628939479ba57.jpg\" alt=\"\" width=\"200\" height=\"200\" /></a><br />\r\n@Darthvader (Numista)", "comments": "Varieties exist both in terms of the ratio of design size and the inner circle and in terms of placement of writing along the rim (closer vs. farther from the coin edge):<br />\r\n<a href=\"https://en.numista.com/catalogue/images/5fc0744b2b2d3.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5fc0744b2b2d3.jpg\" alt=\"\" width=\"200\" height=\"195\" /></a><br />\r\n<br />\r\nVarieties exist on the 1997 lettering: <br />\r\n<a href=\"https://en.numista.com/catalogue/images/5fbd77e9db1c0.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5fbd77e9db1c0.jpg\" alt=\"\" width=\"120\" height=\"250\" /></a><a href=\"https://en.numista.com/catalogue/images/5fbd77fda8032.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5fbd77fda8032.jpg\" alt=\"\" width=\"120\" height=\"250\" /></a> @Duberney Osorio<br />\r\n<a href=\"https://en.numista.com/catalogue/images/620d6ec4b96bc.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/620d6ec4b96bc.jpg\" alt=\"\" width=\"200\" height=\"200\" /></a><br />\r\n<br />\r\nFalse coin, 2004, 6,8 grams with rotation error<br />\r\n<a href=\"https://en.numista.com/catalogue/images/6289393bbf4d4.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/6289393bbf4d4.jpg\" alt=\"\" width=\"200\" height=\"200\" /></a><br />\r\n<a href=\"https://en.numista.com/catalogue/images/628939479ba57.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/628939479ba57.jpg\" alt=\"\" width=\"200\" height=\"200\" /></a><br />\r\n@Darthvader (Numista)",
"tags": [ "tags": ["Tree"],
"Tree"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -95,5 +93,6 @@
"id": "4172", "id": "4172",
"name": "Fábrica de Moneda de Ibagué" "name": "Fábrica de Moneda de Ibagué"
} }
] ],
"color": "rgb(163.20000000000005,129.68571428571428,91.79999999999997)"
} }
+6 -9
View File
@@ -45,7 +45,7 @@
} }
], ],
"lettering_translation": "Republic of Colombia 2008\r\nLiberty and Order", "lettering_translation": "Republic of Colombia 2008\r\nLiberty and Order",
"picture": "https://en.numista.com/catalogue/photos/colombie/1297-original.jpg", "picture": "/photos/colombie/1297-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/colombie/1297-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/colombie/1297-180.jpg",
"picture_copyright": "Ciscoins.net", "picture_copyright": "Ciscoins.net",
"picture_copyright_url": "https://web.archive.org/web/20201116183734/http://ciscoins.net/" "picture_copyright_url": "https://web.archive.org/web/20201116183734/http://ciscoins.net/"
@@ -58,17 +58,13 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/colombie/1298-original.jpg", "picture": "/photos/colombie/1298-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/colombie/1298-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/colombie/1298-180.jpg",
"picture_copyright": "Ciscoins.net", "picture_copyright": "Ciscoins.net",
"picture_copyright_url": "https://web.archive.org/web/20201116183734/http://ciscoins.net/" "picture_copyright_url": "https://web.archive.org/web/20201116183734/http://ciscoins.net/"
}, },
"comments": "Documentation of numeral sizes in the denomination<br />\r\n<a href=\"https://en.numista.com/catalogue/images/560404a3ea129.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/560404a3ea129.jpg\" alt=\"\" width=\"200\" height=\"150\" /></a><br />\r\nOle<br />\r\n<br />\r\nDesign varieties exist:<br />\r\n<a href=\"https://en.numista.com/catalogue/images/64c997050a65c.png\"><img src=\"https://en.numista.com/catalogue/images/miniatures/64c997050a65c.png\" alt=\"\" width=\"199\" height=\"133\" /></a>", "comments": "Documentation of numeral sizes in the denomination<br />\r\n<a href=\"https://en.numista.com/catalogue/images/560404a3ea129.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/560404a3ea129.jpg\" alt=\"\" width=\"200\" height=\"150\" /></a><br />\r\nOle<br />\r\n<br />\r\nDesign varieties exist:<br />\r\n<a href=\"https://en.numista.com/catalogue/images/64c997050a65c.png\"><img src=\"https://en.numista.com/catalogue/images/miniatures/64c997050a65c.png\" alt=\"\" width=\"199\" height=\"133\" /></a>",
"tags": [ "tags": ["Bird", "Coat of Arms", "Wreath"],
"Bird",
"Coat of Arms",
"Wreath"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -93,8 +89,9 @@
"description": "Two times the value, between two milled sections.\r\nVarieties exist with letters up or down when the obverse faces up.\r\nUntil 1995, three varieties of letter-size exist (small, medium or large letters), while coins after 1995 all have large letters.", "description": "Two times the value, between two milled sections.\r\nVarieties exist with letters up or down when the obverse faces up.\r\nUntil 1995, three varieties of letter-size exist (small, medium or large letters), while coins after 1995 all have large letters.",
"lettering": "CIEN PESOS ||||||||||||||||| CIEN PESOS |||||||||||||||||", "lettering": "CIEN PESOS ||||||||||||||||| CIEN PESOS |||||||||||||||||",
"lettering_translation": "100 Pesos 100 Pesos", "lettering_translation": "100 Pesos 100 Pesos",
"picture": "https://en.numista.com/catalogue/photos/colombie/650-original.jpg", "picture": "/photos/colombie/650-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/colombie/650-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/colombie/650-180.jpg",
"picture_copyright": "ZacUK" "picture_copyright": "ZacUK"
} },
"color": "rgb(171.5178571428571,127.49999999999997,83.4821428571429)"
} }
+4 -3
View File
@@ -45,14 +45,14 @@
} }
], ],
"lettering_translation": "Republic of Colombia\r\n1000 Pesos\r\n1996", "lettering_translation": "Republic of Colombia\r\n1000 Pesos\r\n1996",
"picture": "https://en.numista.com/catalogue/photos/colombie/1282-original.jpg", "picture": "/photos/colombie/1282-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/colombie/1282-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/colombie/1282-180.jpg",
"picture_copyright": "Ciscoins.net", "picture_copyright": "Ciscoins.net",
"picture_copyright_url": "https://web.archive.org/web/20201116183734/http://ciscoins.net/" "picture_copyright_url": "https://web.archive.org/web/20201116183734/http://ciscoins.net/"
}, },
"reverse": { "reverse": {
"description": "Filigree design", "description": "Filigree design",
"picture": "https://en.numista.com/catalogue/photos/colombie/1281-original.jpg", "picture": "/photos/colombie/1281-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/colombie/1281-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/colombie/1281-180.jpg",
"picture_copyright": "Ciscoins.net", "picture_copyright": "Ciscoins.net",
"picture_copyright_url": "https://web.archive.org/web/20201116183734/http://ciscoins.net/" "picture_copyright_url": "https://web.archive.org/web/20201116183734/http://ciscoins.net/"
@@ -81,5 +81,6 @@
"id": "4172", "id": "4172",
"name": "Fábrica de Moneda de Ibagué" "name": "Fábrica de Moneda de Ibagué"
} }
] ],
"color": "rgb(153,134.05714285714288,102)"
} }
+8 -15
View File
@@ -37,10 +37,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Tatiana Sotiropoulou", "Erik Maell"],
"Tatiana Sotiropoulou",
"Erik Maell"
],
"description": "Two mouflons, a species of wild sheep found in Cyprus and representative of the islands wildlife and the 12 stars of Europe around the rim", "description": "Two mouflons, a species of wild sheep found in Cyprus and representative of the islands wildlife and the 12 stars of Europe around the rim",
"lettering": "ΚΥΠΡΟΣ · 2010 · KIBRIS", "lettering": "ΚΥΠΡΟΣ · 2010 · KIBRIS",
"lettering_scripts": [ "lettering_scripts": [
@@ -49,16 +46,14 @@
} }
], ],
"lettering_translation": "Cyprus 2010 Cyprus", "lettering_translation": "Cyprus 2010 Cyprus",
"picture": "https://en.numista.com/catalogue/photos/chypre/61f93b96d1bb75.07538638-original.jpg", "picture": "/photos/chypre/61f93b96d1bb75.07538638-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chypre/61f93b96d1bb75.07538638-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chypre/61f93b96d1bb75.07538638-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
"picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Luc Luycx"],
"Luc Luycx"
],
"description": "A globe, next to the face value, shows Europe in relation to Africa and Asia.", "description": "A globe, next to the face value, shows Europe in relation to Africa and Asia.",
"lettering": "EURO 1 CENT LL", "lettering": "EURO 1 CENT LL",
"lettering_scripts": [ "lettering_scripts": [
@@ -66,7 +61,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/chypre/673-original.jpg", "picture": "/photos/chypre/673-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chypre/673-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chypre/673-180.jpg",
"picture_copyright": "Comptoir des Monnaies", "picture_copyright": "Comptoir des Monnaies",
"picture_copyright_url": "http://www.comptoir-des-monnaies.com" "picture_copyright_url": "http://www.comptoir-des-monnaies.com"
@@ -95,10 +90,7 @@
"maxYear": 2022 "maxYear": 2022
} }
], ],
"tags": [ "tags": ["Sheep or ovine", "Map"],
"Sheep or ovine",
"Map"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -121,7 +113,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Smooth", "description": "Smooth",
"picture": "https://en.numista.com/catalogue/photos/chypre/644-original.jpg", "picture": "/photos/chypre/644-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chypre/644-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chypre/644-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -135,5 +127,6 @@
"name": "The National Mint of the Bank of Greece" "name": "The National Mint of the Bank of Greece"
} }
], ],
"count": 1 "count": 1,
"color": "rgb(182,127,94)"
} }
+8 -15
View File
@@ -37,10 +37,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Tatiana Sotiropoulou", "Erik Maell"],
"Tatiana Sotiropoulou",
"Erik Maell"
],
"description": "Mouflon, a species of wild sheep found on Cyprus and representative of the islands wildlife.", "description": "Mouflon, a species of wild sheep found on Cyprus and representative of the islands wildlife.",
"lettering": "ΚΥΠΡΟΣ·2010·KIBRIS", "lettering": "ΚΥΠΡΟΣ·2010·KIBRIS",
"lettering_scripts": [ "lettering_scripts": [
@@ -51,16 +48,14 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/chypre/62c90b3f212cf3.13056628-original.jpg", "picture": "/photos/chypre/62c90b3f212cf3.13056628-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chypre/62c90b3f212cf3.13056628-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chypre/62c90b3f212cf3.13056628-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
"picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Luc Luycx"],
"Luc Luycx"
],
"description": "The reverse of the coin shows Europe in relation to Africa and Asia on a globe; it also features the numeral 5 and the inscription EURO CENT.", "description": "The reverse of the coin shows Europe in relation to Africa and Asia on a globe; it also features the numeral 5 and the inscription EURO CENT.",
"lettering": "5 \r\nEURO \r\nCENT\r\nLL", "lettering": "5 \r\nEURO \r\nCENT\r\nLL",
"lettering_scripts": [ "lettering_scripts": [
@@ -68,7 +63,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/chypre/62c90b401315b3.35059836-original.jpg", "picture": "/photos/chypre/62c90b401315b3.35059836-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chypre/62c90b401315b3.35059836-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chypre/62c90b401315b3.35059836-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
@@ -99,10 +94,7 @@
"maxYear": 2022 "maxYear": 2022
} }
], ],
"tags": [ "tags": ["Sheep or ovine", "Map"],
"Sheep or ovine",
"Map"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -125,7 +117,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Smooth", "description": "Smooth",
"picture": "https://en.numista.com/catalogue/photos/chypre/645-original.jpg", "picture": "/photos/chypre/645-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chypre/645-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chypre/645-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -139,5 +131,6 @@
"name": "The National Mint of the Bank of Greece" "name": "The National Mint of the Bank of Greece"
} }
], ],
"count": 1 "count": 1,
"color": "rgb(182,127,94)"
} }
+8 -16
View File
@@ -37,10 +37,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Tatiana Sotiropoulou", "Erik Maell"],
"Tatiana Sotiropoulou",
"Erik Maell"
],
"description": "Kyrenia ship, a trading vessel which dates back to the fourth century BC and a symbol of Cypruss seafaring history and its importance as a centre of trade.", "description": "Kyrenia ship, a trading vessel which dates back to the fourth century BC and a symbol of Cypruss seafaring history and its importance as a centre of trade.",
"lettering": "ΚΥΠΡΟΣ·2008·KIBRIS", "lettering": "ΚΥΠΡΟΣ·2008·KIBRIS",
"lettering_scripts": [ "lettering_scripts": [
@@ -51,16 +48,14 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/chypre/605d6fb0cba4a0.61763198-original.jpg", "picture": "/photos/chypre/605d6fb0cba4a0.61763198-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chypre/605d6fb0cba4a0.61763198-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chypre/605d6fb0cba4a0.61763198-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
"picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Luc Luycx"],
"Luc Luycx"
],
"description": "The reverse of the coin shows a geographical image of Europe; it also features the numeral 50 and the inscription EURO CENT.", "description": "The reverse of the coin shows a geographical image of Europe; it also features the numeral 50 and the inscription EURO CENT.",
"lettering": "50 \r\nLL\r\nEURO \r\nCENT", "lettering": "50 \r\nLL\r\nEURO \r\nCENT",
"lettering_scripts": [ "lettering_scripts": [
@@ -68,7 +63,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/chypre/605d6fb16932d3.04128821-original.jpg", "picture": "/photos/chypre/605d6fb16932d3.04128821-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chypre/605d6fb16932d3.04128821-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chypre/605d6fb16932d3.04128821-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
@@ -98,11 +93,7 @@
"maxYear": 2022 "maxYear": 2022
} }
], ],
"tags": [ "tags": ["Map", "Sea", "Boat or watercraft"],
"Map",
"Sea",
"Boat or watercraft"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -125,7 +116,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Indented", "description": "Indented",
"picture": "https://en.numista.com/catalogue/photos/chypre/646-original.jpg", "picture": "/photos/chypre/646-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/chypre/646-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/chypre/646-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -139,5 +130,6 @@
"name": "The National Mint of the Bank of Greece" "name": "The National Mint of the Bank of Greece"
} }
], ],
"count": 1 "count": 1,
"color": "rgb(156,124,33)"
} }
+5 -7
View File
@@ -45,7 +45,7 @@
} }
], ],
"lettering_translation": "Dominican Republic\r\nGod Fatherland Liberty\r\nDominican Republic\r\n5 Pesos", "lettering_translation": "Dominican Republic\r\nGod Fatherland Liberty\r\nDominican Republic\r\n5 Pesos",
"picture": "https://en.numista.com/catalogue/photos/republique_dominicaine/598-original.jpg", "picture": "/photos/republique_dominicaine/598-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/republique_dominicaine/598-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/republique_dominicaine/598-180.jpg",
"picture_copyright": "Essor Prof" "picture_copyright": "Essor Prof"
}, },
@@ -58,7 +58,7 @@
} }
], ],
"lettering_translation": "Central Bank of the Dominican Republic\r\nSánchez\r\n2008", "lettering_translation": "Central Bank of the Dominican Republic\r\nSánchez\r\n2008",
"picture": "https://en.numista.com/catalogue/photos/republique_dominicaine/597-original.jpg", "picture": "/photos/republique_dominicaine/597-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/republique_dominicaine/597-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/republique_dominicaine/597-180.jpg",
"picture_copyright": "Essor Prof" "picture_copyright": "Essor Prof"
}, },
@@ -76,10 +76,7 @@
"maxYear": 2022 "maxYear": 2022
} }
], ],
"tags": [ "tags": ["Coat of Arms", "Politician"],
"Coat of Arms",
"Politician"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -116,5 +113,6 @@
"id": "24", "id": "24",
"name": "Royal Mint of Spain" "name": "Royal Mint of Spain"
} }
] ],
"color": "rgb(108,84,52)"
} }
+5 -8
View File
@@ -45,7 +45,7 @@
} }
], ],
"lettering_translation": "Republic of Ecuador\r\nEugenio Espejo", "lettering_translation": "Republic of Ecuador\r\nEugenio Espejo",
"picture": "https://en.numista.com/catalogue/photos/equateur/5fc7c8fa6e50a5.14949255-original.jpg", "picture": "/photos/equateur/5fc7c8fa6e50a5.14949255-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/equateur/5fc7c8fa6e50a5.14949255-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/equateur/5fc7c8fa6e50a5.14949255-180.jpg",
"picture_copyright": "Ben-jamin", "picture_copyright": "Ben-jamin",
"picture_license_name": "CC0", "picture_license_name": "CC0",
@@ -60,18 +60,14 @@
} }
], ],
"lettering_translation": "Central Bank of Ecuador\r\nYear 2000\r\nTen centavos", "lettering_translation": "Central Bank of Ecuador\r\nYear 2000\r\nTen centavos",
"picture": "https://en.numista.com/catalogue/photos/equateur/5fc7c8fae5e4f2.19901762-original.jpg", "picture": "/photos/equateur/5fc7c8fae5e4f2.19901762-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/equateur/5fc7c8fae5e4f2.19901762-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/equateur/5fc7c8fae5e4f2.19901762-180.jpg",
"picture_copyright": "Ben-jamin", "picture_copyright": "Ben-jamin",
"picture_license_name": "CC0", "picture_license_name": "CC0",
"picture_license_url": "https://creativecommons.org/publicdomain/zero/1.0/deed.en" "picture_license_url": "https://creativecommons.org/publicdomain/zero/1.0/deed.en"
}, },
"comments": "Due to rampant inflation in the 1980&#039;s and 1990&#039;s, the government of Ecuador abandoned the Sucre in 2000 and adopted the United States Dollar. These coins where introduced to supplement the circulation of the <a href=\"https://en.numista.com/catalogue/pieces53.html\">Dime</a>.", "comments": "Due to rampant inflation in the 1980&#039;s and 1990&#039;s, the government of Ecuador abandoned the Sucre in 2000 and adopted the United States Dollar. These coins where introduced to supplement the circulation of the <a href=\"https://en.numista.com/catalogue/pieces53.html\">Dime</a>.",
"tags": [ "tags": ["Literature", "Coat of Arms", "Scientist"],
"Literature",
"Coat of Arms",
"Scientist"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -100,5 +96,6 @@
"id": "29", "id": "29",
"name": "Casa de Moneda de México" "name": "Casa de Moneda de México"
} }
] ],
"color": "rgb(196,156,124)"
} }
+8 -13
View File
@@ -37,9 +37,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["L. Lõhmus"],
"L. Lõhmus"
],
"description": "A silhouette map of Estonia with the year above and the country name below and twelve five-pointed stars around the rim representing the European Union", "description": "A silhouette map of Estonia with the year above and the country name below and twelve five-pointed stars around the rim representing the European Union",
"lettering": "2018\r\nEESTI", "lettering": "2018\r\nEESTI",
"lettering_scripts": [ "lettering_scripts": [
@@ -48,14 +46,12 @@
} }
], ],
"lettering_translation": "2018\r\nEstonia", "lettering_translation": "2018\r\nEstonia",
"picture": "https://en.numista.com/catalogue/photos/estonie/565-original.jpg", "picture": "/photos/estonie/565-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/estonie/565-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/estonie/565-180.jpg",
"picture_copyright": "Ulmo" "picture_copyright": "Ulmo"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Luc Luycx"],
"Luc Luycx"
],
"description": "A globe, next to the face value, shows Europe in relation to Africa and Asia", "description": "A globe, next to the face value, shows Europe in relation to Africa and Asia",
"lettering": "5 EURO CENT LL", "lettering": "5 EURO CENT LL",
"lettering_scripts": [ "lettering_scripts": [
@@ -63,14 +59,12 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/estonie/566-original.jpg", "picture": "/photos/estonie/566-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/estonie/566-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/estonie/566-180.jpg",
"picture_copyright": "Ulmo" "picture_copyright": "Ulmo"
}, },
"comments": "Coins from 2018 have large stars:<br />\r\n<br />\r\n<a href=\"https://en.numista.com/catalogue/images/5bd47545c0a44.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5bd47545c0a44.jpg\" alt=\"\" width=\"200\" height=\"101\" /></a><br />\r\n<br />\r\n2018 has both small and large stars (left coin made in Slovakian mint with bigger mintage, right Lithuanian mint with smaller mintage):<br />\r\n<br />\r\n<a href=\"https://en.numista.com/catalogue/images/60a18ef833e45.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/60a18ef833e45.jpg\" alt=\"\" width=\"199\" height=\"100\" /></a>", "comments": "Coins from 2018 have large stars:<br />\r\n<br />\r\n<a href=\"https://en.numista.com/catalogue/images/5bd47545c0a44.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5bd47545c0a44.jpg\" alt=\"\" width=\"200\" height=\"101\" /></a><br />\r\n<br />\r\n2018 has both small and large stars (left coin made in Slovakian mint with bigger mintage, right Lithuanian mint with smaller mintage):<br />\r\n<br />\r\n<a href=\"https://en.numista.com/catalogue/images/60a18ef833e45.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/60a18ef833e45.jpg\" alt=\"\" width=\"199\" height=\"100\" /></a>",
"tags": [ "tags": ["Map"],
"Map"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -93,7 +87,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Smooth", "description": "Smooth",
"picture": "https://en.numista.com/catalogue/photos/estonie/366-original.jpg", "picture": "/photos/estonie/366-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/estonie/366-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/estonie/366-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -107,5 +101,6 @@
"name": "Royal Dutch Mint" "name": "Royal Dutch Mint"
} }
], ],
"count": 1 "count": 1,
"color": "rgb(204,177,148)"
} }
+8 -16
View File
@@ -37,9 +37,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Heikki Aulis Häiväoja"],
"Heikki Aulis Häiväoja"
],
"description": "The Finnish heraldic lion is encircled by the twelve stars of Europe", "description": "The Finnish heraldic lion is encircled by the twelve stars of Europe",
"lettering": "2005 M", "lettering": "2005 M",
"lettering_scripts": [ "lettering_scripts": [
@@ -47,16 +45,14 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/finlande/61fde2813256f5.16847117-original.jpg", "picture": "/photos/finlande/61fde2813256f5.16847117-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/finlande/61fde2813256f5.16847117-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/finlande/61fde2813256f5.16847117-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
"picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Luc Luycx"],
"Luc Luycx"
],
"description": "A globe, next to the face value, shows Europe in relation to Africa and Asia", "description": "A globe, next to the face value, shows Europe in relation to Africa and Asia",
"lettering": "5 EURO CENT LL", "lettering": "5 EURO CENT LL",
"lettering_scripts": [ "lettering_scripts": [
@@ -64,7 +60,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/finlande/61fde2821ebd14.28849922-original.jpg", "picture": "/photos/finlande/61fde2821ebd14.28849922-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/finlande/61fde2821ebd14.28849922-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/finlande/61fde2821ebd14.28849922-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
@@ -84,12 +80,7 @@
"maxYear": 2023 "maxYear": 2023
} }
], ],
"tags": [ "tags": ["Cat or feline", "Firearm or handheld weapon", "Map", "Globe"],
"Cat or feline",
"Firearm or handheld weapon",
"Map",
"Globe"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -112,7 +103,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Smooth", "description": "Smooth",
"picture": "https://en.numista.com/catalogue/photos/finlande/1253-original.jpg", "picture": "/photos/finlande/1253-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/finlande/1253-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/finlande/1253-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -122,5 +113,6 @@
"name": "Mint of Finland" "name": "Mint of Finland"
} }
], ],
"count": 2 "count": 2,
"color": "rgb(176,85,23)"
} }
+8 -15
View File
@@ -41,9 +41,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Laurent Jorio"],
"Laurent Jorio"
],
"description": "A modern adaptation of the Sower, initially designed by Oscar Roty, representing \"France, which stays true to itself, whilst integrating into Europe\", is encircled by the twelve stars of Europe", "description": "A modern adaptation of the Sower, initially designed by Oscar Roty, representing \"France, which stays true to itself, whilst integrating into Europe\", is encircled by the twelve stars of Europe",
"lettering": "RF 2001 L. JORIO d'ap. O. ROTY", "lettering": "RF 2001 L. JORIO d'ap. O. ROTY",
"lettering_scripts": [ "lettering_scripts": [
@@ -52,16 +50,14 @@
} }
], ],
"unabridged_legend": "République française\r\nLaurent Jorio d'après Oscar Roty", "unabridged_legend": "République française\r\nLaurent Jorio d'après Oscar Roty",
"picture": "https://en.numista.com/catalogue/photos/france/6289eb6f1395f8.91533745-original.jpg", "picture": "/photos/france/6289eb6f1395f8.91533745-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/6289eb6f1395f8.91533745-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/6289eb6f1395f8.91533745-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
"picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Luc Luycx"],
"Luc Luycx"
],
"description": "A map, next to the face value, symbolizes the gathering of the 15 nations of the European Union", "description": "A map, next to the face value, symbolizes the gathering of the 15 nations of the European Union",
"lettering": "10 EURO CENT LL", "lettering": "10 EURO CENT LL",
"lettering_scripts": [ "lettering_scripts": [
@@ -69,7 +65,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/france/6289eb6fa421c1.11082254-original.jpg", "picture": "/photos/france/6289eb6fa421c1.11082254-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/6289eb6fa421c1.11082254-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/6289eb6fa421c1.11082254-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
@@ -100,11 +96,7 @@
"maxYear": 2023 "maxYear": 2023
} }
], ],
"tags": [ "tags": ["Map", "Allegory", "Phrygian cap"],
"Map",
"Allegory",
"Phrygian cap"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -134,7 +126,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Indented", "description": "Indented",
"picture": "https://en.numista.com/catalogue/photos/france/8645-original.jpg", "picture": "/photos/france/8645-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/8645-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/8645-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -144,5 +136,6 @@
"name": "Monnaie de Paris" "name": "Monnaie de Paris"
} }
], ],
"count": 3 "count": 3,
"color": "rgb(140,120,60)"
} }
+8 -13
View File
@@ -42,9 +42,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Émile Rousseau"],
"Émile Rousseau"
],
"description": "A portrait in right profile of Charles de Gaulle is surrounded with the inscription \"RÉPUBLIQUE FRANÇAISE\" (French Republic)", "description": "A portrait in right profile of Charles de Gaulle is surrounded with the inscription \"RÉPUBLIQUE FRANÇAISE\" (French Republic)",
"lettering": "CHARLES DE GAULLE\r\nER\r\nRÉPUBLIQUE FRANÇAISE", "lettering": "CHARLES DE GAULLE\r\nER\r\nRÉPUBLIQUE FRANÇAISE",
"lettering_scripts": [ "lettering_scripts": [
@@ -52,15 +50,13 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/france/613499dd658130.74509920-original.jpg", "picture": "/photos/france/613499dd658130.74509920-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/613499dd658130.74509920-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/613499dd658130.74509920-180.jpg",
"picture_copyright": "CGB", "picture_copyright": "CGB",
"picture_copyright_url": "http://www.cgb.fr" "picture_copyright_url": "http://www.cgb.fr"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Émile Rousseau"],
"Émile Rousseau"
],
"description": "Denomination within six sided wreath, dates below", "description": "Denomination within six sided wreath, dates below",
"lettering": "LIBERTÉ · EGALITÉ · FRATERNITÉ\r\n1 F.\r\n1958·1988", "lettering": "LIBERTÉ · EGALITÉ · FRATERNITÉ\r\n1 F.\r\n1958·1988",
"lettering_scripts": [ "lettering_scripts": [
@@ -68,16 +64,14 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/france/613499de4ad8c1.02797384-original.jpg", "picture": "/photos/france/613499de4ad8c1.02797384-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/613499de4ad8c1.02797384-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/613499de4ad8c1.02797384-180.jpg",
"picture_copyright": "CGB", "picture_copyright": "CGB",
"picture_copyright_url": "http://www.cgb.fr" "picture_copyright_url": "http://www.cgb.fr"
}, },
"commemorated_topic": "30th Anniversary of the Fifth Republic", "commemorated_topic": "30th Anniversary of the Fifth Republic",
"comments": "<a href=\"https://en.numista.com/catalogue/images/5df3986502322.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5df3986502322.jpg\" alt=\"\" width=\"200\" height=\"150\" /></a>", "comments": "<a href=\"https://en.numista.com/catalogue/images/5df3986502322.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5df3986502322.jpg\" alt=\"\" width=\"200\" height=\"150\" /></a>",
"tags": [ "tags": ["Politician"],
"Politician"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -114,7 +108,7 @@
"orientation": "coin", "orientation": "coin",
"edge": { "edge": {
"description": "Reeded", "description": "Reeded",
"picture": "https://en.numista.com/catalogue/photos/france/6157694a45aa84.62297514-original.jpg", "picture": "/photos/france/6157694a45aa84.62297514-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/6157694a45aa84.62297514-180.jpg" "thumbnail": "https://en.numista.com/catalogue/photos/france/6157694a45aa84.62297514-180.jpg"
}, },
"mints": [ "mints": [
@@ -122,5 +116,6 @@
"id": "15", "id": "15",
"name": "Monnaie de Paris" "name": "Monnaie de Paris"
} }
] ],
"color": "rgb(200.00000000000009,154.99999999999991,54.999999999999915)"
} }
+6 -8
View File
@@ -46,7 +46,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/france/62c7ffaa1d19e0.57834511-original.jpg", "picture": "/photos/france/62c7ffaa1d19e0.57834511-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/62c7ffaa1d19e0.57834511-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/62c7ffaa1d19e0.57834511-180.jpg",
"picture_copyright": "PLH28" "picture_copyright": "PLH28"
}, },
@@ -58,7 +58,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/france/62c7ffab925d70.22265296-original.jpg", "picture": "/photos/france/62c7ffab925d70.22265296-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/62c7ffab925d70.22265296-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/62c7ffab925d70.22265296-180.jpg",
"picture_copyright": "PLH28" "picture_copyright": "PLH28"
}, },
@@ -286,18 +286,16 @@
"maxYear": 1969 "maxYear": 1969
} }
], ],
"tags": [ "tags": ["Shell", "Space"],
"Shell",
"Space"
],
"weight": 5, "weight": 5,
"size": 26, "size": 26,
"thickness": 1.5, "thickness": 1.5,
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Smooth", "description": "Smooth",
"picture": "https://en.numista.com/catalogue/photos/france/62c7fface50b13.17829022-original.jpg", "picture": "/photos/france/62c7fface50b13.17829022-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/62c7fface50b13.17829022-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/62c7fface50b13.17829022-180.jpg",
"picture_copyright": "PLH28" "picture_copyright": "PLH28"
} },
"color": "rgb(142,108,14)"
} }
+6 -9
View File
@@ -46,7 +46,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/france/62c801bb9f44d2.91016543-original.jpg", "picture": "/photos/france/62c801bb9f44d2.91016543-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/62c801bb9f44d2.91016543-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/62c801bb9f44d2.91016543-180.jpg",
"picture_copyright": "PLH28" "picture_copyright": "PLH28"
}, },
@@ -58,7 +58,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/france/62c801bceb85d5.57922851-original.jpg", "picture": "/photos/france/62c801bceb85d5.57922851-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/62c801bceb85d5.57922851-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/62c801bceb85d5.57922851-180.jpg",
"picture_copyright": "PLH28" "picture_copyright": "PLH28"
}, },
@@ -286,19 +286,16 @@
"maxYear": 1969 "maxYear": 1969
} }
], ],
"tags": [ "tags": ["Shell", "Science", "Space"],
"Shell",
"Science",
"Space"
],
"weight": 5, "weight": 5,
"size": 26, "size": 26,
"thickness": 1.5, "thickness": 1.5,
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Smooth", "description": "Smooth",
"picture": "https://en.numista.com/catalogue/photos/france/62c801be3a34f7.86937799-original.jpg", "picture": "/photos/france/62c801be3a34f7.86937799-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/62c801be3a34f7.86937799-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/62c801be3a34f7.86937799-180.jpg",
"picture_copyright": "PLH28" "picture_copyright": "PLH28"
} },
"color": "rgb(166,141,74)"
} }
+8 -14
View File
@@ -43,9 +43,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Henri Lagriffoul"],
"Henri Lagriffoul"
],
"description": "Marianne in left profile wearing the Phrygian cap of liberty, a national emblem of France, is surrounded with the lettering.", "description": "Marianne in left profile wearing the Phrygian cap of liberty, a national emblem of France, is surrounded with the lettering.",
"lettering": "REPUBLIQUE FRANÇAISE\r\nLAGRIFFOUL", "lettering": "REPUBLIQUE FRANÇAISE\r\nLAGRIFFOUL",
"lettering_scripts": [ "lettering_scripts": [
@@ -54,14 +52,12 @@
} }
], ],
"lettering_translation": "French Republic", "lettering_translation": "French Republic",
"picture": "https://en.numista.com/catalogue/photos/france/5f9dd206551cb6.99630125-original.jpg", "picture": "/photos/france/5f9dd206551cb6.99630125-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/5f9dd206551cb6.99630125-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/5f9dd206551cb6.99630125-180.jpg",
"picture_copyright": "nordboutik59" "picture_copyright": "nordboutik59"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Adrien Dieudonné"],
"Adrien Dieudonné"
],
"description": "The face value is surrounded with a wheat ear, an olive branch and the French motto.", "description": "The face value is surrounded with a wheat ear, an olive branch and the French motto.",
"lettering": "LIBERTE · EGALITE\r\n· FRATERNITE ·\r\n10\r\nCENTIMES\r\n1967\r\nA. DIEUDONNE", "lettering": "LIBERTE · EGALITE\r\n· FRATERNITE ·\r\n10\r\nCENTIMES\r\n1967\r\nA. DIEUDONNE",
"lettering_scripts": [ "lettering_scripts": [
@@ -70,7 +66,7 @@
} }
], ],
"lettering_translation": "Liberty Equality\r\nBrotherhood", "lettering_translation": "Liberty Equality\r\nBrotherhood",
"picture": "https://en.numista.com/catalogue/photos/france/5f9dd2069663b8.25893871-original.jpg", "picture": "/photos/france/5f9dd2069663b8.25893871-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/5f9dd2069663b8.25893871-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/5f9dd2069663b8.25893871-180.jpg",
"picture_copyright": "Jérémy Pureur" "picture_copyright": "Jérémy Pureur"
}, },
@@ -88,10 +84,7 @@
"maxYear": 1982 "maxYear": 1982
} }
], ],
"tags": [ "tags": ["Allegory", "Phrygian cap"],
"Allegory",
"Phrygian cap"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -128,7 +121,7 @@
"orientation": "coin", "orientation": "coin",
"edge": { "edge": {
"description": "Plain", "description": "Plain",
"picture": "https://en.numista.com/catalogue/photos/france/7491-original.jpg", "picture": "/photos/france/7491-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/7491-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/7491-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -141,5 +134,6 @@
"id": "14", "id": "14",
"name": "Paris" "name": "Paris"
} }
] ],
"color": "rgb(173,149,81)"
} }
+8 -15
View File
@@ -41,9 +41,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Laurent Jorio"],
"Laurent Jorio"
],
"description": "The Sower walking left surrounded by rays, lines, and the 12 stars of the European Union", "description": "The Sower walking left surrounded by rays, lines, and the 12 stars of the European Union",
"lettering": "RF 2011 L. JORIO d'ap. O. ROTY", "lettering": "RF 2011 L. JORIO d'ap. O. ROTY",
"lettering_scripts": [ "lettering_scripts": [
@@ -53,16 +51,14 @@
], ],
"unabridged_legend": "Republique Française 2011 Laurent Jorio d'après Oscar Roty", "unabridged_legend": "Republique Française 2011 Laurent Jorio d'après Oscar Roty",
"lettering_translation": "Republic of France 2011 Laurent Jorio after Oscar Roty", "lettering_translation": "Republic of France 2011 Laurent Jorio after Oscar Roty",
"picture": "https://en.numista.com/catalogue/photos/france/63bdb3eb043d78.19121517-original.jpg", "picture": "/photos/france/63bdb3eb043d78.19121517-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/63bdb3eb043d78.19121517-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/63bdb3eb043d78.19121517-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
"picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Luc Luycx"],
"Luc Luycx"
],
"description": "Geographic map of Europe with no internal borders with twelve vertical lines and stars to the left of denomination", "description": "Geographic map of Europe with no internal borders with twelve vertical lines and stars to the left of denomination",
"lettering": "10 EURO CENT LL", "lettering": "10 EURO CENT LL",
"lettering_scripts": [ "lettering_scripts": [
@@ -70,7 +66,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/france/6289f8530bc8a8.86021889-original.jpg", "picture": "/photos/france/6289f8530bc8a8.86021889-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/6289f8530bc8a8.86021889-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/6289f8530bc8a8.86021889-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
@@ -90,11 +86,7 @@
"maxYear": 2013 "maxYear": 2013
} }
], ],
"tags": [ "tags": ["Map", "Allegory", "Phrygian cap"],
"Map",
"Allegory",
"Phrygian cap"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -124,7 +116,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Indented", "description": "Indented",
"picture": "https://en.numista.com/catalogue/photos/france/8644-original.jpg", "picture": "/photos/france/8644-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/8644-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/8644-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -134,5 +126,6 @@
"name": "Monnaie de Paris" "name": "Monnaie de Paris"
} }
], ],
"count": 4 "count": 4,
"color": "rgb(244,212,68)"
} }
+8 -14
View File
@@ -42,9 +42,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Henri Lagriffoul"],
"Henri Lagriffoul"
],
"description": "Marianne in left profile wearing the Phrygian cap of liberty, a national emblem of France, is surrounded with the lettering: \"REPUBLIQUE FRANÇAISE\" (French Republic)", "description": "Marianne in left profile wearing the Phrygian cap of liberty, a national emblem of France, is surrounded with the lettering: \"REPUBLIQUE FRANÇAISE\" (French Republic)",
"lettering": "REPUBLIQUE FRANÇAISE\r\nLAGRIFFOUL", "lettering": "REPUBLIQUE FRANÇAISE\r\nLAGRIFFOUL",
"lettering_scripts": [ "lettering_scripts": [
@@ -53,14 +51,12 @@
} }
], ],
"lettering_translation": "French Republic", "lettering_translation": "French Republic",
"picture": "https://en.numista.com/catalogue/photos/france/5f9dd2c65f7916.51386836-original.jpg", "picture": "/photos/france/5f9dd2c65f7916.51386836-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/5f9dd2c65f7916.51386836-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/5f9dd2c65f7916.51386836-180.jpg",
"picture_copyright": "nordboutik59" "picture_copyright": "nordboutik59"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Adrien Dieudonné"],
"Adrien Dieudonné"
],
"description": "The face value is surrounded with a wheat ear, an olive branch and the French motto: \"LIBERTE - EGALITE - FRATERNITE\" (liberty, equality, fraternity)", "description": "The face value is surrounded with a wheat ear, an olive branch and the French motto: \"LIBERTE - EGALITE - FRATERNITE\" (liberty, equality, fraternity)",
"lettering": "A.DIEUDONNE\r\nLIBERTE·EGALITE\r\n·FRATERNITE·\r\n20\r\nCENTIMES\r\n1968", "lettering": "A.DIEUDONNE\r\nLIBERTE·EGALITE\r\n·FRATERNITE·\r\n20\r\nCENTIMES\r\n1968",
"lettering_scripts": [ "lettering_scripts": [
@@ -69,15 +65,12 @@
} }
], ],
"lettering_translation": "Liberty, Equality\r\nFraternity", "lettering_translation": "Liberty, Equality\r\nFraternity",
"picture": "https://en.numista.com/catalogue/photos/france/5f9dd2c6a02336.42871704-original.jpg", "picture": "/photos/france/5f9dd2c6a02336.42871704-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/5f9dd2c6a02336.42871704-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/5f9dd2c6a02336.42871704-180.jpg",
"picture_copyright": "Jérémy Pureur" "picture_copyright": "Jérémy Pureur"
}, },
"comments": "Different privy marks throughout mintages:<br />\r\nOwl 1962-74 Raymond Joly<br />\r\nDolphin 1975-94 Rousseau<br />\r\nBee 1994-2000 Pierre Rodier<br />\r\nHorseshoe &nbsp;2001 Gérard Buquoy<br />\r\n<br />\r\nVariante pour 1997<br />\r\n<a href=\"https://en.numista.com/catalogue/images/5e60ea2f7b024.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5e60ea2f7b024.jpg\" alt=\"\" width=\"200\" height=\"150\" /></a><br />\r\nVariante pour 2000<br />\r\n<a href=\"https://en.numista.com/catalogue/images/5e60f3ba166e2.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5e60f3ba166e2.jpg\" alt=\"\" width=\"200\" height=\"150\" /></a>", "comments": "Different privy marks throughout mintages:<br />\r\nOwl 1962-74 Raymond Joly<br />\r\nDolphin 1975-94 Rousseau<br />\r\nBee 1994-2000 Pierre Rodier<br />\r\nHorseshoe &nbsp;2001 Gérard Buquoy<br />\r\n<br />\r\nVariante pour 1997<br />\r\n<a href=\"https://en.numista.com/catalogue/images/5e60ea2f7b024.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5e60ea2f7b024.jpg\" alt=\"\" width=\"200\" height=\"150\" /></a><br />\r\nVariante pour 2000<br />\r\n<a href=\"https://en.numista.com/catalogue/images/5e60f3ba166e2.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5e60f3ba166e2.jpg\" alt=\"\" width=\"200\" height=\"150\" /></a>",
"tags": [ "tags": ["Allegory", "Phrygian cap"],
"Allegory",
"Phrygian cap"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -114,7 +107,7 @@
"orientation": "coin", "orientation": "coin",
"edge": { "edge": {
"description": "Smooth", "description": "Smooth",
"picture": "https://en.numista.com/catalogue/photos/france/7492-original.jpg", "picture": "/photos/france/7492-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/7492-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/7492-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -127,5 +120,6 @@
"id": "14", "id": "14",
"name": "Paris" "name": "Paris"
} }
] ],
"color": "rgb(208,196,132)"
} }
+8 -14
View File
@@ -45,9 +45,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Louis-Oscar Roty"],
"Louis-Oscar Roty"
],
"description": "The Sower, designed by Oscar Roty in 1900: a national emblem of the French Republic", "description": "The Sower, designed by Oscar Roty in 1900: a national emblem of the French Republic",
"lettering": "REPUBLIQUE FRANÇAISE\r\nO. Roty", "lettering": "REPUBLIQUE FRANÇAISE\r\nO. Roty",
"lettering_scripts": [ "lettering_scripts": [
@@ -56,14 +54,12 @@
} }
], ],
"lettering_translation": "French Republic", "lettering_translation": "French Republic",
"picture": "https://en.numista.com/catalogue/photos/france/5607-original.jpg", "picture": "/photos/france/5607-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/5607-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/5607-180.jpg",
"picture_copyright": "HOOK" "picture_copyright": "HOOK"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Louis-Oscar Roty"],
"Louis-Oscar Roty"
],
"description": "Underneath the face value, an olive branch is surrounded with the French motto: \"LIBERTE - EGALITE - FRATERNITE\" (liberty, equality, fraternity)", "description": "Underneath the face value, an olive branch is surrounded with the French motto: \"LIBERTE - EGALITE - FRATERNITE\" (liberty, equality, fraternity)",
"lettering": "LIBERTE·EGALITE·FRATERNITE\r\n1/2\r\nFRANC\r\n2000", "lettering": "LIBERTE·EGALITE·FRATERNITE\r\n1/2\r\nFRANC\r\n2000",
"lettering_scripts": [ "lettering_scripts": [
@@ -72,7 +68,7 @@
} }
], ],
"lettering_translation": "Liberty, Equality, Fraternity", "lettering_translation": "Liberty, Equality, Fraternity",
"picture": "https://en.numista.com/catalogue/photos/france/5608-original.jpg", "picture": "/photos/france/5608-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/5608-180.jpg" "thumbnail": "https://en.numista.com/catalogue/photos/france/5608-180.jpg"
}, },
"comments": "Different privy marks throughout mintages:<br />\r\nOwl 1958-74 Raymond Joly<br />\r\nDolphin 1974-94 Rousseau<br />\r\nBee 1994- Pierre Rodier<br />\r\nHorseshoe 2000-2002 Gérard Buquoy <br />\r\n<br />\r\n&nbsp;The 1993 &#039;No mark&#039; has missing privy marks both sides of denomination ... <br />\r\n<a href=\"https://en.numista.com/catalogue/images/5b61f2641723e.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5b61f2641723e.jpg\" alt=\"\" width=\"200\" height=\"150\" /></a><br />\r\n<br />\r\n<a href=\"https://en.numista.com/catalogue/images/5cb5b5472d891.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5cb5b5472d891.jpg\" alt=\"\" width=\"200\" height=\"150\" /></a><br />\r\n<br />\r\n<a href=\"https://en.numista.com/catalogue/images/5df37ad95b292.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5df37ad95b292.jpg\" alt=\"\" width=\"200\" height=\"150\" /></a>", "comments": "Different privy marks throughout mintages:<br />\r\nOwl 1958-74 Raymond Joly<br />\r\nDolphin 1974-94 Rousseau<br />\r\nBee 1994- Pierre Rodier<br />\r\nHorseshoe 2000-2002 Gérard Buquoy <br />\r\n<br />\r\n&nbsp;The 1993 &#039;No mark&#039; has missing privy marks both sides of denomination ... <br />\r\n<a href=\"https://en.numista.com/catalogue/images/5b61f2641723e.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5b61f2641723e.jpg\" alt=\"\" width=\"200\" height=\"150\" /></a><br />\r\n<br />\r\n<a href=\"https://en.numista.com/catalogue/images/5cb5b5472d891.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5cb5b5472d891.jpg\" alt=\"\" width=\"200\" height=\"150\" /></a><br />\r\n<br />\r\n<a href=\"https://en.numista.com/catalogue/images/5df37ad95b292.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5df37ad95b292.jpg\" alt=\"\" width=\"200\" height=\"150\" /></a>",
@@ -89,10 +85,7 @@
"maxYear": 2001 "maxYear": 2001
} }
], ],
"tags": [ "tags": ["Allegory", "Phrygian cap"],
"Allegory",
"Phrygian cap"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -129,7 +122,7 @@
"orientation": "coin", "orientation": "coin",
"edge": { "edge": {
"description": "Reeded", "description": "Reeded",
"picture": "https://en.numista.com/catalogue/photos/france/7493-original.jpg", "picture": "/photos/france/7493-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/7493-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/7493-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -142,5 +135,6 @@
"id": "14", "id": "14",
"name": "Paris" "name": "Paris"
} }
] ],
"color": "rgb(60,92,156)"
} }
+8 -15
View File
@@ -41,9 +41,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Laurent Jorio"],
"Laurent Jorio"
],
"description": "Line image of \"The Sower\", a long-standing symbol of France surrounded by the twelve stars of the European Union.", "description": "Line image of \"The Sower\", a long-standing symbol of France surrounded by the twelve stars of the European Union.",
"lettering": "L. JORIO d'ap. O. ROTY\r\n2011 RF", "lettering": "L. JORIO d'ap. O. ROTY\r\n2011 RF",
"lettering_scripts": [ "lettering_scripts": [
@@ -52,16 +50,14 @@
} }
], ],
"unabridged_legend": "République française", "unabridged_legend": "République française",
"picture": "https://en.numista.com/catalogue/photos/france/3410-original.jpg", "picture": "/photos/france/3410-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/3410-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/3410-180.jpg",
"picture_copyright": "Florino28", "picture_copyright": "Florino28",
"picture_license_name": "CC BY-NC-SA", "picture_license_name": "CC BY-NC-SA",
"picture_license_url": "https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Luc Luycx"],
"Luc Luycx"
],
"description": "A map, next to the face value, symbolizes the gathering of the nations of the European Union", "description": "A map, next to the face value, symbolizes the gathering of the nations of the European Union",
"lettering": "20 \r\nLL\r\nEURO \r\nCENT", "lettering": "20 \r\nLL\r\nEURO \r\nCENT",
"lettering_scripts": [ "lettering_scripts": [
@@ -69,7 +65,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/france/3411-original.jpg", "picture": "/photos/france/3411-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/3411-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/3411-180.jpg",
"picture_copyright": "Florino28", "picture_copyright": "Florino28",
"picture_license_name": "CC BY-NC-SA", "picture_license_name": "CC BY-NC-SA",
@@ -100,11 +96,7 @@
"maxYear": 2013 "maxYear": 2013
} }
], ],
"tags": [ "tags": ["Map", "Allegory", "Phrygian cap"],
"Map",
"Allegory",
"Phrygian cap"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -134,7 +126,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Smooth with seven indentations (\"Spanish flower\")", "description": "Smooth with seven indentations (\"Spanish flower\")",
"picture": "https://en.numista.com/catalogue/photos/france/8646-original.jpg", "picture": "/photos/france/8646-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/8646-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/8646-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -144,5 +136,6 @@
"name": "Monnaie de Paris" "name": "Monnaie de Paris"
} }
], ],
"count": 1 "count": 1,
"color": "rgb(188,164,84)"
} }
+8 -13
View File
@@ -42,9 +42,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Atelier de gravure d&#039;après Augustin Dupré"],
"Atelier de gravure d&#039;après Augustin Dupré"
],
"description": "The denomination within a wreath and the date below.", "description": "The denomination within a wreath and the date below.",
"lettering": "REPUBLIQUE FRANÇAISE\r\n50\r\nFRANCS \r\n⦁ 1975 ⦁", "lettering": "REPUBLIQUE FRANÇAISE\r\n50\r\nFRANCS \r\n⦁ 1975 ⦁",
"lettering_scripts": [ "lettering_scripts": [
@@ -53,16 +51,14 @@
} }
], ],
"lettering_translation": "French Republic", "lettering_translation": "French Republic",
"picture": "https://en.numista.com/catalogue/photos/france/8653-original.jpg", "picture": "/photos/france/8653-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/8653-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/8653-180.jpg",
"picture_copyright": "smy77", "picture_copyright": "smy77",
"picture_license_name": "CC BY", "picture_license_name": "CC BY",
"picture_license_url": "https://creativecommons.org/licenses/by/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by/4.0/deed.en"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Atelier de gravure d&#039;après Augustin Dupré"],
"Atelier de gravure d&#039;après Augustin Dupré"
],
"description": "The Liberty and the Equality, two ideologies which are not often compatible, reconciled with Fraternity by Hercules; the French motto above.", "description": "The Liberty and the Equality, two ideologies which are not often compatible, reconciled with Fraternity by Hercules; the French motto above.",
"lettering": "LIBERTÉ ÉGALITÉ FRATERNITÉ\r\n⦁ Dupré ⦁", "lettering": "LIBERTÉ ÉGALITÉ FRATERNITÉ\r\n⦁ Dupré ⦁",
"lettering_scripts": [ "lettering_scripts": [
@@ -70,7 +66,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/france/8652-original.jpg", "picture": "/photos/france/8652-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/8652-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/8652-180.jpg",
"picture_copyright": "smy77", "picture_copyright": "smy77",
"picture_license_name": "CC BY", "picture_license_name": "CC BY",
@@ -112,9 +108,7 @@
"maxYear": 1980 "maxYear": 1980
} }
], ],
"tags": [ "tags": ["Wreath"],
"Wreath"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -158,7 +152,7 @@
"orientation": "coin", "orientation": "coin",
"edge": { "edge": {
"description": "Designs in relief", "description": "Designs in relief",
"picture": "https://en.numista.com/catalogue/photos/france/8654-original.jpg", "picture": "/photos/france/8654-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/8654-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/8654-180.jpg",
"picture_copyright": "smy77", "picture_copyright": "smy77",
"picture_license_name": "CC BY", "picture_license_name": "CC BY",
@@ -169,5 +163,6 @@
"id": "15", "id": "15",
"name": "Monnaie de Paris" "name": "Monnaie de Paris"
} }
] ],
"color": "rgb(188,140,60)"
} }
+8 -13
View File
@@ -42,9 +42,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Louis-Oscar Roty"],
"Louis-Oscar Roty"
],
"description": "The Sower, designed by Oscar Roty in 1900, a national emblem of the French Republic", "description": "The Sower, designed by Oscar Roty in 1900, a national emblem of the French Republic",
"lettering": "REPUBLIQUE FRANÇAISE\r\nO. Roty", "lettering": "REPUBLIQUE FRANÇAISE\r\nO. Roty",
"lettering_scripts": [ "lettering_scripts": [
@@ -53,14 +51,12 @@
} }
], ],
"lettering_translation": "French Republic.", "lettering_translation": "French Republic.",
"picture": "https://en.numista.com/catalogue/photos/france/5f9dd414800e77.93186810-original.jpg", "picture": "/photos/france/5f9dd414800e77.93186810-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/5f9dd414800e77.93186810-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/5f9dd414800e77.93186810-180.jpg",
"picture_copyright": "nordboutik59" "picture_copyright": "nordboutik59"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Louis-Oscar Roty"],
"Louis-Oscar Roty"
],
"description": "Olive branches, oak branches and wheat ears, underneath the face value, are surrounded with the French motto.", "description": "Olive branches, oak branches and wheat ears, underneath the face value, are surrounded with the French motto.",
"lettering": "LIBERTE•EGALITE•FRATERNITE\r\n5\r\nFRANCS\r\n1970", "lettering": "LIBERTE•EGALITE•FRATERNITE\r\n5\r\nFRANCS\r\n1970",
"lettering_scripts": [ "lettering_scripts": [
@@ -69,7 +65,7 @@
} }
], ],
"lettering_translation": "LIBERTY • EQUALITY • FRATERNITY", "lettering_translation": "LIBERTY • EQUALITY • FRATERNITY",
"picture": "https://en.numista.com/catalogue/photos/france/5f9dd414d40668.27338105-original.jpg", "picture": "/photos/france/5f9dd414d40668.27338105-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/5f9dd414d40668.27338105-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/5f9dd414d40668.27338105-180.jpg",
"picture_copyright": "Jérémy Pureur" "picture_copyright": "Jérémy Pureur"
}, },
@@ -120,9 +116,7 @@
"maxYear": 2001 "maxYear": 2001
} }
], ],
"tags": [ "tags": ["Phrygian cap"],
"Phrygian cap"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -159,7 +153,7 @@
"orientation": "coin", "orientation": "coin",
"edge": { "edge": {
"description": "Reeded", "description": "Reeded",
"picture": "https://en.numista.com/catalogue/photos/france/7498-original.jpg", "picture": "/photos/france/7498-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/7498-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/7498-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -172,5 +166,6 @@
"id": "14", "id": "14",
"name": "Paris" "name": "Paris"
} }
] ],
"color": "rgb(80.52631578947368,107.36842105263155,174.47368421052633)"
} }
+8 -14
View File
@@ -43,9 +43,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Jean Luc Maréchal"],
"Jean Luc Maréchal"
],
"description": "A representation of the Génie de la Liberté (the Spirit of Freedom, approximately), a sculpture located at the top of the \"July Column\" in Paris, is flanked with the letters R and F, the initials of the French Republic. The rim constitutes a striated geometrical pattern.", "description": "A representation of the Génie de la Liberté (the Spirit of Freedom, approximately), a sculpture located at the top of the \"July Column\" in Paris, is flanked with the letters R and F, the initials of the French Republic. The rim constitutes a striated geometrical pattern.",
"lettering": "R F", "lettering": "R F",
"lettering_scripts": [ "lettering_scripts": [
@@ -55,14 +53,12 @@
], ],
"unabridged_legend": "République Française", "unabridged_legend": "République Française",
"lettering_translation": "French Republic", "lettering_translation": "French Republic",
"picture": "https://en.numista.com/catalogue/photos/france/5f9dd4986e4891.47003450-original.jpg", "picture": "/photos/france/5f9dd4986e4891.47003450-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/5f9dd4986e4891.47003450-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/5f9dd4986e4891.47003450-180.jpg",
"picture_copyright": "nordboutik59" "picture_copyright": "nordboutik59"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Jean Luc Maréchal"],
"Jean Luc Maréchal"
],
"description": "The face value, crossed out with wide stripes, is surrounded by the French motto: \"LIBERTÉ ÉGALITÉ FRATERNITÉ\" (liberty, equality, fraternity)", "description": "The face value, crossed out with wide stripes, is surrounded by the French motto: \"LIBERTÉ ÉGALITÉ FRATERNITÉ\" (liberty, equality, fraternity)",
"lettering": "LIBERTÉ EGALITÉ\r\n10F\r\n1989\r\nFRATERNITÉ", "lettering": "LIBERTÉ EGALITÉ\r\n10F\r\n1989\r\nFRATERNITÉ",
"lettering_scripts": [ "lettering_scripts": [
@@ -71,7 +67,7 @@
} }
], ],
"lettering_translation": "Liberty Equality\r\nBrotherhood", "lettering_translation": "Liberty Equality\r\nBrotherhood",
"picture": "https://en.numista.com/catalogue/photos/france/5f9dd498b4d939.41396241-original.jpg", "picture": "/photos/france/5f9dd498b4d939.41396241-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/5f9dd498b4d939.41396241-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/5f9dd498b4d939.41396241-180.jpg",
"picture_copyright": "Jérémy Pureur" "picture_copyright": "Jérémy Pureur"
}, },
@@ -89,10 +85,7 @@
"maxYear": 2001 "maxYear": 2001
} }
], ],
"tags": [ "tags": ["Sculpture", "Phrygian cap"],
"Sculpture",
"Phrygian cap"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -129,7 +122,7 @@
"orientation": "coin", "orientation": "coin",
"edge": { "edge": {
"description": "5 groups of reeds", "description": "5 groups of reeds",
"picture": "https://en.numista.com/catalogue/photos/france/7499-original.jpg", "picture": "/photos/france/7499-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/7499-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/7499-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -138,5 +131,6 @@
"id": "15", "id": "15",
"name": "Monnaie de Paris" "name": "Monnaie de Paris"
} }
] ],
"color": "rgb(182,140,66)"
} }
+8 -13
View File
@@ -41,9 +41,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Fabienne Courtiade"],
"Fabienne Courtiade"
],
"description": "A young, feminine Marianne with determined features that embody the desire for a sound and lasting Europe. Around twelve five-pointed stars representing the European Union.", "description": "A young, feminine Marianne with determined features that embody the desire for a sound and lasting Europe. Around twelve five-pointed stars representing the European Union.",
"lettering": "RF\r\n2006\r\nF. COURTIADE", "lettering": "RF\r\n2006\r\nF. COURTIADE",
"lettering_scripts": [ "lettering_scripts": [
@@ -51,16 +49,14 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/france/3926-original.jpg", "picture": "/photos/france/3926-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/3926-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/3926-180.jpg",
"picture_copyright": "Florino28", "picture_copyright": "Florino28",
"picture_license_name": "CC BY-NC-SA", "picture_license_name": "CC BY-NC-SA",
"picture_license_url": "https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Luc Luycx"],
"Luc Luycx"
],
"description": "A globe, next to the face value, shows Europe in relation to Africa and Asia.", "description": "A globe, next to the face value, shows Europe in relation to Africa and Asia.",
"lettering": "1 \r\nEURO\r\nCENT\r\nLL", "lettering": "1 \r\nEURO\r\nCENT\r\nLL",
"lettering_scripts": [ "lettering_scripts": [
@@ -68,7 +64,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/france/3928-original.jpg", "picture": "/photos/france/3928-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/3928-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/3928-180.jpg",
"picture_copyright": "Florino28", "picture_copyright": "Florino28",
"picture_license_name": "CC BY-NC-SA", "picture_license_name": "CC BY-NC-SA",
@@ -88,9 +84,7 @@
"maxYear": 2013 "maxYear": 2013
} }
], ],
"tags": [ "tags": ["Map"],
"Map"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -120,7 +114,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Smooth", "description": "Smooth",
"picture": "https://en.numista.com/catalogue/photos/france/7449-original.jpg", "picture": "/photos/france/7449-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/7449-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/7449-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -130,5 +124,6 @@
"name": "Monnaie de Paris" "name": "Monnaie de Paris"
} }
], ],
"count": 50 "count": 50,
"color": "rgb(204,132,52)"
} }
+8 -13
View File
@@ -41,9 +41,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Fabienne Courtiade"],
"Fabienne Courtiade"
],
"description": "A young, feminine Marianne with determined features that embody the desire for a sound and lasting Europe. Around twelve five-pointed stars representing the European Union.", "description": "A young, feminine Marianne with determined features that embody the desire for a sound and lasting Europe. Around twelve five-pointed stars representing the European Union.",
"lettering": "RF\r\n2005\r\nF. COURTIADE", "lettering": "RF\r\n2005\r\nF. COURTIADE",
"lettering_scripts": [ "lettering_scripts": [
@@ -52,16 +50,14 @@
} }
], ],
"unabridged_legend": "République française", "unabridged_legend": "République française",
"picture": "https://en.numista.com/catalogue/photos/france/61fde3008fb875.29810810-original.jpg", "picture": "/photos/france/61fde3008fb875.29810810-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/61fde3008fb875.29810810-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/61fde3008fb875.29810810-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
"picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Luc Luycx"],
"Luc Luycx"
],
"description": "A globe, next to the face value, shows Europe in relation to Africa and Asia.", "description": "A globe, next to the face value, shows Europe in relation to Africa and Asia.",
"lettering": "5\r\nEURO\r\nCENT\r\nLL", "lettering": "5\r\nEURO\r\nCENT\r\nLL",
"lettering_scripts": [ "lettering_scripts": [
@@ -69,7 +65,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/france/61fde301a02a94.57833549-original.jpg", "picture": "/photos/france/61fde301a02a94.57833549-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/61fde301a02a94.57833549-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/61fde301a02a94.57833549-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
@@ -89,9 +85,7 @@
"maxYear": 2013 "maxYear": 2013
} }
], ],
"tags": [ "tags": ["Map"],
"Map"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -121,7 +115,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Smooth", "description": "Smooth",
"picture": "https://en.numista.com/catalogue/photos/france/7450-original.jpg", "picture": "/photos/france/7450-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/france/7450-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/france/7450-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -131,5 +125,6 @@
"name": "Monnaie de Paris" "name": "Monnaie de Paris"
} }
], ],
"count": 18 "count": 18,
"color": "rgb(164,100,52)"
} }
+8 -13
View File
@@ -37,9 +37,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Rolf Lederbogen"],
"Rolf Lederbogen"
],
"description": "An oak twig, symbolizing stability, is surrounded with the twelve stars of Europe.", "description": "An oak twig, symbolizing stability, is surrounded with the twelve stars of Europe.",
"lettering": "D 2005", "lettering": "D 2005",
"lettering_scripts": [ "lettering_scripts": [
@@ -47,16 +45,14 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/allemagne/1383-original.jpg", "picture": "/photos/allemagne/1383-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/allemagne/1383-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/allemagne/1383-180.jpg",
"picture_copyright": "Florino28", "picture_copyright": "Florino28",
"picture_license_name": "CC BY-NC-SA", "picture_license_name": "CC BY-NC-SA",
"picture_license_url": "https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Luc Luycx"],
"Luc Luycx"
],
"description": "A globe, next to the face value, shows Europe in relation to Africa and Asia, engraver's initials to the right.", "description": "A globe, next to the face value, shows Europe in relation to Africa and Asia, engraver's initials to the right.",
"lettering": "1 EURO \r\nCENT \r\nLL", "lettering": "1 EURO \r\nCENT \r\nLL",
"lettering_scripts": [ "lettering_scripts": [
@@ -64,16 +60,14 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/allemagne/1384-original.jpg", "picture": "/photos/allemagne/1384-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/allemagne/1384-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/allemagne/1384-180.jpg",
"picture_copyright": "Florino28", "picture_copyright": "Florino28",
"picture_license_name": "CC BY-NC-SA", "picture_license_name": "CC BY-NC-SA",
"picture_license_url": "https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en"
}, },
"comments": "The 2002 coins have a KMB Variant.<br />\r\nThe KMB has a smaller (by about 10%) reverse design.<br />\r\nKMB = Kleines Münz Bild &nbsp;[petite pièce de monnaie / small coin]<br />\r\n<br />\r\n<img src=\"https://en.numista.com/catalogue/images/5711410341194.jpg\" alt=\"\" width=\"800\" height=\"515\" /><br />\r\n<br />\r\n1, 2 &amp; 5 cents with large and small oak leaves<br />\r\n<a href=\"https://en.numista.com/catalogue/images/63199dc258539.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/63199dc258539.jpg\" alt=\"\" width=\"200\" height=\"150\" /></a><br />\r\n<br />\r\n<a href=\"https://en.numista.com/catalogue/images/5ce1d9723cb48.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5ce1d9723cb48.jpg\" alt=\"\" width=\"200\" height=\"118\" /></a><br />\r\n© Ulmo<br />\r\n<br />\r\nOfficial Coincard of the Federal Ministry of Finance<br />\r\n2013<br />\r\n<a href=\"https://en.numista.com/catalogue/images/58664e573f2c8.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/58664e573f2c8.jpg\" alt=\"\" width=\"200\" height=\"130\" /></a><br />\r\n2016<br />\r\n<a href=\"https://en.numista.com/catalogue/images/58664e74c4227.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/58664e74c4227.jpg\" alt=\"\" width=\"200\" height=\"133\" /></a>", "comments": "The 2002 coins have a KMB Variant.<br />\r\nThe KMB has a smaller (by about 10%) reverse design.<br />\r\nKMB = Kleines Münz Bild &nbsp;[petite pièce de monnaie / small coin]<br />\r\n<br />\r\n<img src=\"https://en.numista.com/catalogue/images/5711410341194.jpg\" alt=\"\" width=\"800\" height=\"515\" /><br />\r\n<br />\r\n1, 2 &amp; 5 cents with large and small oak leaves<br />\r\n<a href=\"https://en.numista.com/catalogue/images/63199dc258539.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/63199dc258539.jpg\" alt=\"\" width=\"200\" height=\"150\" /></a><br />\r\n<br />\r\n<a href=\"https://en.numista.com/catalogue/images/5ce1d9723cb48.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/5ce1d9723cb48.jpg\" alt=\"\" width=\"200\" height=\"118\" /></a><br />\r\n© Ulmo<br />\r\n<br />\r\nOfficial Coincard of the Federal Ministry of Finance<br />\r\n2013<br />\r\n<a href=\"https://en.numista.com/catalogue/images/58664e573f2c8.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/58664e573f2c8.jpg\" alt=\"\" width=\"200\" height=\"130\" /></a><br />\r\n2016<br />\r\n<a href=\"https://en.numista.com/catalogue/images/58664e74c4227.jpg\"><img src=\"https://en.numista.com/catalogue/images/miniatures/58664e74c4227.jpg\" alt=\"\" width=\"200\" height=\"133\" /></a>",
"tags": [ "tags": ["Map"],
"Map"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -103,7 +97,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Smooth", "description": "Smooth",
"picture": "https://en.numista.com/catalogue/photos/allemagne/2009-original.jpg", "picture": "/photos/allemagne/2009-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/allemagne/2009-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/allemagne/2009-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -129,5 +123,6 @@
"name": "Hamburgische Münze" "name": "Hamburgische Münze"
} }
], ],
"count": 15 "count": 15,
"color": "rgb(222,148,107)"
} }
+7 -10
View File
@@ -37,9 +37,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Rolf Lederbogen"],
"Rolf Lederbogen"
],
"description": "An oak twig, symbolizing stability, is surrounded with the twelve stars of Europe.", "description": "An oak twig, symbolizing stability, is surrounded with the twelve stars of Europe.",
"lettering": "A 2006", "lettering": "A 2006",
"lettering_scripts": [ "lettering_scripts": [
@@ -47,16 +45,14 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/allemagne/61fde61bf27925.91167153-original.jpg", "picture": "/photos/allemagne/61fde61bf27925.91167153-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/allemagne/61fde61bf27925.91167153-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/allemagne/61fde61bf27925.91167153-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
"picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Luc Luycx"],
"Luc Luycx"
],
"description": "A globe, next to the face value, shows Europe in relation to Africa and Asia", "description": "A globe, next to the face value, shows Europe in relation to Africa and Asia",
"lettering": "5 EURO CENT LL", "lettering": "5 EURO CENT LL",
"lettering_scripts": [ "lettering_scripts": [
@@ -64,7 +60,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/allemagne/61fde61ce40330.51779213-original.jpg", "picture": "/photos/allemagne/61fde61ce40330.51779213-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/allemagne/61fde61ce40330.51779213-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/allemagne/61fde61ce40330.51779213-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
@@ -100,7 +96,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Smooth", "description": "Smooth",
"picture": "https://en.numista.com/catalogue/photos/allemagne/2010-original.jpg", "picture": "/photos/allemagne/2010-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/allemagne/2010-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/allemagne/2010-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -126,5 +122,6 @@
"name": "Hamburgische Münze" "name": "Hamburgische Münze"
} }
], ],
"count": 7 "count": 7,
"color": "rgb(199,119,60)"
} }
+8 -14
View File
@@ -37,9 +37,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Reinhart Heinsdorff"],
"Reinhart Heinsdorff"
],
"description": "The Brandenburg Gate, symbol of the division of Germany and its subsequent unification, is surrounded with the twelve stars of Europe.", "description": "The Brandenburg Gate, symbol of the division of Germany and its subsequent unification, is surrounded with the twelve stars of Europe.",
"lettering": "2002 F", "lettering": "2002 F",
"lettering_scripts": [ "lettering_scripts": [
@@ -47,15 +45,13 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/allemagne/2191-original.jpg", "picture": "/photos/allemagne/2191-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/allemagne/2191-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/allemagne/2191-180.jpg",
"picture_copyright": "Ma collection de monnaies", "picture_copyright": "Ma collection de monnaies",
"picture_copyright_url": "https://monnaiesetvarietes.numista.com/" "picture_copyright_url": "https://monnaiesetvarietes.numista.com/"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Luc Luycx"],
"Luc Luycx"
],
"description": "A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union", "description": "A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union",
"lettering": "10 EURO CENT LL", "lettering": "10 EURO CENT LL",
"lettering_scripts": [ "lettering_scripts": [
@@ -63,7 +59,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/allemagne/2192-original.jpg", "picture": "/photos/allemagne/2192-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/allemagne/2192-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/allemagne/2192-180.jpg",
"picture_copyright": "Ma collection de monnaies", "picture_copyright": "Ma collection de monnaies",
"picture_copyright_url": "https://monnaiesetvarietes.numista.com/" "picture_copyright_url": "https://monnaiesetvarietes.numista.com/"
@@ -82,10 +78,7 @@
"maxYear": 2023 "maxYear": 2023
} }
], ],
"tags": [ "tags": ["Other building", "Map"],
"Other building",
"Map"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -115,7 +108,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Indented", "description": "Indented",
"picture": "https://en.numista.com/catalogue/photos/allemagne/2235-original.jpg", "picture": "/photos/allemagne/2235-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/allemagne/2235-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/allemagne/2235-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -141,5 +134,6 @@
"name": "Hamburgische Münze" "name": "Hamburgische Münze"
} }
], ],
"count": 3 "count": 3,
"color": "rgb(204,160,73)"
} }
+7 -10
View File
@@ -37,9 +37,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Reinhart Heinsdorff"],
"Reinhart Heinsdorff"
],
"description": "The Brandenburg Gate, the symbol of the division of Germany and its subsequent unification, with the 12 stars of Europe around the rim", "description": "The Brandenburg Gate, the symbol of the division of Germany and its subsequent unification, with the 12 stars of Europe around the rim",
"lettering": "2002\r\nJ", "lettering": "2002\r\nJ",
"lettering_scripts": [ "lettering_scripts": [
@@ -47,14 +45,12 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/allemagne/1894-original.jpg", "picture": "/photos/allemagne/1894-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/allemagne/1894-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/allemagne/1894-180.jpg",
"picture_copyright": "nalaberong" "picture_copyright": "nalaberong"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Luc Luycx"],
"Luc Luycx"
],
"description": "A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union", "description": "A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union",
"lettering": "20\r\nLL\r\nEURO\r\nCENT", "lettering": "20\r\nLL\r\nEURO\r\nCENT",
"lettering_scripts": [ "lettering_scripts": [
@@ -62,7 +58,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/allemagne/1895-original.jpg", "picture": "/photos/allemagne/1895-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/allemagne/1895-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/allemagne/1895-180.jpg",
"picture_copyright": "nalaberong" "picture_copyright": "nalaberong"
}, },
@@ -109,7 +105,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Smooth with seven indentations (\"Spanish flower\")", "description": "Smooth with seven indentations (\"Spanish flower\")",
"picture": "https://en.numista.com/catalogue/photos/allemagne/2237-original.jpg", "picture": "/photos/allemagne/2237-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/allemagne/2237-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/allemagne/2237-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -135,5 +131,6 @@
"name": "Hamburgische Münze" "name": "Hamburgische Münze"
} }
], ],
"count": 1 "count": 1,
"color": "rgb(164,126,74)"
} }
+7 -10
View File
@@ -37,9 +37,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Reinhart Heinsdorff"],
"Reinhart Heinsdorff"
],
"description": "The Brandenburg Gate, a symbol of the division of Germany and its subsequent unification surrounded with the twelve stars of Europe", "description": "The Brandenburg Gate, a symbol of the division of Germany and its subsequent unification surrounded with the twelve stars of Europe",
"lettering": "2007 J", "lettering": "2007 J",
"lettering_scripts": [ "lettering_scripts": [
@@ -47,14 +45,12 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/allemagne/2279-original.jpg", "picture": "/photos/allemagne/2279-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/allemagne/2279-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/allemagne/2279-180.jpg",
"picture_copyright": "Beehive" "picture_copyright": "Beehive"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Luc Luycx"],
"Luc Luycx"
],
"description": "A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union", "description": "A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union",
"lettering": "20 EURO CENT LL", "lettering": "20 EURO CENT LL",
"lettering_scripts": [ "lettering_scripts": [
@@ -62,7 +58,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/allemagne/2280-original.jpg", "picture": "/photos/allemagne/2280-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/allemagne/2280-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/allemagne/2280-180.jpg",
"picture_copyright": "Beehive" "picture_copyright": "Beehive"
}, },
@@ -109,7 +105,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Smooth with seven indentations (\"Spanish flower\")", "description": "Smooth with seven indentations (\"Spanish flower\")",
"picture": "https://en.numista.com/catalogue/photos/allemagne/2236-original.jpg", "picture": "/photos/allemagne/2236-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/allemagne/2236-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/allemagne/2236-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -135,5 +131,6 @@
"name": "Hamburgische Münze" "name": "Hamburgische Münze"
} }
], ],
"count": 1 "count": 1,
"color": "rgb(170,162,79)"
} }
+8 -13
View File
@@ -38,9 +38,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Reinhart Heinsdorff"],
"Reinhart Heinsdorff"
],
"description": "Portrait of Konrad Adenauer (1876-1967), the first German chancellor from 1949 to 1963 and a key player in rebuilding the France-Germany relationship and creating the European community with the dates representing the 20th Anniversary of the Constitution of the Federal Republic of Germany", "description": "Portrait of Konrad Adenauer (1876-1967), the first German chancellor from 1949 to 1963 and a key player in rebuilding the France-Germany relationship and creating the European community with the dates representing the 20th Anniversary of the Constitution of the Federal Republic of Germany",
"lettering": "·BUNDESREPUBLIK DEUTSCHLAND·\r\n1949 1969", "lettering": "·BUNDESREPUBLIK DEUTSCHLAND·\r\n1949 1969",
"lettering_scripts": [ "lettering_scripts": [
@@ -49,14 +47,12 @@
} }
], ],
"lettering_translation": "Federal Republic of Germany\r\n1949 1969", "lettering_translation": "Federal Republic of Germany\r\n1949 1969",
"picture": "https://en.numista.com/catalogue/photos/allemagne/1964-original.jpg", "picture": "/photos/allemagne/1964-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/allemagne/1964-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/allemagne/1964-180.jpg",
"picture_copyright": "Ulmo" "picture_copyright": "Ulmo"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Reinhart Heinsdorff"],
"Reinhart Heinsdorff"
],
"description": "An eagle facing left, emblem of Germany and the mintmark below the left claw", "description": "An eagle facing left, emblem of Germany and the mintmark below the left claw",
"lettering": "BUNDESREPUBLIK DEUTSCHLAND\r\n1978\r\nG\r\n2 DEUTSCHE MARK", "lettering": "BUNDESREPUBLIK DEUTSCHLAND\r\n1978\r\nG\r\n2 DEUTSCHE MARK",
"lettering_scripts": [ "lettering_scripts": [
@@ -65,7 +61,7 @@
} }
], ],
"lettering_translation": "Federal Republic of Germany\r\n1978\r\nG\r\n2 Deutsche Mark", "lettering_translation": "Federal Republic of Germany\r\n1978\r\nG\r\n2 Deutsche Mark",
"picture": "https://en.numista.com/catalogue/photos/allemagne/1963-original.jpg", "picture": "/photos/allemagne/1963-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/allemagne/1963-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/allemagne/1963-180.jpg",
"picture_copyright": "Ulmo" "picture_copyright": "Ulmo"
}, },
@@ -138,9 +134,7 @@
"maxYear": 2001 "maxYear": 2001
} }
], ],
"tags": [ "tags": ["Politician"],
"Politician"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -172,7 +166,7 @@
"description": "Smooth with the inscription of the German motto\r\n\r\nThere are two variants for the edge text:\r\n1. text readable with obverse face up\r\n2. text readable upside down", "description": "Smooth with the inscription of the German motto\r\n\r\nThere are two variants for the edge text:\r\n1. text readable with obverse face up\r\n2. text readable upside down",
"lettering": "EINIGKEIT UND RECHT UND FREIHEIT", "lettering": "EINIGKEIT UND RECHT UND FREIHEIT",
"lettering_translation": "Unity and Justice and Freedom", "lettering_translation": "Unity and Justice and Freedom",
"picture": "https://en.numista.com/catalogue/photos/allemagne/2036-original.jpg", "picture": "/photos/allemagne/2036-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/allemagne/2036-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/allemagne/2036-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -193,5 +187,6 @@
"id": "4", "id": "4",
"name": "Hamburgische Münze" "name": "Hamburgische Münze"
} }
] ],
"color": "rgb(113.12030075187968,122.70676691729317,141.87969924812032)"
} }
+7 -10
View File
@@ -46,15 +46,13 @@
} }
], ],
"lettering_translation": "Federal Republic of Germany", "lettering_translation": "Federal Republic of Germany",
"picture": "https://en.numista.com/catalogue/photos/allemagne/6280f8dd78c295.68137920-original.jpg", "picture": "/photos/allemagne/6280f8dd78c295.68137920-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/allemagne/6280f8dd78c295.68137920-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/allemagne/6280f8dd78c295.68137920-180.jpg",
"picture_copyright": "PCGS", "picture_copyright": "PCGS",
"picture_copyright_url": "https://www.pcgs.com/" "picture_copyright_url": "https://www.pcgs.com/"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["J. Bernhart"],
"J. Bernhart"
],
"description": "Two oak branches on either side of the face value.", "description": "Two oak branches on either side of the face value.",
"lettering": "1 \r\nDEUTSCHE \r\nMARK \r\n1965", "lettering": "1 \r\nDEUTSCHE \r\nMARK \r\n1965",
"lettering_scripts": [ "lettering_scripts": [
@@ -63,15 +61,13 @@
} }
], ],
"lettering_translation": "1 German Mark", "lettering_translation": "1 German Mark",
"picture": "https://en.numista.com/catalogue/photos/allemagne/6280f8dda0c876.82924426-original.jpg", "picture": "/photos/allemagne/6280f8dda0c876.82924426-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/allemagne/6280f8dda0c876.82924426-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/allemagne/6280f8dda0c876.82924426-180.jpg",
"picture_copyright": "PCGS", "picture_copyright": "PCGS",
"picture_copyright_url": "https://www.pcgs.com/" "picture_copyright_url": "https://www.pcgs.com/"
}, },
"comments": "Different obverse and reverse designs (visible in eagle&#039;s head, legend lettering):<br />\r\n<br />\r\n-Type A (1950-1970): Obverse 1: tongue near the lower beak, large eyeball, thicker letters; Reverse 1: thicker letters with a smaller base<br />\r\n-Type B (1971-1973): Obverse 1: tongue near the lower beak, large eyeball, thicker letters; Reverse 2: thinner letters with larger and more detailed base<br />\r\n-Type C (1971-2001): Obverse 2: tongue in the middle, smaller eyeball, thinner letters; Reverse 2: thinner letters with larger and more detailed base<br />\r\n-Type D (1974): Obverse 2: tongue in the middle, smaller eyeball, thinner letters; Reverse 1: thicker letters with a smaller base<br />\r\n<br />\r\nsee here for pictures (Type C and D switched):<br />\r\n<a href=\"https://monnaiesetvarietes.numista.com/FICHES/Allemagne%20RFA/ALLEMAGNE%201%20Mark%20110.pdf\" rel=\"nofollow\">https://monnaiesetvarietes.numista.com/FICHES/Allemagne%20RFA/ALLEMAGNE%201%20Mark%20110.pdf</a>", "comments": "Different obverse and reverse designs (visible in eagle&#039;s head, legend lettering):<br />\r\n<br />\r\n-Type A (1950-1970): Obverse 1: tongue near the lower beak, large eyeball, thicker letters; Reverse 1: thicker letters with a smaller base<br />\r\n-Type B (1971-1973): Obverse 1: tongue near the lower beak, large eyeball, thicker letters; Reverse 2: thinner letters with larger and more detailed base<br />\r\n-Type C (1971-2001): Obverse 2: tongue in the middle, smaller eyeball, thinner letters; Reverse 2: thinner letters with larger and more detailed base<br />\r\n-Type D (1974): Obverse 2: tongue in the middle, smaller eyeball, thinner letters; Reverse 1: thicker letters with a smaller base<br />\r\n<br />\r\nsee here for pictures (Type C and D switched):<br />\r\n<a href=\"https://monnaiesetvarietes.numista.com/FICHES/Allemagne%20RFA/ALLEMAGNE%201%20Mark%20110.pdf\" rel=\"nofollow\">https://monnaiesetvarietes.numista.com/FICHES/Allemagne%20RFA/ALLEMAGNE%201%20Mark%20110.pdf</a>",
"tags": [ "tags": ["Bird"],
"Bird"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -102,7 +98,7 @@
"edge": { "edge": {
"description": "Smooth with imprints", "description": "Smooth with imprints",
"lettering": "~*~ ~·~ ~*~ ~·~ ~*~ ~·~", "lettering": "~*~ ~·~ ~*~ ~·~ ~*~ ~·~",
"picture": "https://en.numista.com/catalogue/photos/allemagne/1818-original.jpg", "picture": "/photos/allemagne/1818-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/allemagne/1818-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/allemagne/1818-180.jpg",
"picture_copyright": "ZacUK" "picture_copyright": "ZacUK"
}, },
@@ -127,5 +123,6 @@
"id": "4", "id": "4",
"name": "Hamburgische Münze" "name": "Hamburgische Münze"
} }
] ],
"color": "rgb(154.43661971830986,129.29577464788733,100.56338028169014)"
} }
+7 -11
View File
@@ -45,14 +45,12 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/allemagne/1888-original.jpg", "picture": "/photos/allemagne/1888-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/allemagne/1888-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/allemagne/1888-180.jpg",
"picture_copyright": "nalaberong" "picture_copyright": "nalaberong"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Richard M. Werner"],
"Richard M. Werner"
],
"description": "Face value surrounded with the country name (German Federal Republic) ; mintmark below.", "description": "Face value surrounded with the country name (German Federal Republic) ; mintmark below.",
"lettering": "BUNDESREPUBLIK DEUTSCHLAND\r\n50 · PFENNIG ·\r\nD", "lettering": "BUNDESREPUBLIK DEUTSCHLAND\r\n50 · PFENNIG ·\r\nD",
"lettering_scripts": [ "lettering_scripts": [
@@ -61,7 +59,7 @@
} }
], ],
"lettering_translation": "Federal Republic of Germany", "lettering_translation": "Federal Republic of Germany",
"picture": "https://en.numista.com/catalogue/photos/allemagne/1889-original.jpg", "picture": "/photos/allemagne/1889-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/allemagne/1889-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/allemagne/1889-180.jpg",
"picture_copyright": "nalaberong" "picture_copyright": "nalaberong"
}, },
@@ -79,10 +77,7 @@
"maxYear": 1950 "maxYear": 1950
} }
], ],
"tags": [ "tags": ["Allegory", "Tree"],
"Allegory",
"Tree"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -112,7 +107,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Reeded (1950-1971)\r\nSmooth (1972-2001)", "description": "Reeded (1950-1971)\r\nSmooth (1972-2001)",
"picture": "https://en.numista.com/catalogue/photos/allemagne/1462-original.jpg", "picture": "/photos/allemagne/1462-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/allemagne/1462-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/allemagne/1462-180.jpg",
"picture_copyright": "Monéphil", "picture_copyright": "Monéphil",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
@@ -139,5 +134,6 @@
"id": "4", "id": "4",
"name": "Hamburgische Münze" "name": "Hamburgische Münze"
} }
] ],
"color": "rgb(134.64000000000001,124.43999999999998,120.36)"
} }
+7 -10
View File
@@ -38,9 +38,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Adolf Jäger"],
"Adolf Jäger"
],
"description": "An oak seedling above the date", "description": "An oak seedling above the date",
"lettering": "BUNDESREPUBLIK DEUTSCHLAND\r\n1989", "lettering": "BUNDESREPUBLIK DEUTSCHLAND\r\n1989",
"lettering_scripts": [ "lettering_scripts": [
@@ -49,16 +47,14 @@
} }
], ],
"lettering_translation": "Federal Republic of Germany", "lettering_translation": "Federal Republic of Germany",
"picture": "https://en.numista.com/catalogue/photos/allemagne/234-original.jpg", "picture": "/photos/allemagne/234-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/allemagne/234-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/allemagne/234-180.jpg",
"picture_copyright": "Numista", "picture_copyright": "Numista",
"picture_license_name": "CC BY", "picture_license_name": "CC BY",
"picture_license_url": "https://creativecommons.org/licenses/by/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by/4.0/deed.en"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Adolf Jäger"],
"Adolf Jäger"
],
"description": "The mintmark in between two rye ears above the denomination", "description": "The mintmark in between two rye ears above the denomination",
"lettering": "F\r\n10\r\nPFENNIG", "lettering": "F\r\n10\r\nPFENNIG",
"lettering_scripts": [ "lettering_scripts": [
@@ -66,7 +62,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/allemagne/235-original.jpg", "picture": "/photos/allemagne/235-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/allemagne/235-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/allemagne/235-180.jpg",
"picture_copyright": "Numista", "picture_copyright": "Numista",
"picture_license_name": "CC BY", "picture_license_name": "CC BY",
@@ -115,7 +111,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Smooth with the brass plating partly stretched over a steel core", "description": "Smooth with the brass plating partly stretched over a steel core",
"picture": "https://en.numista.com/catalogue/photos/allemagne/2042-original.jpg", "picture": "/photos/allemagne/2042-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/allemagne/2042-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/allemagne/2042-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -140,5 +136,6 @@
"id": "4", "id": "4",
"name": "Hamburgische Münze" "name": "Hamburgische Münze"
} }
] ],
"color": "rgb(158,129,72)"
} }
+6 -7
View File
@@ -38,9 +38,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Adolf Jäger"],
"Adolf Jäger"
],
"description": "An oak seedling above the date, circular legend around.", "description": "An oak seedling above the date, circular legend around.",
"lettering": "BUNDESREPUBLIK DEUTSCHLAND\r\n·1950·", "lettering": "BUNDESREPUBLIK DEUTSCHLAND\r\n·1950·",
"lettering_scripts": [ "lettering_scripts": [
@@ -49,7 +47,7 @@
} }
], ],
"lettering_translation": "Federal Republic of Germany", "lettering_translation": "Federal Republic of Germany",
"picture": "https://en.numista.com/catalogue/photos/allemagne/1752-original.jpg", "picture": "/photos/allemagne/1752-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/allemagne/1752-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/allemagne/1752-180.jpg",
"picture_copyright": "Idolenz", "picture_copyright": "Idolenz",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
@@ -63,7 +61,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/allemagne/1757-original.jpg", "picture": "/photos/allemagne/1757-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/allemagne/1757-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/allemagne/1757-180.jpg",
"picture_copyright": "Idolenz", "picture_copyright": "Idolenz",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
@@ -112,7 +110,7 @@
"orientation": "variable", "orientation": "variable",
"edge": { "edge": {
"description": "Smooth with copper plating partly stretched over a steel core.", "description": "Smooth with copper plating partly stretched over a steel core.",
"picture": "https://en.numista.com/catalogue/photos/allemagne/2038-original.jpg", "picture": "/photos/allemagne/2038-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/allemagne/2038-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/allemagne/2038-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -137,5 +135,6 @@
"id": "4", "id": "4",
"name": "Hamburgische Münze" "name": "Hamburgische Münze"
} }
] ],
"color": "rgb(209,152,108)"
} }
+8 -16
View File
@@ -37,10 +37,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Nikos Nikolaou", "Georgios Stamatopoulos"],
"Nikos Nikolaou",
"Georgios Stamatopoulos"
],
"description": "A portrait of Eleftherios Venizelos (1864-1936), one of Greeces most prominent political figures, accompanied by a legend indicating his name \"Ελ. Βενιζέλος\", the value, and the 12 stars of Europe around the rim", "description": "A portrait of Eleftherios Venizelos (1864-1936), one of Greeces most prominent political figures, accompanied by a legend indicating his name \"Ελ. Βενιζέλος\", the value, and the 12 stars of Europe around the rim",
"lettering": "50 ΛΕΠΤΑ \r\n2005\r\nΕλ. Βενιζέλος \r\nΓΣ", "lettering": "50 ΛΕΠΤΑ \r\n2005\r\nΕλ. Βενιζέλος \r\nΓΣ",
"lettering_scripts": [ "lettering_scripts": [
@@ -49,16 +46,14 @@
} }
], ],
"lettering_translation": "50 Cents\r\n2005\r\nEl. Venizelos\r\nGS", "lettering_translation": "50 Cents\r\n2005\r\nEl. Venizelos\r\nGS",
"picture": "https://en.numista.com/catalogue/photos/grece/605d7310dfec66.91115567-original.jpg", "picture": "/photos/grece/605d7310dfec66.91115567-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/grece/605d7310dfec66.91115567-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/grece/605d7310dfec66.91115567-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
"picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en" "picture_license_url": "https://creativecommons.org/licenses/by-nc/4.0/deed.en"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Luc Luycx"],
"Luc Luycx"
],
"description": "A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union.", "description": "A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union.",
"lettering": "50\r\nLL \r\nEURO \r\nCENT", "lettering": "50\r\nLL \r\nEURO \r\nCENT",
"lettering_scripts": [ "lettering_scripts": [
@@ -66,7 +61,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/grece/605d731176ff38.14105518-original.jpg", "picture": "/photos/grece/605d731176ff38.14105518-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/grece/605d731176ff38.14105518-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/grece/605d731176ff38.14105518-180.jpg",
"picture_copyright": "Mike Bentley", "picture_copyright": "Mike Bentley",
"picture_license_name": "CC BY-NC", "picture_license_name": "CC BY-NC",
@@ -86,11 +81,7 @@
"maxYear": 2023 "maxYear": 2023
} }
], ],
"tags": [ "tags": ["Map", "Mustache", "Politician"],
"Map",
"Mustache",
"Politician"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -113,7 +104,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Indented", "description": "Indented",
"picture": "https://en.numista.com/catalogue/photos/grece/1279-original.jpg", "picture": "/photos/grece/1279-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/grece/1279-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/grece/1279-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -131,5 +122,6 @@
"name": "Monnaie de Paris" "name": "Monnaie de Paris"
} }
], ],
"count": 1 "count": 1,
"color": "rgb(193,173,121)"
} }
File diff suppressed because one or more lines are too long
+8 -14
View File
@@ -37,10 +37,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Perikles Sotiriou", "Georgios Stamatopoulos"],
"Perikles Sotiriou",
"Georgios Stamatopoulos"
],
"description": "A portrait of Rigas Fereos (1757-1798), a forerunner and leading figure of the Greek enlightenment and confederation, is accompanied with a legend indicating his name \"Ρήγας Φεραίος\" and the face value and is encircled by the twelve stars of Europe.", "description": "A portrait of Rigas Fereos (1757-1798), a forerunner and leading figure of the Greek enlightenment and confederation, is accompanied with a legend indicating his name \"Ρήγας Φεραίος\" and the face value and is encircled by the twelve stars of Europe.",
"lettering": "10 \r\nΛΕΠΤΑ\r\n2002\r\nΡΗΓΑΣ ΦΕΡΑΙΟΣ\r\nΓΣ", "lettering": "10 \r\nΛΕΠΤΑ\r\n2002\r\nΡΗΓΑΣ ΦΕΡΑΙΟΣ\r\nΓΣ",
"lettering_scripts": [ "lettering_scripts": [
@@ -49,15 +46,13 @@
} }
], ],
"lettering_translation": "10\r\nCENTS\r\n2002\r\nRIGAS FEREOS", "lettering_translation": "10\r\nCENTS\r\n2002\r\nRIGAS FEREOS",
"picture": "https://en.numista.com/catalogue/photos/grece/1824-original.jpg", "picture": "/photos/grece/1824-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/grece/1824-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/grece/1824-180.jpg",
"picture_copyright": "Ma collection de monnaies", "picture_copyright": "Ma collection de monnaies",
"picture_copyright_url": "https://monnaiesetvarietes.numista.com/" "picture_copyright_url": "https://monnaiesetvarietes.numista.com/"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Luc Luycx"],
"Luc Luycx"
],
"description": "A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union.", "description": "A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union.",
"lettering": "10 \r\nLL\r\nEURO \r\nCENT", "lettering": "10 \r\nLL\r\nEURO \r\nCENT",
"lettering_scripts": [ "lettering_scripts": [
@@ -65,7 +60,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/grece/1825-original.jpg", "picture": "/photos/grece/1825-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/grece/1825-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/grece/1825-180.jpg",
"picture_copyright": "Ma collection de monnaies", "picture_copyright": "Ma collection de monnaies",
"picture_copyright_url": "https://monnaiesetvarietes.numista.com/" "picture_copyright_url": "https://monnaiesetvarietes.numista.com/"
@@ -84,9 +79,7 @@
"maxYear": 2023 "maxYear": 2023
} }
], ],
"tags": [ "tags": ["Map"],
"Map"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -109,7 +102,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Indented", "description": "Indented",
"picture": "https://en.numista.com/catalogue/photos/grece/1617-original.jpg", "picture": "/photos/grece/1617-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/grece/1617-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/grece/1617-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -123,5 +116,6 @@
"name": "Monnaie de Paris" "name": "Monnaie de Paris"
} }
], ],
"count": 1 "count": 1,
"color": "rgb(205,148,32)"
} }
+8 -15
View File
@@ -37,10 +37,7 @@
"text": "Milled" "text": "Milled"
}, },
"obverse": { "obverse": {
"engravers": [ "engravers": ["Maria Andonatou", "Geórgios Stamatópoulos"],
"Maria Andonatou",
"Geórgios Stamatópoulos"
],
"description": "A portrait of Ioannis Capodistrias (1776-1831), a leading national and European politician and diplomat who became the first Governor of Greece (1830-31) following the Greek War of Independence (1821-27), is accompanied with a legend indicating his name \"Ι. Καποδίστριας\" and the face value and is encircled by the twelve stars of Europe", "description": "A portrait of Ioannis Capodistrias (1776-1831), a leading national and European politician and diplomat who became the first Governor of Greece (1830-31) following the Greek War of Independence (1821-27), is accompanied with a legend indicating his name \"Ι. Καποδίστριας\" and the face value and is encircled by the twelve stars of Europe",
"lettering": "20\r\n2008 ΛΕΠΤΑ\r\nΙ. ΚΑΠΟΔΙΣΤΡΙΑΣ\r\nΓΣ", "lettering": "20\r\n2008 ΛΕΠΤΑ\r\nΙ. ΚΑΠΟΔΙΣΤΡΙΑΣ\r\nΓΣ",
"lettering_scripts": [ "lettering_scripts": [
@@ -49,14 +46,12 @@
} }
], ],
"lettering_translation": "20\r\n2008 Cents\r\nI. Kapodistrias\r\nGS", "lettering_translation": "20\r\n2008 Cents\r\nI. Kapodistrias\r\nGS",
"picture": "https://en.numista.com/catalogue/photos/grece/1818-original.jpg", "picture": "/photos/grece/1818-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/grece/1818-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/grece/1818-180.jpg",
"picture_copyright": "gef" "picture_copyright": "gef"
}, },
"reverse": { "reverse": {
"engravers": [ "engravers": ["Luc Luycx"],
"Luc Luycx"
],
"description": "A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union", "description": "A map, next to the face value, symbolizes the gathering of the fifteen nations of the European Union",
"lettering": "20\r\nLL\r\nEURO\r\nCENT", "lettering": "20\r\nLL\r\nEURO\r\nCENT",
"lettering_scripts": [ "lettering_scripts": [
@@ -64,7 +59,7 @@
"name": "Latin" "name": "Latin"
} }
], ],
"picture": "https://en.numista.com/catalogue/photos/grece/1819-original.jpg", "picture": "/photos/grece/1819-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/grece/1819-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/grece/1819-180.jpg",
"picture_copyright": "gef" "picture_copyright": "gef"
}, },
@@ -82,10 +77,7 @@
"maxYear": 2006 "maxYear": 2006
} }
], ],
"tags": [ "tags": ["Map", "Politician"],
"Map",
"Politician"
],
"references": [ "references": [
{ {
"catalogue": { "catalogue": {
@@ -108,7 +100,7 @@
"orientation": "medal", "orientation": "medal",
"edge": { "edge": {
"description": "Smooth with seven indentations (\"Spanish flower\")", "description": "Smooth with seven indentations (\"Spanish flower\")",
"picture": "https://en.numista.com/catalogue/photos/grece/1618-original.jpg", "picture": "/photos/grece/1618-original.jpg",
"thumbnail": "https://en.numista.com/catalogue/photos/grece/1618-180.jpg", "thumbnail": "https://en.numista.com/catalogue/photos/grece/1618-180.jpg",
"picture_copyright": "Cyrillius" "picture_copyright": "Cyrillius"
}, },
@@ -118,5 +110,6 @@
"name": "The National Mint of the Bank of Greece" "name": "The National Mint of the Bank of Greece"
} }
], ],
"count": 1 "count": 1,
"color": "rgb(176,154,84)"
} }

Some files were not shown because too many files have changed in this diff Show More