summaryrefslogtreecommitdiffhomepage
path: root/src/templates/banknotes-codes.html.tmpl
blob: f7aea7f1bcfe6c2d54e1a77b11c6771e7a86b402 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
{{ define "content" }}
<header>
	{{ template "navbar" . }}
	<h1>{{ .T "Location Codes" }}</h1>
</header>
<main>
	<p>
		{{ .T `
			Euro banknotes have two codes on them: a printer code and a serial
			number.  The printer code tells you where a given note was printed,
			while the serial number tells you which country issues the banknote
			(for the 2002 series) or where the banknote was printed (for the
			Europa series).
		` }}
	</p>

	<h2>{{ .T "Printer Code" }}</h2>
	<p>
		{{ .T `
			The printer code (not to be confused with the serial number) is a
			small code printed on banknotes with information about where the
			banknote was printed.  All printer codes take the form of ‘X000X0’
			— or in other words — a letter followed by 3 numbers, a letter
			and a final number.
		` }}
	</p>
	<p>
		{{ .T `
			The printer code can be a bit tricky to find.  The following
			dropdowns will show you where to find the printer code on each
			note.
		` }}
	</p>
	<details>
		<summary>{{ .T "2002 Series Printer Codes" }}</summary>
		<p>
			{{ .T `
				All these images are taken from %seurobilltracker.com%s.`
				`<a href="https://eurobilltracker.com" target="_blank">`
				`</a>` | safe
			}}
		</p>
		{{ template "banknotes/codes/code-pos" (tuple .Printer   5 "2002") }}
		{{ template "banknotes/codes/code-pos" (tuple .Printer  10 "2002") }}
		{{ template "banknotes/codes/code-pos" (tuple .Printer  20 "2002") }}
		{{ template "banknotes/codes/code-pos" (tuple .Printer  50 "2002") }}
		{{ template "banknotes/codes/code-pos" (tuple .Printer 100 "2002") }}
		{{ template "banknotes/codes/code-pos" (tuple .Printer 200 "2002") }}
		{{ template "banknotes/codes/code-pos" (tuple .Printer 500 "2002") }}
	</details>
	<details>
		<summary>{{ .T "Europa Series Printer Codes" }}</summary>
		{{ template "banknotes/codes/code-pos" (tuple .Printer   5 "europa") }}
		{{ template "banknotes/codes/code-pos" (tuple .Printer  10 "europa") }}
		{{ template "banknotes/codes/code-pos" (tuple .Printer  20 "europa") }}
		{{ template "banknotes/codes/code-pos" (tuple .Printer  50 "europa") }}
		{{ template "banknotes/codes/code-pos" (tuple .Printer 100 "europa") }}
		{{ template "banknotes/codes/code-pos" (tuple .Printer 200 "europa") }}
	</details>

	<p>
		{{ .T `
			The first letter in the printer code identifies the specific
			printer at which the banknote was printed.  The tables below will
			tell you which letters correspond to which printers.  The final
			letter and number form a pair (such as ‘A2’ or ‘D6’).  This pair
			acts as a set of coordinates telling you where on the sheet of
			paper the banknote was located.  During printing, banknotes will be
			printed multiple times on a large sheet of paper which is later cut
			into smaller individual banknotes.  A note with the pair ‘A1’ will
			have been at the upper-left corner of the printing sheet, with ‘A2’
			to it’s right and ‘B1’ below it.
		` }}
	</p>

	<h2>{{ .T "2002 Series" }}</h2>
	<p>
		{{ .T `
			In the 2002 series, the first letter of the serial number can be
			used to identify the country that issued the banknote.  The
			following table shows which countries map to which codes.
		` }}
	</p>

	<table role="grid">
		<thead>
			<tr>
				<th>{{ .T "Code" }}</th>
				<th>{{ .T "Country" }}</th>
			</tr>
		</thead>
		<tbody>
			<tr>
				<td>D</td>
				<td>{{ .T "Estonia" }}</td>
			</tr>
			<tr>
				<td>E</td>
				<td>{{ .T "Slovakia" }}</td>
			</tr>
			<tr>
				<td>F</td>
				<td>{{ .T "Malta" }}</td>
			</tr>
			<tr>
				<td>G</td>
				<td>{{ .T "Cyprus" }}</td>
			</tr>
			<tr>
				<td>H</td>
				<td>{{ .T "Slovenia" }}</td>
			</tr>
			<tr>
				<td>L</td>
				<td>{{ .T "Finland" }}</td>
			</tr>
			<tr>
				<td>M</td>
				<td>{{ .T "Portugal" }}</td>
			</tr>
			<tr>
				<td>N</td>
				<td>{{ .T "Austria" }}</td>
			</tr>
			<tr>
				<td>P</td>
				<td>{{ .T "Netherlands" }}</td>
			</tr>
			<tr>
				<td>S</td>
				<td>{{ .T "Italy" }}</td>
			</tr>
			<tr>
				<td>T</td>
				<td>{{ .T "Ireland" }}</td>
			</tr>
			<tr>
				<td>U</td>
				<td>{{ .T "France" }}</td>
			</tr>
			<tr>
				<td>V</td>
				<td>{{ .T "Spain" }}</td>
			</tr>
			<tr>
				<td>X</td>
				<td>{{ .T "Germany" }}</td>
			</tr>
			<tr>
				<td>Y</td>
				<td>{{ .T "Greece" }}</td>
			</tr>
			<tr>
				<td>Z</td>
				<td>{{ .T "Belgium" }}</td>
			</tr>
		</tbody>
	</table>

	<p>
		{{ .T `
			The first letter of the printer code can also be used to identify
			the specific printer at which the banknote was printed.  The
			printer- and country codes do not need to line up; a banknote
			issued by a country will often be printed in another.
		` }}
	</p>

	<table role="grid">
		<thead>
			<tr>
				<th>{{ .T "Code" }}</th>
				<th>{{ .T "Country" }}</th>
				<th>{{ .T "Printer" }}</th>
			</tr>
		</thead>
		<tbody>
			<tr>
				<td>D</td>
				<td>{{ .T "Finland" }}</td>
				<td>SETEC</td>
			</tr>
			<tr>
				<td>E</td>
				<td>{{ .T "France" }}</td>
				<td>Oberthur</td>
			</tr>
			<tr>
				<td>F</td>
				<td>{{ .T "Austria" }}</td>
				<td>Österreichische Banknoten‐ und Sicherheitsdruck GmbH</td>
			</tr>
			<tr>
				<td>G</td>
				<td>{{ .T "Netherlands" }}</td>
				<td>Koninklijke Joh. Enschede</td>
			</tr>
			<tr>
				<td>H</td>
				<td>{{ .T "United Kingdom" }}</td>
				<td>Thomas de la Rue</td>
			</tr>
			<tr>
				<td>J</td>
				<td>{{ .T "Italy" }}</td>
				<td>Banca d’ Italia</td>
			</tr>
			<tr>
				<td>K</td>
				<td>{{ .T "Ireland" }}</td>
				<td>{{ .T "Central Bank of Ireland" }}</td>
			</tr>
			<tr>
				<td>L</td>
				<td>{{ .T "France" }}</td>
				<td>Banque de France</td>
			</tr>
			<tr>
				<td>M</td>
				<td>{{ .T "Spain" }}</td>
				<td>Fábrica Nacional de Moneda y Timbre</td>
			</tr>
			<tr>
				<td>N</td>
				<td>{{ .T "Greece" }}</td>
				<td>{{ .T "Bank of Greece" }}</td>
			</tr>
			<tr>
				<td>P</td>
				<td>{{ .T "Germany" }}</td>
				<td>Giesecke &amp; Devrient</td>
			</tr>
			<tr>
				<td>R</td>
				<td>{{ .T "Germany" }}</td>
				<td>Bundesdruckerei Berlin</td>
			</tr>
			<tr>
				<td>T</td>
				<td>{{ .T "Belgium" }}</td>
				<td>{{ .T "National Bank of Belgium" }}</td>
			</tr>
			<tr>
				<td>U</td>
				<td>{{ .T "Portugal" }}</td>
				<td>Valora S.A.</td>
			</tr>
		</tbody>
	</table>

	<h2>{{ .T "Europa Series" }}</h2>
	<p>
		{{ .T `
			In the Europa series the first letter of the serial number can be
			used to identify the printer that printed the banknote, just like
			the printer code.  The following table shows which countries map to
			which codes.
		` }}
	</p>
	<table role="grid">
		<thead>
			<tr>
				<th>{{ .T "Code" }}</th>
				<th>{{ .T "Country" }}</th>
				<th>{{ .T "Printer" }}</th>
			</tr>
		</thead>
		<tr>
			<td>E</td>
			<td>{{ .T "France" }}</td>
			<td>Oberthur</td>
		</tr>
		<tr>
			<td>F</td>
			<td>{{ .T "Bulgaria" }}</td>
			<td>Oberthur Fiduciaire AD</td>
		</tr>
		<tr>
			<td>M</td>
			<td>{{ .T "Portugal" }}</td>
			<td>Valora S.A.</td>
		</tr>
		<tr>
			<td>N</td>
			<td>{{ .T "Austria" }}</td>
			<td>Österreichische Banknoten‐ und Sicherheitsdruck GmbH</td>
		</tr>
		<tr>
			<td>P</td>
			<td>{{ .T "Netherlands" }}</td>
			<td>Koninklijke Joh. Enschedé</td>
		</tr>
		<tr>
			<td>R</td>
			<td>{{ .T "Germany" }}</td>
			<td>Bundesdruckerei Berlin</td>
		</tr>
		<tr>
			<td>S</td>
			<td>{{ .T "Italy" }}</td>
			<td>Banca d’Italia</td>
		</tr>
		<tr>
			<td>T</td>
			<td>{{ .T "Ireland" }}</td>
			<td>{{ .T "Central Bank of Ireland" }}</td>
		</tr>
		<tr>
			<td>U</td>
			<td>{{ .T "France" }}</td>
			<td>Banque de France</td>
		</tr>
		<tr>
			<td>V</td>
			<td>{{ .T "Spain" }}</td>
			<td>Fábrica Nacional de Moneda y Timbre</td>
		</tr>
		<tr>
			<td>W</td>
			<td>{{ .T "Germany" }}</td>
			<td>Giesecke &amp; Devrient Leipzig</td>
		</tr>
		<tr>
			<td>X</td>
			<td>{{ .T "Germany" }}</td>
			<td>Giesecke &amp; Devrient Munich</td>
		</tr>
		<tr>
			<td>Y</td>
			<td>{{ .T "Greece" }}</td>
			<td>{{ .T "Bank of Greece" }}</td>
		</tr>
		<tr>
			<td>Z</td>
			<td>{{ .T "Belgium" }}</td>
			<td>{{ .T "National Bank of Belgium" }}</td>
		</tr>
	</table>
</main>
{{ end }}

{{ define "banknotes/codes/code-pos" }}
{{ $p := (index . 0) }}
<details>
	<summary>{{ $p.T "%d Euro" (index . 1) }}</summary>
	<img
		class="big"
		src={{ sprintf "/codes/%s-%03d.jpg" (index . 2) (index . 1) }}
		alt={{ $p.T "Printer code on a %d euro bill" (index . 1) }}
	>
</details>
{{ end }}