bsb 0.0.15 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cbca2f65ec5597295c275560864949082e9979fff33cb01345aa67e69809041d
4
- data.tar.gz: f1ad45d05c75bd9195339646f1ecf4bce6a299fbfb947948c68bee046605a8bd
3
+ metadata.gz: 55cb57cf76e443da93060a6a6c28e761a13fb53aab09a4a15f7845de350c2623
4
+ data.tar.gz: 9367614ed9964e1606da982f1b0be7a2dd78a04d1c8b08d69caecb83d0daa08f
5
5
  SHA512:
6
- metadata.gz: 0220c49f22ea6be66ac3bfeac2955a7786b553d017092f2264dce3e2cfebf4e665694ecedcce8169f3c8826d14a48b1fd121b97f19874b05ace1df3aefad21e3
7
- data.tar.gz: 3388949f0cc49c8fc3a15173cf85688ab8b5c36f5222c7b14b9b7bf197714b97c813899e42a45f70a768c9234dcc3d6af042e0cf23916cff24dc4d847b8958be
6
+ metadata.gz: 152022f5fe3e39c3330df43362d67aae226d7136d7083f21a1e8d537dd6bd15d44b4c6e56f10c8d517535a82b32ce139fb0813f2a765daf49cd123ab182b7b6a
7
+ data.tar.gz: 77b7f3c646d0828587bbab4cf552bd1fb41c6b91e959c77d3c6ee36b764bfbd274d65bdd44c3d32d4acc4f90fe55ff8daa137db9e5db43072fdce9c4b249f0fe
@@ -0,0 +1,19 @@
1
+ name: Continuous Integration
2
+
3
+ on: [push, pull_request]
4
+
5
+ jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+
9
+ strategy:
10
+ matrix:
11
+ ruby: [ '2.7', '3.1' ]
12
+
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+ - uses: ruby/setup-ruby@v1
16
+ with:
17
+ ruby-version: ${{ matrix.ruby }}
18
+ bundler-cache: true
19
+ - run: bundle exec rake
@@ -0,0 +1,57 @@
1
+ name: Release Please
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - master
7
+ - fix/release-workflow-permissions
8
+
9
+ jobs:
10
+ release-please:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: google-github-actions/release-please-action@v3
14
+ id: release
15
+ with:
16
+ # https://github.com/google-github-actions/release-please-action
17
+ default-branch: master
18
+ release-type: ruby
19
+ package-name: bsb
20
+ version-file: lib/bsb/version.rb
21
+ fork: false
22
+ bump-minor-pre-major: true
23
+ bump-patch-for-minor-pre-major: true
24
+
25
+ - # if: ${{ steps.release.outputs.release_created }}
26
+ uses: actions/checkout@v3
27
+
28
+ - # if: ${{ steps.release.outputs.release_created }}
29
+ name: Set up Ruby
30
+ uses: ruby/setup-ruby@v1
31
+ with:
32
+ bundler-cache: true
33
+
34
+ - # if: ${{ steps.release.outputs.release_created }}
35
+ name: Publish to GPR
36
+ run: |
37
+ mkdir -p $HOME/.gem
38
+ touch $HOME/.gem/credentials
39
+ chmod 0600 $HOME/.gem/credentials
40
+ printf -- "---\n:github: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
41
+ gem build *.gemspec
42
+ gem push --KEY github --host https://rubygems.pkg.github.com/${OWNER} *.gem
43
+ env:
44
+ GEM_HOST_API_KEY: "Bearer ${{secrets.GITHUB_TOKEN}}"
45
+ OWNER: ${{ github.repository_owner }}
46
+
47
+ - # if: ${{ steps.release.outputs.release_created }}
48
+ name: Publish to RubyGems
49
+ run: |
50
+ mkdir -p $HOME/.gem
51
+ touch $HOME/.gem/credentials
52
+ chmod 0600 $HOME/.gem/credentials
53
+ printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
54
+ gem build *.gemspec
55
+ gem push *.gem
56
+ env:
57
+ GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_API_KEY}}"
@@ -0,0 +1,33 @@
1
+ name: Update BSB Database
2
+
3
+ on:
4
+ schedule:
5
+ # https://crontab.guru/every-month
6
+ # At 00:00 on day-of-month 1.
7
+ - cron: "0 0 1 * *"
8
+ workflow_dispatch:
9
+
10
+ jobs:
11
+ build:
12
+ name: Update BSB Database & Version
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v3
16
+ - name: Set up Ruby
17
+ uses: ruby/setup-ruby@v1
18
+ with:
19
+ bundler-cache: true
20
+ - name: Update BSB Database & Version
21
+ run: bundle exec rake bsb:sync
22
+ - id: get-date
23
+ run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
24
+ - uses: peter-evans/create-pull-request@v4
25
+ id: raise-pr
26
+ with:
27
+ branch: "bot/${{ steps.get-date.outputs.date }}"
28
+ base: master
29
+ title: "fix: ${{ steps.get-date.outputs.date }} periodic update of config/*.json database files."
30
+ committer: GitHub Actions <actions@github.com>
31
+ author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
32
+ signoff: false
33
+ delete-branch: true
data/.gitignore CHANGED
@@ -1,4 +1,5 @@
1
1
  /.bundle/
2
+ vendor/
2
3
  /.yardoc
3
4
  /_yardoc/
4
5
  /coverage/
@@ -12,3 +13,7 @@
12
13
  *.a
13
14
  mkmf.log
14
15
  *.gem
16
+ .env
17
+ AUTHOR
18
+
19
+ Gemfile.lock
@@ -0,0 +1 @@
1
+ {".":"1.0.0"}
data/.rubocop.yml ADDED
@@ -0,0 +1,16 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.7
3
+ NewCops: enable
4
+ SuggestExtensions: false
5
+
6
+ Style/Documentation:
7
+ Enabled: false
8
+
9
+ Metrics/AbcSize:
10
+ Max: 50
11
+
12
+ Metrics/MethodLength:
13
+ Max: 50
14
+
15
+ Metrics/BlockLength:
16
+ Max: 50
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 3.1.2
data/CHANGELOG.md ADDED
@@ -0,0 +1,61 @@
1
+ # Changelog
2
+
3
+ ## [1.0.0](https://github.com/coinjar/bsb/compare/v1.0.0...v1.0.0) (2022-09-25)
4
+
5
+
6
+ ### Features
7
+
8
+ * may update ([760ecfc](https://github.com/coinjar/bsb/commit/760ecfca89e05d80c512e3cb21751eca5eef8435))
9
+ * release please ([#12](https://github.com/coinjar/bsb/issues/12)) ([535f071](https://github.com/coinjar/bsb/commit/535f071e008e591c225e7b98a6edd24046b6b8c1))
10
+ * sync rake task added ([4f361c5](https://github.com/coinjar/bsb/commit/4f361c57269d53ee9ef30f56730f3b6982215d84))
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * multi ruby bundle by removing .lock with gemspec resolution. ([#17](https://github.com/coinjar/bsb/issues/17)) ([21a089b](https://github.com/coinjar/bsb/commit/21a089b3c9ef4ff7433f6f7961765731c290e477))
16
+ * rubocop refactor ([d6f50c4](https://github.com/coinjar/bsb/commit/d6f50c403aaefcf3b9d8655d277be1b812a35b14))
17
+
18
+
19
+ ### Miscellaneous Chores
20
+
21
+ * release 1.0.0 ([#19](https://github.com/coinjar/bsb/issues/19)) ([b7e8a42](https://github.com/coinjar/bsb/commit/b7e8a4235fbd120af9d24f760518fcb865f5e683))
22
+
23
+ ## [1.0.0](https://github.com/coinjar/bsb/compare/v1.0.0...v1.0.0) (2022-09-25)
24
+
25
+
26
+ ### Bug Fixes
27
+
28
+ * multi ruby bundle by removing .lock with gemspec resolution. ([#17](https://github.com/coinjar/bsb/issues/17)) ([21a089b](https://github.com/coinjar/bsb/commit/21a089b3c9ef4ff7433f6f7961765731c290e477))
29
+
30
+
31
+ ### Miscellaneous Chores
32
+
33
+ * release 1.0.0 ([#19](https://github.com/coinjar/bsb/issues/19)) ([b7e8a42](https://github.com/coinjar/bsb/commit/b7e8a4235fbd120af9d24f760518fcb865f5e683))
34
+
35
+ ## [1.0.0](https://github.com/coinjar/bsb/compare/v1.0.0...v1.0.0) (2022-09-25)
36
+
37
+
38
+ ### Bug Fixes
39
+
40
+ * multi ruby bundle by removing .lock with gemspec resolution. ([#17](https://github.com/coinjar/bsb/issues/17)) ([21a089b](https://github.com/coinjar/bsb/commit/21a089b3c9ef4ff7433f6f7961765731c290e477))
41
+
42
+
43
+ ### Miscellaneous Chores
44
+
45
+ * release 1.0.0 ([#19](https://github.com/coinjar/bsb/issues/19)) ([b7e8a42](https://github.com/coinjar/bsb/commit/b7e8a4235fbd120af9d24f760518fcb865f5e683))
46
+
47
+ ## 1.0.0 (2022-09-21)
48
+
49
+
50
+ ### Features
51
+
52
+ * may update ([760ecfc](https://github.com/coinjar/bsb/commit/760ecfca89e05d80c512e3cb21751eca5eef8435))
53
+ * release please ([#12](https://github.com/coinjar/bsb/issues/12)) ([535f071](https://github.com/coinjar/bsb/commit/535f071e008e591c225e7b98a6edd24046b6b8c1))
54
+ * sync rake task added ([4f361c5](https://github.com/coinjar/bsb/commit/4f361c57269d53ee9ef30f56730f3b6982215d84))
55
+
56
+
57
+ ### Bug Fixes
58
+
59
+ * rubocop refactor ([d6f50c4](https://github.com/coinjar/bsb/commit/d6f50c403aaefcf3b9d8655d277be1b812a35b14))
60
+
61
+ ## Changelog
data/Gemfile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  source 'https://rubygems.org'
2
4
 
3
5
  # Specify your gem's dependencies in bsb.gemspec
data/README.md CHANGED
@@ -68,6 +68,10 @@ Two data sources are used:
68
68
 
69
69
  Other formats of APCA BSB data is available from http://bsb.apca.com.au.
70
70
 
71
+ ## Update source
72
+
73
+ Run this `rake bsb:sync` command to complete sync of the latest data
74
+
71
75
  ## Contributing
72
76
 
73
77
  1. Fork it ( https://github.com/zhoutong/bsb/fork )
data/Rakefile CHANGED
@@ -1,11 +1,20 @@
1
- require "bundler/gem_tasks"
1
+ # frozen_string_literal: true
2
+
3
+ require 'bundler/gem_tasks'
2
4
  load 'lib/tasks/bsb_tasks.rake'
3
5
 
4
6
  require 'rake/testtask'
5
7
 
6
8
  Rake::TestTask.new do |t|
9
+ t.libs << 'lib'
7
10
  t.libs << 'test'
11
+ t.test_files = FileList['test/**/*_test.rb']
8
12
  end
9
13
 
10
- desc "Run tests"
11
- task :default => :test
14
+ require 'rubocop/rake_task'
15
+
16
+ RuboCop::RakeTask.new
17
+
18
+ desc 'Run tests'
19
+ task default: :'rubocop:auto_correct'
20
+ task default: :test
data/bsb.gemspec CHANGED
@@ -16,10 +16,19 @@ Gem::Specification.new do |spec|
16
16
 
17
17
  spec.files = `git ls-files -z`.split("\x0")
18
18
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
19
- spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
20
19
  spec.require_paths = ['lib']
21
20
 
21
+ spec.required_ruby_version = '>= 2.7.0'
22
+
22
23
  spec.add_development_dependency 'bundler', '~> 2.0'
24
+ spec.add_development_dependency 'net-ftp', '~> 0.1.3'
23
25
  spec.add_development_dependency 'rake', '~> 13.0'
26
+ spec.add_development_dependency 'rubocop', '~> 1.26'
24
27
  spec.add_dependency 'activemodel'
28
+
29
+ # N.B. needed for periodic auto update of database.
30
+ #
31
+ # rubocop:disable Gemspec/RequireMFA
32
+ spec.metadata['rubygems_mfa_required'] = 'false'
33
+ # rubocop:enable Gemspec/RequireMFA
25
34
  end
@@ -1 +1 @@
1
- {"642":"Australian Military Bank Limited","939":"AMP Bank Limited","917":"Arab Bank Australia Limited","01":"Australia & New Zealand Banking Group Limited","15":"T&C Town & Country Bank (a division of Australia & New Zealand Banking Group Limited)","90":"Australia Post (Money Orders)","57":"Australian Settlements Limited","259":"Alex Bank Pty Ltd","890":"Avenue Bank Ltd","656":"Auswide Bank Ltd","632":"B&E Ltd trading as Bank of Us","23":"Bank of America National Association","35":"Bank of China","980":"Bank of China (Australia) Limited","818":"Bank of Communications Co., Ltd Sydney Branch","941":"Delphi Bank (a division of Bendigo and Adelaide Bank Limited)","12":"Bank of Queensland Limited","639":"HOM Home Building Society (a division of Bank of Queensland Limited)","653":"PPB Pioneer Permanent Building Society (a division of Bank of Queensland Limited)","951":"INV BOQ Specialist (a division of Bank of Queensland Limited)","29":"MUFG Bank, Ltd.","325":"Beyond Bank Australia Limited","942":"Bank of Sydney Ltd","633":"Bendigo and Adelaide Bank Limited","610":"ADL Adelaide Bank (a division of Bendigo and Adelaide Bank Limited)","22":"BNP Paribas","255":"BNP Paribas Securities Services","813":"Capricornian Ltd (The)","888":"China Construction Bank Corporation, Sydney Branch","512":"Community First Credit Union Limited","510":"Citibank N.A.","24":"Citigroup Pty Limited","06":"Commonwealth Bank of Australia","76":"Commonwealth Bank of Australia","30":"BWA Bankwest (a division of Commonwealth Bank of Australia)","40":"CST Commonwealth Bank of Australia","42":"TBT Commonwealth Bank of Australia","52":"TBT Commonwealth Bank of Australia","814":"Credit Union Australia Ltd (trading as Great Southern Bank)","80":"Cuscal Limited","889":"DBS Bank Ltd. (Australia Branch)","41":"Deutsche Bank Aktiengesellschaft","833":"Defence Bank Limited","823":"Australian Mutual Bank Limited","611":"SEL Australian Mutual Bank Limited","676":"Gateway Bank Ltd","659":"G&C Mutual Bank Limited","630":"Greater Bank Ltd","637":"Greater Bank Ltd","680":"Greater Bank Ltd","820":"Global Payments Australia 1 Pty Ltd","636":"Cuscal Limited","638":"Heritage Bank Limited","880":"Heritage Bank Limited","721":"Holiday Coast (now known as Regional Australia Bank Ltd)","985":"Hongkong & Shanghai Banking Corporation Limited (The), Australian Branch","34":"HSBC Bank Australia Limited","640":"Hume Bank Limited","641":"IMB Ltd","647":"IMB Ltd","824":"STH IMB Ltd","70":"Indue Ltd","819":"Industrial and Commercial Bank of China Limited","923":"ING Bank (Australia) Limited (trading as ING)","936":"ING Bank, NV (Sydney Branch)","21":"JP Morgan Chase Bank, National Association","725":"Judo Bank Pty Ltd","323":"KEB Hana Bank","18":"Macquarie Bank Limited","646":"Maitland Mutual Limited trading as The Mutual Bank","882":"Unity Bank Limited","313":"Bank Australia Limited","931":"Mega International Commercial Bank Co, Ltd","944":"Members Equity Bank Limited (a division of Bank of Queensland Limited)","918":"Mizuho Bank, Ltd","645":"Auswide Bank Ltd","969":"Tyro Payments Limited","08":"National Australia Bank Limited","650":"Newcastle Permanent Building Society Ltd","45":"Oversea-Chinese Banking Corporation Limited","311":"in1bank Limited","815":"Police Bank Ltd (trading as Police Bank)","723":"Bank of Heritage Isle, a division of Police Bank Ltd","777":"Police & Nurses Limited","533":"BCC Police & Nurses Limited","14":"Rabobank Australia Limited","654":"Queensland Country Bank Limited","514":"Members Banking Group Limited Trading as RACQ Bank","724":"Railways Credit Union Limited t/a MOVE Bank","932":"Regional Australia Bank Limited","09":"Reserve Bank of Australia","655":"MyState Bank Limited","43":"Standard Chartered Bank, Australia Branch","722":"Southern Cross Credit Union Ltd","840":"Zepto Payments Pty Ltd","913":"State Street Bank and Trust Company","911":"Sumitomo Mitsui Banking Corporation","728":"Summerland Financial Servces Limited (Trading as Summerland Credit Union)","825":"Australian Unity Bank Limited","48":"Suncorp-Metway Limited","66":"SUN Suncorp-Metway Limited","943":"Taiwan Business Bank, Sydney Branch","812":"Teachers Mutual Bank Limited","946":"UBS AG, Australia Branch","922":"United Overseas Bank Limited","634":"Uniting Financial Services","517":"Volt Bank Limited","03":"Westpac Banking Corporation","04":"Westpac Banking Corporation","73":"Westpac Banking Corporation","74":"Westpac Banking Corporation","11":"STG St.George Bank (a division of Westpac Banking Corp) ","10":"BSA BankSA (a division of Westpac Banking Corp)","19":"BOM Bank of Melbourne (a division of Westpac Banking Corp)","26":"BTA Bankers Trust Australia (a division of Westpac Banking Corp)","33":"SGP St.George Bank (a division of Westpac Banking Corp)","46":"ADV Advance Bank Australia (a division of Westpac Banking Corp)","47":"CBL Challenge Bank (a division of Westpac Banking Corp)","55":"BML Bank of Melbourne (a division of Westpac Banking Corp)","817":"Warwick Credit Union Ltd","774":"Wise Australia Pty Ltd","670":"86400 Holdings Pty Ltd (Acquired by NAB)"}
1
+ {"642":"Australian Military Bank Limited","939":"AMP Bank Limited","917":"Arab Bank Australia Limited","01":"Australia & New Zealand Banking Group Limited","15":"T&C Town & Country Bank (a division of Australia & New Zealand Banking Group Limited)","90":"Australia Post (Money Orders)","57":"Australian Settlements Limited","259":"Alex Bank Pty Ltd","890":"Avenue Bank Ltd","656":"Auswide Bank Ltd","632":"B&E Ltd trading as Bank of Us","23":"Bank of America National Association","35":"Bank of China","980":"Bank of China (Australia) Limited","818":"Bank of Communications Co., Ltd Sydney Branch","941":"Delphi Bank (a division of Bendigo and Adelaide Bank Limited)","12":"Bank of Queensland Limited","639":"HOM Home Building Society (a division of Bank of Queensland Limited)","653":"PPB Pioneer Permanent Building Society (a division of Bank of Queensland Limited)","951":"INV BOQ Specialist (a division of Bank of Queensland Limited)","29":"MUFG Bank, Ltd.","325":"Beyond Bank Australia Limited","942":"Bank of Sydney Ltd","633":"Bendigo and Adelaide Bank Limited","610":"ADL Adelaide Bank (a division of Bendigo and Adelaide Bank Limited)","22":"BNP Paribas","255":"BNP Paribas Securities Services","813":"Capricornian Ltd (The)","888":"China Construction Bank Corporation, Sydney Branch","512":"Community First Credit Union Limited","510":"Citibank N.A.","24":"CTI Citibank N.A.","06":"Commonwealth Bank of Australia","76":"Commonwealth Bank of Australia","30":"BWA Bankwest (a division of Commonwealth Bank of Australia)","40":"CST Commonwealth Bank of Australia","42":"TBT Commonwealth Bank of Australia","52":"TBT Commonwealth Bank of Australia","814":"Credit Union Australia Ltd (trading as Great Southern Bank)","80":"Cuscal Limited","889":"DBS Bank Ltd. (Australia Branch)","41":"Deutsche Bank Aktiengesellschaft","833":"Defence Bank Limited","823":"Australian Mutual Bank Limited","611":"SEL Australian Mutual Bank Limited","676":"Gateway Bank Ltd","659":"G&C Mutual Bank Limited","630":"Greater Bank Ltd","637":"Greater Bank Ltd","680":"Greater Bank Ltd","820":"Global Payments Australia 1 Pty Ltd","636":"Cuscal Limited","638":"Heritage Bank Limited","880":"Heritage Bank Limited","721":"Holiday Coast (now known as Regional Australia Bank Ltd)","985":"Hongkong & Shanghai Banking Corporation Limited (The), Australian Branch","34":"HSBC Bank Australia Limited","640":"Hume Bank Limited","641":"IMB Ltd","647":"IMB Ltd","824":"STH IMB Ltd","70":"Indue Ltd","819":"Industrial and Commercial Bank of China Limited","923":"ING Bank (Australia) Limited (trading as ING)","936":"ING Bank, NV (Sydney Branch)","21":"JP Morgan Chase Bank, National Association","725":"Judo Bank Pty Ltd","323":"KEB Hana Bank","18":"Macquarie Bank Limited","646":"Maitland Mutual Limited trading as The Mutual Bank","882":"Unity Bank Limited","313":"Bank Australia Limited","931":"Mega International Commercial Bank Co, Ltd","944":"Members Equity Bank Limited (a division of Bank of Queensland Limited)","918":"Mizuho Bank, Ltd","645":"Auswide Bank Ltd","969":"Tyro Payments Limited","08":"National Australia Bank Limited","650":"Newcastle Permanent Building Society Ltd","45":"Oversea-Chinese Banking Corporation Limited","311":"in1bank Limited","815":"Police Bank Ltd (trading as Police Bank)","723":"Bank of Heritage Isle, a division of Police Bank Ltd","777":"Police & Nurses Limited","533":"BCC Police & Nurses Limited","14":"Rabobank Australia Limited","654":"Queensland Country Bank Limited","514":"Members Banking Group Limited Trading as RACQ Bank","724":"Railways Credit Union Limited t/a MOVE Bank","932":"Regional Australia Bank Limited","09":"Reserve Bank of Australia","655":"MyState Bank Limited","43":"Standard Chartered Bank, Australia Branch","722":"Southern Cross Credit Union Ltd","840":"Zepto Payments Pty Ltd","913":"State Street Bank and Trust Company","911":"Sumitomo Mitsui Banking Corporation","728":"Summerland Financial Servces Limited (Trading as Summerland Credit Union)","825":"Australian Unity Bank Limited","48":"Suncorp-Metway Limited","66":"SUN Suncorp-Metway Limited","943":"Taiwan Business Bank, Sydney Branch","812":"Teachers Mutual Bank Limited","946":"UBS AG, Australia Branch","922":"United Overseas Bank Limited","634":"Uniting Financial Services","517":"Volt Bank Limited","03":"Westpac Banking Corporation","04":"Westpac Banking Corporation","73":"Westpac Banking Corporation","74":"Westpac Banking Corporation","11":"STG St.George Bank (a division of Westpac Banking Corp) ","10":"BSA BankSA (a division of Westpac Banking Corp)","19":"BOM Bank of Melbourne (a division of Westpac Banking Corp)","26":"BTA Bankers Trust Australia (a division of Westpac Banking Corp)","33":"SGP St.George Bank (a division of Westpac Banking Corp)","46":"ADV Advance Bank Australia (a division of Westpac Banking Corp)","47":"CBL Challenge Bank (a division of Westpac Banking Corp)","55":"BML Bank of Melbourne (a division of Westpac Banking Corp)","817":"Warwick Credit Union Ltd","774":"Wise Australia Pty Ltd","670":"86400 Holdings Pty Ltd (Acquired by NAB)"}