-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCzechBicDictionary.php
62 lines (59 loc) · 1.68 KB
/
CzechBicDictionary.php
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
<?php
namespace rikudou\SkQrPayment\IbanToBic\Dictionary;
/**
* @internal
*/
final class CzechBicDictionary extends AbstractBicDictionary
{
/**
* Returns the two-letter country code this dictionary is relevant to
*/
public function getCountryCode(): string
{
return 'CZ';
}
protected function getMap(): array
{
return [
'0100' => 'KOMBCZPP',
'0300' => 'CEKOCZPP',
'0600' => 'AGBACZPP',
'0710' => 'CNBACZPP',
'0800' => 'GIBACZPX',
'2010' => 'FIOBCZPP',
'2020' => 'BOTKCZPP',
'2060' => 'CITFCZPP',
'2070' => 'MPUBCZPP',
'2220' => 'ARTTCZPP',
'2240' => 'POBNCZPP',
'2250' => 'CTASCZ22',
'2310' => 'ZUNOCZPP',
'2600' => 'CITICZPX',
'2700' => 'BACXCZPP',
'3030' => 'AIRACZPP',
'3050' => 'BPPFCZP1',
'3060' => 'BPKOCZPP',
'3500' => 'INGBCZPP',
'4000' => 'SOLACZPP',
'4300' => 'CMZRCZP1',
'5500' => 'RZBCCZPP',
'5800' => 'JTBPCZPP',
'6000' => 'PMBPCZPP',
'6100' => 'EQBKCZPP',
'6200' => 'COBACZPX',
'6210' => 'BREXCZPP',
'6300' => 'GEBACZPP',
'6700' => 'SUBACZPP',
'6800' => 'VBOECZ2X',
'7910' => 'DEUTCZPX',
'7940' => 'SPWTCZ21',
'8030' => 'GENOCZ21',
'8040' => 'OBKLCZ2X',
'8090' => 'CZEECZPP',
'8150' => 'MIDLCZPP',
'8220' => 'PAERCZP1',
'8230' => 'EEPSCZPP',
'8250' => 'BKCHCZPP',
];
}
}