Skip to content

Commit

Permalink
Add AUD & PHP, correct other currency lengths
Browse files Browse the repository at this point in the history
  • Loading branch information
CrypticaScriptura authored and joshmh committed Jan 31, 2019
1 parent e658a58 commit f1c29a0
Showing 1 changed file with 47 additions and 25 deletions.
72 changes: 47 additions & 25 deletions lib/f56/bills.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,28 @@ module.exports = {
AED: {
thickness: 0x0c,
lengths: {
5: [0x8f, 0x3c],
10: [0x93, 0x3e],
20: [0x95, 0x3f],
50: [0x97, 0x40],
100: [0x9b, 0x42],
200: [0x9d, 0x43],
500: [0x9f, 0x44],
1000: [0xa3, 0x46]
5: [0x99, 0x85],
10: [0x9d, 0x89],
20: [0x9f, 0x8b],
50: [0xa1, 0x8d],
100: [0xa5, 0x91],
200: [0xa7, 0x93],
500: [0xa9, 0x95],
1000: [0xad, 0x99]
},
polymer: false
},
AUD: {
thickness: 0x0d,
lengths: {
5: [0x8c, 0x78],
10: [0x93, 0x7f],
20: [0x9a, 0x86],
50: [0xa1, 0x8d],
100: [0xa8, 0x94]
},
polymer: true
},
CAD: {
thickness: 0x0d,
lengths: {
Expand All @@ -27,12 +38,12 @@ module.exports = {
CHF: {
thickness: 0x0d,
lengths: {
10: [0x7b, 0x46],
20: [0x82, 0x46],
50: [0x89, 0x46],
100: [0x90, 0x46],
200: [0x97, 0x46],
1000: [0x9e, 0x46]
10: [0x85, 0x71],
20: [0x8c, 0x78],
50: [0x93, 0x7f],
100: [0x9a, 0x86],
200: [0xa1, 0x8d],
1000: [0xa8, 0x94]
},
polymer: false
},
Expand Down Expand Up @@ -93,15 +104,26 @@ module.exports = {
},
polymer: false
},
PHP: {
thickness: 0x0c,
lengths: {
20: [0xaa, 0x96],
100: [0xaa, 0x96],
200: [0xaa, 0x96],
500: [0xaa, 0x96],
1000: [0xaa, 0x96]
},
polymer: false
},
SGD: {
thickness: 0x0c,
lengths: {
2: [0x7e, 0x3f],
5: [0x85, 0x42],
10: [0x8d, 0x45],
50: [0x9c, 0x4a],
100: [0xa2, 0x4d],
1000: [0xaa, 0x53]
2: [0x88, 0x74],
5: [0x8f, 0x7b],
10: [0x97, 0x83],
50: [0xa6, 0x92],
100: [0xac, 0x98],
1000: [0xb4, 0xa0]
},
polymer: false
},
Expand All @@ -121,11 +143,11 @@ module.exports = {
ZAR: {
thickness: 0x0c,
lengths: {
10: [0x80, 0x46],
20: [0x86, 0x46],
50: [0x8c, 0x46],
100: [0x92, 0x46],
200: [0x98, 0x46]
10: [0x8a, 0x76],
20: [0x90, 0x7c],
50: [0x96, 0x82],
100: [0x9c, 0x88],
200: [0xa2, 0x8e]
},
polymer: false
}
Expand Down

0 comments on commit f1c29a0

Please sign in to comment.