rus_bank_rails 0.7.1 → 0.7.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 388c4b80c1232868cefade5b644967341efc0e19
4
- data.tar.gz: b84a79de60765b872080fbf1d18e7007621e57c4
3
+ metadata.gz: f5f9eafbd9421f34c87f4eae829509a2d16dbf1b
4
+ data.tar.gz: 5448cda71200bf07646325869fb0528b3dcee2ce
5
5
  SHA512:
6
- metadata.gz: 39b730fa5565e59b27552fd74bb33f8271b3f105bf5c8c68057b088b76bdd352baa1eba4f7fbf641fa1de374c889a52874792af599f473df1ae758fe48bd8252
7
- data.tar.gz: 193717f212ce3f7bc20618fb16dee2f4b3200244619328ad45b7961d821672583e30ecc373af5f2ce9d9825e99174c318bf3855f2ec9da2aa90369e444de733e
6
+ metadata.gz: 969afa5e60db41ba48ac0b2c3dd4b18c03765dab4dd1355b8461da5c504c76f90936631e0d8d0a46e0fddc7be2933b12a9bb1fb02d2f02e458a40d7048de721c
7
+ data.tar.gz: e5ada0153a91f28d4681ff2a520b55a7863f06016cf228ec880ff288024ad99f19e87232c891c0e79ed786ff8c0ceb6fc47327cbebdadad6e008d3ae3f3a594b
@@ -19,6 +19,9 @@ module RusBankRails
19
19
 
20
20
  ##
21
21
  # Метод возвращает внутренний номер банка по БИК
22
+ # == Parameters:
23
+ # bic::
24
+ # Банковский Идентификационный Код
22
25
 
23
26
  def BicToIntCode(bic)
24
27
  resp = check_and_update(bic: bic)
@@ -27,6 +30,9 @@ module RusBankRails
27
30
 
28
31
  ##
29
32
  # Метод возвращает регистрационный номер банка по БИК
33
+ # == Parameters:
34
+ # bic::
35
+ # Банковский Идентификационный Код
30
36
 
31
37
  def BicToRegNumber(bic)
32
38
  resp = check_and_update(bic: bic)
@@ -35,6 +41,9 @@ module RusBankRails
35
41
 
36
42
  ##
37
43
  # Возвращает внутренний номер по регистрационному номеру
44
+ # == Parameters:
45
+ # reg_number::
46
+ # Регистрационный номер банка
38
47
 
39
48
  def RegNumToIntCode(reg_number)
40
49
  # TODO: Подумать, стоит ли учет смены регистрационного номера столь лишнего кода. Данный подход основывается на данных с API ЦБ, что более точно. Но можно все упростить, если допустить, что регистрационный код никогда не меняется.
@@ -60,6 +69,9 @@ module RusBankRails
60
69
 
61
70
  ##
62
71
  # Возвращает регистрационный номер по внутреннему номеру
72
+ # == Parameters:
73
+ # internal_code::
74
+ # Внутренний номер банка
63
75
 
64
76
  def IntCodeToRegNum(internal_code)
65
77
  bank = check_and_update(internal_code: internal_code)
@@ -71,7 +83,13 @@ module RusBankRails
71
83
  end
72
84
 
73
85
  ##
74
- # Поиск по названию банка. Прокси метод, при каждом вызове обращается к внешнему API. Возвращает массив записей из базы.
86
+ # Поиск по названию банка. Прокси метод, при каждом вызове обращается к внешнему API.
87
+ # При этом обновляет в базе каждый экземпляр результата.
88
+ # == Parameters:
89
+ # bank_name::
90
+ # наименование банка
91
+ # == Returns:
92
+ # Возвращает массив актуальных записей класса <Bank> из базы.
75
93
 
76
94
  def SearchByName(bank_name)
77
95
  cbr = RusBank.new
@@ -79,7 +97,13 @@ module RusBankRails
79
97
  end
80
98
 
81
99
  ##
82
- # Список банков по коду региона. Прокси метод, при каждом вызове обращается к внешнему API.
100
+ # Список банков по коду региона.
101
+ # При этом обновляет в базе каждый экземпляр результата.
102
+ # == Parameters:
103
+ # region_code::
104
+ # код региона
105
+ # == Returns:
106
+ # Возвращает массив актуальных записей класса <Bank> из базы.
83
107
 
84
108
  def SearchByRegionCode(region_code)
85
109
  cbr = RusBank.new
@@ -87,15 +111,35 @@ module RusBankRails
87
111
  end
88
112
 
89
113
  ##
90
- # Возвращает список отделений по внутреннему номеру банка. Прокси метод, при каждом вызове обращается к внешнему API.
91
-
92
- def GetOffices(int_code)
114
+ # Возвращает список отделений по внутреннему номеру банка.
115
+ # Метод делегирует вызов к соответствующему методу RusBank.
116
+ # В базу не сохраняет, все результаты онлайн из API ЦБ.
117
+ # == Parameters:
118
+ # internal_code::
119
+ # Внутренний номер банка
120
+ # == Returns:
121
+ # Возвращает массив хэшей вида
122
+ # {:cregnum=>"рег. номер филиала", :cname=>"название филиала",
123
+ # :cndate=>"Дата регистрации филиала", :straddrmn=>"Место нахождения (фактический адрес)",
124
+ # :reg_id=>"вн. Код региона"}
125
+
126
+ def GetOffices(internal_code)
93
127
  cbr = RusBank.new
94
- cbr.GetOffices(int_code)
128
+ cbr.GetOffices(internal_code)
95
129
  end
96
130
 
97
131
  ##
98
- # Список филиалов в указанном регионе. Прокси метод, при каждом вызове обращается к внешнему API.
132
+ # Список филиалов в указанном регионе.
133
+ # Метод делегирует вызов к соответствующему методу RusBank.
134
+ # В базу не сохраняет, все результаты онлайн из API ЦБ.
135
+ # == Parameters:
136
+ # region_code::
137
+ # код региона
138
+ # == Returns:
139
+ # Возвращает массив хэшей вида
140
+ # {:cmain=>"вн. Код банка (головного)", :cregnum=>"рег. номер филиала",
141
+ # :cname=>"название филиала", :cndate=>"Дата регистрации филиала",
142
+ # :straddrmn=>"Место нахождения (фактический адрес)"}
99
143
 
100
144
  def GetOfficesByRegion(region_code)
101
145
  cbr = RusBank.new
@@ -111,7 +155,11 @@ module RusBankRails
111
155
  end
112
156
 
113
157
  ##
114
- # Список регионов. Прокси метод, при каждом вызове обращается к внешнему API.
158
+ # Список регионов.
159
+ # Метод делегирует вызов к соответствующему методу RusBank.
160
+ # В базу не сохраняет, все результаты онлайн из API ЦБ.
161
+ # == Returns:
162
+ # Возвращает массив хэшей вида {:reg_code=>"Внутренний код региона", :cname=>"Название региона"}
115
163
 
116
164
  def RegionsEnum
117
165
  cbr = RusBank.new
@@ -128,7 +176,10 @@ module RusBankRails
128
176
  end
129
177
 
130
178
  ##
131
- # Возвращает десериализованный массив хешей лицензий банка
179
+ # Возвращает десериализованный массив хешей лицензий банка, представленного объектом
180
+ # == Returns:
181
+ # Возвращает массив хэшей вида {:l_code=>"код статуса лицензии",
182
+ # :lt=>"статус лицензии", :l_date=>Дата}
132
183
 
133
184
  def get_licences_as_array_of_hashes
134
185
  lics = []
@@ -149,6 +200,13 @@ module RusBankRails
149
200
 
150
201
  ##
151
202
  # Метод проверяет дату обновления записи в базе и пытается обновить в случае необходимости
203
+ # == Parameters:
204
+ # bic::
205
+ # Банковский Идентификационный Код
206
+ # internal_code::
207
+ # Внутренний номер банка
208
+ # == Returns:
209
+ # Возвращает экземпляр класса <Bank> из базы или nil.
152
210
 
153
211
  def check_and_update(params = {})
154
212
  if(params[:bic])
@@ -175,6 +233,11 @@ module RusBankRails
175
233
 
176
234
  ##
177
235
  # Метод создает новый банк в базе
236
+ # == Parameters:
237
+ # internal_code::
238
+ # Внутренний номер банка
239
+ # == Returns:
240
+ # Возвращает экземпляр класса <Bank> из базы или nil.
178
241
 
179
242
  def new_bank(internal_code)
180
243
  if info = get_info_by_internal_code(internal_code)
@@ -188,7 +251,13 @@ module RusBankRails
188
251
 
189
252
 
190
253
  ##
191
- # Обновляет переданный экземпляр банка в базе
254
+ # Обновляет переданный экземпляр банка в базе.
255
+ # Если по данному внутреннему номеру API ЦБ более не возвращает банк, но он есть в бд, то из бд запись удаляется.
256
+ # == Parameters:
257
+ # bank::
258
+ # экземпляр класса <Bank>
259
+ # == Returns:
260
+ # Возвращает экземпляр класса <Bank> из базы или nil.
192
261
 
193
262
  def update_bank(bank)
194
263
  info = get_info_by_internal_code(bank.internal_code)
@@ -1,3 +1,3 @@
1
1
  module RusBankRails
2
- VERSION = "0.7.1"
2
+ VERSION = "0.7.2"
3
3
  end
Binary file
@@ -6717,3 +6717,4 @@ Migrating to DeleteOldLicFromBanks (20140208123404)
6717
6717
  Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650 LIMIT 1
6718
6718
  Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 45000099650 LIMIT 1
6719
6719
  Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 45000099 LIMIT 1
6720
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" ORDER BY "banks"."id" DESC LIMIT 1
@@ -64903,3 +64903,1625 @@ RusBankRailsTest: test_truth
64903
64903
  SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 17:39:24 UTC +00:00], ["date_kgr_registration", Tue, 12 May 1992], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["internal_code", 450000650], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 04 Oct 2002], ["main_reg_number", "1027700280937"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["phones", "(495)785-82-25"], ["reg_code", 16], ["reg_number", 316], ["ssv_date", Wed, 10 Nov 2004], ["updated_at", Thu, 13 Feb 2014 17:39:24 UTC +00:00], ["ust_money", 4173000000], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"]]
64904
64904
   (0.5ms) commit transaction
64905
64905
   (0.1ms) SELECT COUNT(*) FROM "banks"
64906
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
64907
+  (4.4ms) DELETE FROM "banks";
64908
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
64909
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'banks';
64910
+  (0.1ms) begin transaction
64911
+ SQL (2.4ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 18:50:03 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 18:50:03 UTC +00:00]]
64912
+  (0.4ms) commit transaction
64913
+  (0.1ms) SELECT COUNT(*) FROM "banks"
64914
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650 LIMIT 1
64915
+  (0.1ms) SELECT COUNT(*) FROM "banks"
64916
+  (0.5ms) DELETE FROM "banks";
64917
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
64918
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
64919
+  (0.1ms) SELECT COUNT(*) FROM "banks"
64920
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650 LIMIT 1
64921
+  (0.1ms) begin transaction
64922
+ SQL (0.5ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 18:50:03 UTC +00:00], ["date_kgr_registration", Tue, 12 May 1992], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["internal_code", 450000650], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 04 Oct 2002], ["main_reg_number", "1027700280937"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["phones", "(495)785-82-25"], ["reg_code", 16], ["reg_number", 316], ["ssv_date", Wed, 10 Nov 2004], ["updated_at", Thu, 13 Feb 2014 18:50:03 UTC +00:00], ["ust_money", 4173000000], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"]]
64923
+  (0.3ms) commit transaction
64924
+  (0.1ms) SELECT COUNT(*) FROM "banks"
64925
+  (0.4ms) DELETE FROM "banks";
64926
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
64927
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
64928
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650 LIMIT 1
64929
+  (0.1ms) begin transaction
64930
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 18:50:03 UTC +00:00], ["date_kgr_registration", Tue, 12 May 1992], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["internal_code", 450000650], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 04 Oct 2002], ["main_reg_number", "1027700280937"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["phones", "(495)785-82-25"], ["reg_code", 16], ["reg_number", 316], ["ssv_date", Wed, 10 Nov 2004], ["updated_at", Thu, 13 Feb 2014 18:50:03 UTC +00:00], ["ust_money", 4173000000], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"]]
64931
+  (0.5ms) commit transaction
64932
+  (0.5ms) DELETE FROM "banks";
64933
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
64934
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
64935
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650999999 LIMIT 1
64936
+  (0.7ms) DELETE FROM "banks";
64937
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
64938
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'banks';
64939
+  (0.0ms) begin transaction
64940
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 18:50:03 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "Bank in Database"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 289375237580009], ["updated_at", Thu, 13 Feb 2014 18:50:03 UTC +00:00]]
64941
+  (0.4ms) commit transaction
64942
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650 LIMIT 1
64943
+  (0.4ms) DELETE FROM "banks";
64944
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
64945
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
64946
+  (0.0ms) begin transaction
64947
+ SQL (0.2ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 18:50:03 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "Old name"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Mon, 13 Jan 2014 18:50:03 UTC +00:00]]
64948
+  (0.3ms) commit transaction
64949
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650 LIMIT 1
64950
+  (0.1ms) begin transaction
64951
+ SQL (0.4ms) UPDATE "banks" SET "org_name" = ?, "org_full_name" = ?, "phones" = ?, "date_kgr_registration" = ?, "main_reg_number" = ?, "main_date_reg" = ?, "ustav_adr" = ?, "fact_adr" = ?, "ust_money" = ?, "ssv_date" = ?, "licences" = ?, "updated_at" = ? WHERE "banks"."id" = 1 [["org_name", "ХКФ БАНК"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["phones", "(495)785-82-25"], ["date_kgr_registration", Tue, 12 May 1992], ["main_reg_number", "1027700280937"], ["main_date_reg", Fri, 04 Oct 2002], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["ust_money", 4173000000], ["ssv_date", Wed, 10 Nov 2004], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["updated_at", Thu, 13 Feb 2014 18:50:03 UTC +00:00]]
64952
+  (0.4ms) commit transaction
64953
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
64954
+  (0.5ms) DELETE FROM "banks";
64955
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
64956
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
64957
+  (0.0ms) begin transaction
64958
+ SQL (0.2ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 18:50:03 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 18:50:03 UTC +00:00]]
64959
+  (0.4ms) commit transaction
64960
+  (0.1ms) SELECT COUNT(*) FROM "banks"
64961
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."reg_number" = 316 LIMIT 1
64962
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
64963
+  (0.1ms) SELECT COUNT(*) FROM "banks"
64964
+  (0.5ms) DELETE FROM "banks";
64965
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
64966
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
64967
+  (0.1ms) SELECT COUNT(*) FROM "banks"
64968
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."reg_number" = 316 LIMIT 1
64969
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
64970
+  (0.1ms) begin transaction
64971
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 18:50:04 UTC +00:00], ["date_kgr_registration", Tue, 12 May 1992], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["internal_code", 450000650], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 04 Oct 2002], ["main_reg_number", "1027700280937"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["phones", "(495)785-82-25"], ["reg_code", 16], ["reg_number", 316], ["ssv_date", Wed, 10 Nov 2004], ["updated_at", Thu, 13 Feb 2014 18:50:04 UTC +00:00], ["ust_money", 4173000000], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"]]
64972
+  (0.5ms) commit transaction
64973
+  (0.1ms) SELECT COUNT(*) FROM "banks"
64974
+  (0.5ms) DELETE FROM "banks";
64975
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
64976
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'banks';
64977
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."reg_number" = 316 LIMIT 1
64978
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
64979
+  (0.1ms) begin transaction
64980
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 18:50:04 UTC +00:00], ["date_kgr_registration", Tue, 12 May 1992], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["internal_code", 450000650], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 04 Oct 2002], ["main_reg_number", "1027700280937"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["phones", "(495)785-82-25"], ["reg_code", 16], ["reg_number", 316], ["ssv_date", Wed, 10 Nov 2004], ["updated_at", Thu, 13 Feb 2014 18:50:04 UTC +00:00], ["ust_money", 4173000000], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"]]
64981
+  (0.5ms) commit transaction
64982
+  (0.5ms) DELETE FROM "banks";
64983
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
64984
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
64985
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."reg_number" = 289375237580009 LIMIT 1
64986
+  (0.7ms) DELETE FROM "banks";
64987
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
64988
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'banks';
64989
+  (0.0ms) begin transaction
64990
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 18:50:05 UTC +00:00], ["internal_code", 450000650999999], ["licences", nil], ["org_name", "Bank in Database"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 18:50:05 UTC +00:00]]
64991
+  (0.4ms) commit transaction
64992
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."reg_number" = 316 LIMIT 1
64993
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
64994
+  (0.7ms) DELETE FROM "banks";
64995
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
64996
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'banks';
64997
+  (0.1ms) begin transaction
64998
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 18:50:05 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "Old name"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Mon, 13 Jan 2014 18:50:05 UTC +00:00]]
64999
+  (0.4ms) commit transaction
65000
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."reg_number" = 316 LIMIT 1
65001
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65002
+  (0.1ms) begin transaction
65003
+ SQL (0.4ms) UPDATE "banks" SET "org_name" = ?, "org_full_name" = ?, "phones" = ?, "date_kgr_registration" = ?, "main_reg_number" = ?, "main_date_reg" = ?, "ustav_adr" = ?, "fact_adr" = ?, "ust_money" = ?, "ssv_date" = ?, "licences" = ?, "updated_at" = ? WHERE "banks"."id" = 1 [["org_name", "ХКФ БАНК"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["phones", "(495)785-82-25"], ["date_kgr_registration", Tue, 12 May 1992], ["main_reg_number", "1027700280937"], ["main_date_reg", Fri, 04 Oct 2002], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["ust_money", 4173000000], ["ssv_date", Wed, 10 Nov 2004], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["updated_at", Thu, 13 Feb 2014 18:50:05 UTC +00:00]]
65004
+  (0.4ms) commit transaction
65005
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65006
+  (0.5ms) DELETE FROM "banks";
65007
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65008
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65009
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65010
+  (0.1ms) begin transaction
65011
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 18:50:05 UTC +00:00], ["date_kgr_registration", Tue, 12 May 1992], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["internal_code", 450000650], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 04 Oct 2002], ["main_reg_number", "1027700280937"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["phones", "(495)785-82-25"], ["reg_code", 16], ["reg_number", 316], ["ssv_date", Wed, 10 Nov 2004], ["updated_at", Thu, 13 Feb 2014 18:50:05 UTC +00:00], ["ust_money", 4173000000], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"]]
65012
+  (0.5ms) commit transaction
65013
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65014
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65015
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65016
+  (0.4ms) DELETE FROM "banks";
65017
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65018
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65019
+  (0.1ms) SELECT COUNT(*) FROM "banks"
65020
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65021
+  (0.1ms) begin transaction
65022
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 18:50:06 UTC +00:00], ["date_kgr_registration", Tue, 12 May 1992], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["internal_code", 450000650], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 04 Oct 2002], ["main_reg_number", "1027700280937"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["phones", "(495)785-82-25"], ["reg_code", 16], ["reg_number", 316], ["ssv_date", Wed, 10 Nov 2004], ["updated_at", Thu, 13 Feb 2014 18:50:06 UTC +00:00], ["ust_money", 4173000000], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"]]
65023
+  (0.5ms) commit transaction
65024
+  (0.1ms) SELECT COUNT(*) FROM "banks"
65025
+  (0.5ms) DELETE FROM "banks";
65026
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65027
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65028
+  (0.0ms) begin transaction
65029
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 18:50:06 UTC +00:00], ["internal_code", 450000650999999], ["licences", nil], ["org_name", "Bank in Database"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 18:50:06 UTC +00:00]]
65030
+  (0.4ms) commit transaction
65031
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65032
+  (0.7ms) DELETE FROM "banks";
65033
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65034
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'banks';
65035
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65036
+  (0.1ms) begin transaction
65037
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 18:50:06 UTC +00:00], ["date_kgr_registration", Tue, 12 May 1992], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["internal_code", 450000650], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 04 Oct 2002], ["main_reg_number", "1027700280937"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["phones", "(495)785-82-25"], ["reg_code", 16], ["reg_number", 316], ["ssv_date", Wed, 10 Nov 2004], ["updated_at", Thu, 13 Feb 2014 18:50:06 UTC +00:00], ["ust_money", 4173000000], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"]]
65038
+  (3.4ms) commit transaction
65039
+  (0.5ms) DELETE FROM "banks";
65040
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65041
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65042
+  (0.1ms) begin transaction
65043
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 18:50:06 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "Old name"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Mon, 13 Jan 2014 18:50:06 UTC +00:00]]
65044
+  (0.3ms) commit transaction
65045
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65046
+  (0.1ms) begin transaction
65047
+ SQL (0.4ms) UPDATE "banks" SET "org_name" = ?, "org_full_name" = ?, "phones" = ?, "date_kgr_registration" = ?, "main_reg_number" = ?, "main_date_reg" = ?, "ustav_adr" = ?, "fact_adr" = ?, "ust_money" = ?, "ssv_date" = ?, "licences" = ?, "updated_at" = ? WHERE "banks"."id" = 1 [["org_name", "ХКФ БАНК"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["phones", "(495)785-82-25"], ["date_kgr_registration", Tue, 12 May 1992], ["main_reg_number", "1027700280937"], ["main_date_reg", Fri, 04 Oct 2002], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["ust_money", 4173000000], ["ssv_date", Wed, 10 Nov 2004], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["updated_at", Thu, 13 Feb 2014 18:50:07 UTC +00:00]]
65048
+  (0.5ms) commit transaction
65049
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65050
+  (0.5ms) DELETE FROM "banks";
65051
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65052
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65053
+  (0.0ms) begin transaction
65054
+ SQL (0.2ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "111111111"], ["created_at", Thu, 13 Feb 2014 18:50:07 UTC +00:00], ["internal_code", 89899999], ["licences", nil], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Mon, 13 Jan 2014 18:50:07 UTC +00:00]]
65055
+  (0.4ms) commit transaction
65056
+  (0.1ms) SELECT COUNT(*) FROM "banks"
65057
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '111111111' LIMIT 1
65058
+ SQL (0.7ms) DELETE FROM "banks" WHERE "banks"."id" = 1
65059
+  (0.1ms) SELECT COUNT(*) FROM "banks"
65060
+  (0.5ms) DELETE FROM "banks";
65061
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65062
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'banks';
65063
+  (0.0ms) begin transaction
65064
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 18:50:07 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 18:50:07 UTC +00:00]]
65065
+  (0.4ms) commit transaction
65066
+  (0.1ms) SELECT COUNT(*) FROM "banks"
65067
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65068
+  (0.1ms) SELECT COUNT(*) FROM "banks"
65069
+  (0.6ms) DELETE FROM "banks";
65070
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65071
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65072
+  (0.0ms) begin transaction
65073
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 18:50:07 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Mon, 13 Jan 2014 18:50:07 UTC +00:00]]
65074
+  (0.4ms) commit transaction
65075
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65076
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65077
+  (0.1ms) begin transaction
65078
+ SQL (0.4ms) UPDATE "banks" SET "org_full_name" = ?, "phones" = ?, "date_kgr_registration" = ?, "main_reg_number" = ?, "main_date_reg" = ?, "ustav_adr" = ?, "fact_adr" = ?, "ust_money" = ?, "ssv_date" = ?, "licences" = ?, "updated_at" = ? WHERE "banks"."id" = 1 [["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["phones", "(495)785-82-25"], ["date_kgr_registration", Tue, 12 May 1992], ["main_reg_number", "1027700280937"], ["main_date_reg", Fri, 04 Oct 2002], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["ust_money", 4173000000], ["ssv_date", Wed, 10 Nov 2004], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["updated_at", Thu, 13 Feb 2014 18:50:07 UTC +00:00]]
65079
+  (0.4ms) commit transaction
65080
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65081
+  (0.4ms) DELETE FROM "banks";
65082
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65083
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'banks';
65084
+  (0.0ms) begin transaction
65085
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 18:50:07 UTC +00:00], ["internal_code", 450000650], ["licences", "--- []\n"], ["org_name", "Bank in Database"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 18:50:07 UTC +00:00]]
65086
+  (0.4ms) commit transaction
65087
+  (0.5ms) DELETE FROM "banks";
65088
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65089
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'banks';
65090
+  (0.0ms) begin transaction
65091
+ SQL (0.2ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 18:50:07 UTC +00:00], ["internal_code", 450000650], ["licences", "---\n- :l_code: '3'\n :lt: Лицензия 2\n :l_date: '2007-12-20T00:00:00+04:00'\n- :l_code: '7'\n :lt: Лицензия 3\n :l_date: '2012-03-23T00:00:00+04:00'\n"], ["org_name", "Bank in Database"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 18:50:07 UTC +00:00]]
65092
+  (0.3ms) commit transaction
65093
+  (0.5ms) DELETE FROM "banks";
65094
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65095
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65096
+  (0.0ms) begin transaction
65097
+ SQL (0.2ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 18:50:07 UTC +00:00], ["internal_code", 450000650], ["licences", "---\n- :l_code: '7'\n :lt: Лицензия 1\n :l_date: '2012-09-10T00:00:00+04:00'\n"], ["org_name", "Bank in Database"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 18:50:07 UTC +00:00]]
65098
+  (0.3ms) commit transaction
65099
+  (0.6ms) DELETE FROM "banks";
65100
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65101
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'banks';
65102
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000003 LIMIT 1
65103
+  (0.1ms) begin transaction
65104
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "049401814"], ["created_at", Thu, 13 Feb 2014 18:50:08 UTC +00:00], ["date_kgr_registration", Thu, 02 Apr 1992], ["fact_adr", "426008, Удмуртская Республика, г.Ижевск, ул.Пушкинская,268"], ["internal_code", 940000003], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mg==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC+0YHRg9GJ0LXRgdGC0LLQu9C10L3Q\n uNC1INCx0LDQvdC60L7QstGB0LrQuNGFINC+0L/QtdGA0LDRhtC40Lkg0YHQ\n viDRgdGA0LXQtNGB0YLQstCw0LzQuCDQsiDRgNGD0LHQu9GP0YUg0Lgg0LjQ\n vdC+0YHRgtGA0LDQvdC90L7QuSDQstCw0LvRjtGC0LUgKNCx0LXQtyDQv9GA\n 0LDQstCwINC/0YDQuNCy0LvQtdGH0LXQvdC40Y8g0LLQviDQstC60LvQsNC0\n 0Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB0YLQsiDRhNC40LfQuNGH\n 0LXRgdC60LjRhSDQu9C40YYp\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-12-13 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Ng==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB\n 0YLQsiDRhNC40LfQuNGH0LXRgdC60LjRhSDQu9C40YYg0LIg0YDRg9Cx0LvR\n j9GFINC4INC40L3QvtGB0YLRgNCw0L3QvdC+0Lkg0LLQsNC70Y7RgtC1\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-09-13 00:00:00.000000000 +04:00\n"], ["main_date_reg", Tue, 15 Oct 2002], ["main_reg_number", "1021800001508"], ["org_full_name", "Открытое акционерное общество \"БыстроБанк\""], ["org_name", "БЫСТРОБАНК"], ["org_status", "норм."], ["phones", "90-80-70, 90-80-90"], ["reg_code", 54], ["reg_number", 1745], ["ssv_date", Wed, 12 Jan 2005], ["updated_at", Thu, 13 Feb 2014 18:50:08 UTC +00:00], ["ust_money", 397121982], ["ustav_adr", "426008, Удмуртская Республика, г.Ижевск, ул.Пушкинская,268"]]
65105
+  (0.5ms) commit transaction
65106
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000013 LIMIT 1
65107
+  (0.1ms) begin transaction
65108
+ SQL (0.6ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 18:50:08 UTC +00:00], ["date_kgr_registration", Wed, 24 Oct 1990], ["fact_adr", "426057, Удмуртская Республика, г. Ижевск, ул.Красноармейская,182-а"], ["internal_code", 940000013], ["licences", "--- []\n"], ["main_date_reg", Wed, 06 Nov 2002], ["main_reg_number", "1021800002366"], ["org_full_name", "Открытое акционерное общество \"Евроазиатский банк экономического развития\""], ["org_name", "ЕВРАЗИЯ"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 573], ["ssv_date", Tue, 02 Nov 2004], ["updated_at", Thu, 13 Feb 2014 18:50:08 UTC +00:00], ["ust_money", 102403774], ["ustav_adr", "426057, Удмуртская Республика, г. Ижевск, ул.Красноармейская,182-а"]]
65109
+  (0.5ms) commit transaction
65110
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000012 LIMIT 1
65111
+  (0.1ms) begin transaction
65112
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "049401846"], ["created_at", Thu, 13 Feb 2014 18:50:08 UTC +00:00], ["date_kgr_registration", Wed, 15 Apr 1992], ["fact_adr", "426008, Удмуртская Республика, г.Ижевск, ул.Пушкинская, д.268"], ["internal_code", 940000012], ["licences", "--- []\n"], ["main_date_reg", Wed, 09 Oct 2002], ["main_reg_number", "1021800001310"], ["org_full_name", "Удмуртский Пенсионный банк (Открытое акционерное общество)"], ["org_name", "УДМУРТСКИЙ ПЕНСИОННЫЙ БАНК"], ["org_status", "лицензия отозвана"], ["phones", "(3412) 51-02-44"], ["reg_code", 54], ["reg_number", 1764], ["ssv_date", Tue, 07 Dec 2004], ["updated_at", Thu, 13 Feb 2014 18:50:08 UTC +00:00], ["ust_money", 80000000], ["ustav_adr", "426065, Удмуртская Республика, г.Ижевск, ул.Петрова,39а"]]
65113
+  (0.5ms) commit transaction
65114
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000016 LIMIT 1
65115
+  (0.1ms) begin transaction
65116
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 18:50:08 UTC +00:00], ["date_kgr_registration", Fri, 23 Nov 1990], ["fact_adr", "427790, Удмуртская Республика, г.Можга, ул.Можгинская,62"], ["internal_code", 940000016], ["licences", "--- []\n"], ["main_date_reg", Thu, 24 Oct 2002], ["main_reg_number", "1021800001850"], ["org_full_name", "Общество с ограниченной ответственностью \"Удмуртский промышленно-строительный банк\""], ["org_name", "УДМУРТПРОМСТРОЙБАНК"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 928], ["updated_at", Thu, 13 Feb 2014 18:50:08 UTC +00:00], ["ust_money", 130000000], ["ustav_adr", "427790, Удмуртская Республика, г.Можга, ул.Можгинская,62"]]
65117
+  (0.4ms) commit transaction
65118
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000020 LIMIT 1
65119
+  (0.1ms) begin transaction
65120
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 18:50:08 UTC +00:00], ["date_kgr_registration", Tue, 17 Mar 1992], ["fact_adr", "426000, Удмуртская Республика, г.Ижевск, переулок Северный, 61"], ["internal_code", 940000020], ["licences", "--- []\n"], ["main_date_reg", Tue, 12 Nov 2002], ["main_reg_number", "1021800002400"], ["org_full_name", "закрытое акционерное общество \"Коммерческий банк \"С-БАНК\""], ["org_name", "С-БАНК"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 1857], ["ssv_date", Wed, 26 Jan 2005], ["updated_at", Thu, 13 Feb 2014 18:50:08 UTC +00:00], ["ust_money", 14329428], ["ustav_adr", "426000, Удмуртская Республика, г.Ижевск, ул.Пушкинская, 278"]]
65121
+  (0.5ms) commit transaction
65122
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000017 LIMIT 1
65123
+  (0.1ms) begin transaction
65124
+ SQL (0.5ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "049401863"], ["created_at", Thu, 13 Feb 2014 18:50:08 UTC +00:00], ["date_kgr_registration", Tue, 03 Aug 1993], ["fact_adr", "426008, Удмуртская Республика, г.Ижевск, ул.Пушкинская, д.268"], ["internal_code", 940000017], ["licences", "--- []\n"], ["main_date_reg", Wed, 11 Sep 2002], ["main_reg_number", "1021800000551"], ["org_full_name", "Акционерный коммерческий Удмуртский инвестиционно-строительный банк (открытое акционерное общество)"], ["org_name", "УДМУРТИНВЕСТСТРОЙБАНК"], ["org_status", "лицензия отозвана"], ["phones", "8(3412)51-02-44"], ["reg_code", 54], ["reg_number", 2447], ["ssv_date", Wed, 22 Dec 2004], ["updated_at", Thu, 13 Feb 2014 18:50:08 UTC +00:00], ["ust_money", 8880000], ["ustav_adr", "426008, Удмуртская Республика, г.Ижевск, ул.Пушкинская, д.268"]]
65125
+  (0.6ms) commit transaction
65126
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000019 LIMIT 1
65127
+  (0.1ms) begin transaction
65128
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "049401825"], ["created_at", Thu, 13 Feb 2014 18:50:08 UTC +00:00], ["date_kgr_registration", Fri, 19 Oct 1990], ["fact_adr", "426008, Удмуртская Республика, г.Ижевск, ул.Пушкинская, д. 268"], ["internal_code", 940000019], ["licences", "--- []\n"], ["main_date_reg", Wed, 21 Aug 2002], ["main_reg_number", "1021800000177"], ["org_full_name", "Открытое акционерное общество \"Мобилбанк\""], ["org_name", "МОБИЛБАНК"], ["org_status", "лицензия отозвана"], ["phones", "8(3412) 510-244, 8(3412) 908-911"], ["reg_code", 54], ["reg_number", 532], ["ssv_date", Wed, 12 Jan 2005], ["updated_at", Thu, 13 Feb 2014 18:50:08 UTC +00:00], ["ust_money", 176668000], ["ustav_adr", "426000, Удмуртская Республика, г.Ижевск, ул.Свободы, 173"]]
65129
+  (0.5ms) commit transaction
65130
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000021 LIMIT 1
65131
+  (0.1ms) begin transaction
65132
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "049401871"], ["created_at", Thu, 13 Feb 2014 18:50:08 UTC +00:00], ["date_kgr_registration", Tue, 30 Oct 1990], ["fact_adr", "426076, Удмуртская Республика, г.Ижевск, ул. Ленина, 30"], ["internal_code", 940000021], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mg==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC+0YHRg9GJ0LXRgdGC0LLQu9C10L3Q\n uNC1INCx0LDQvdC60L7QstGB0LrQuNGFINC+0L/QtdGA0LDRhtC40Lkg0YHQ\n viDRgdGA0LXQtNGB0YLQstCw0LzQuCDQsiDRgNGD0LHQu9GP0YUg0Lgg0LjQ\n vdC+0YHRgtGA0LDQvdC90L7QuSDQstCw0LvRjtGC0LUgKNCx0LXQtyDQv9GA\n 0LDQstCwINC/0YDQuNCy0LvQtdGH0LXQvdC40Y8g0LLQviDQstC60LvQsNC0\n 0Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB0YLQsiDRhNC40LfQuNGH\n 0LXRgdC60LjRhSDQu9C40YYp\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-10-31 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Ng==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB\n 0YLQsiDRhNC40LfQuNGH0LXRgdC60LjRhSDQu9C40YYg0LIg0YDRg9Cx0LvR\n j9GFINC4INC40L3QvtGB0YLRgNCw0L3QvdC+0Lkg0LLQsNC70Y7RgtC1\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-10-31 00:00:00.000000000 +04:00\n"], ["main_date_reg", Wed, 31 Jul 2002], ["main_reg_number", "1021800000090"], ["org_full_name", "Акционерный коммерческий банк \"Ижкомбанк\" (открытое акционерное общество)"], ["org_name", "ИЖКОМБАНК"], ["org_status", "норм."], ["phones", "91-91-00, 91-91-01"], ["reg_code", 54], ["reg_number", 646], ["ssv_date", Tue, 26 Oct 2004], ["updated_at", Thu, 13 Feb 2014 18:50:08 UTC +00:00], ["ust_money", 341615722], ["ustav_adr", "426076, Удмуртская Республика, г.Ижевск, ул. Ленина, 30"]]
65133
+  (0.5ms) commit transaction
65134
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000022 LIMIT 1
65135
+  (0.1ms) begin transaction
65136
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 18:50:09 UTC +00:00], ["date_kgr_registration", Wed, 31 Oct 1990], ["fact_adr", "426076, Удмуртская Республика, г. Ижевск, ул. Ленина, 44-a"], ["internal_code", 940000022], ["licences", "--- []\n"], ["main_date_reg", Thu, 17 Oct 2002], ["main_reg_number", "1021800001520"], ["org_full_name", "Общество с ограниченной ответственностью \"Коммерческий банк \"Первомайский\""], ["org_name", "ПЕРВОМАЙСКИЙ"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 652], ["updated_at", Thu, 13 Feb 2014 18:50:09 UTC +00:00], ["ust_money", 170650000], ["ustav_adr", "426076, Удмуртская Республика, г. Ижевск, ул. Ленина, 44-a"]]
65137
+  (0.5ms) commit transaction
65138
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000014 LIMIT 1
65139
+  (0.1ms) begin transaction
65140
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "049401869"], ["created_at", Thu, 13 Feb 2014 18:50:09 UTC +00:00], ["date_kgr_registration", Tue, 05 Oct 1993], ["fact_adr", "426008, Удмуртская Республика, г. Ижевск, ул. Пушкинская, 268"], ["internal_code", 940000014], ["licences", "--- []\n"], ["main_date_reg", Mon, 07 Oct 2002], ["main_reg_number", "1021800001190"], ["org_full_name", "Открытое акционерное общество \"УРАЛЬСКИЙ ТРАСТОВЫЙ БАНК\""], ["org_name", "УРАЛЬСКИЙ ТРАСТОВЫЙ БАНК"], ["org_status", "лицензия отозвана"], ["phones", "43-91-75, 51-02-44"], ["reg_code", 54], ["reg_number", 2523], ["ssv_date", Wed, 12 Jan 2005], ["updated_at", Thu, 13 Feb 2014 18:50:09 UTC +00:00], ["ust_money", 300000000], ["ustav_adr", "426008, Удмуртская Республика, г. Ижевск, ул. Пушкинская, 268"]]
65141
+  (0.5ms) commit transaction
65142
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000011 LIMIT 1
65143
+  (0.1ms) begin transaction
65144
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 18:50:09 UTC +00:00], ["date_kgr_registration", Thu, 04 Aug 1994], ["fact_adr", "426034, г. Ижевск, ул. Лихвинцева, 76"], ["internal_code", 940000011], ["licences", "--- []\n"], ["org_full_name", "ЗАКРЫТОЕ АКЦИОНЕРНОЕ ОБЩЕСТВО \"УДМУРТСКИЙ УНИВЕРСАЛЬНЫЙ КОММЕРЧЕСКИЙ БАНК\" (ЗАО \"УДМУРТУНИКОМБАНК\")"], ["org_name", "УДМУРТУНИКОМБАНК"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 3043], ["updated_at", Thu, 13 Feb 2014 18:50:09 UTC +00:00], ["ustav_adr", "426076, Удмуртская Республика, г.Ижевск, ул.Лихвинцева, 76"]]
65145
+  (0.5ms) commit transaction
65146
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000023 LIMIT 1
65147
+  (0.1ms) begin transaction
65148
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 18:50:09 UTC +00:00], ["date_kgr_registration", Fri, 11 Sep 1992], ["fact_adr", "426003, Удмуртская Республика, г.Ижевск, ул.К.Маркса,1"], ["internal_code", 940000023], ["licences", "--- []\n"], ["org_full_name", "Удмуртский народный коммерческий банк \"Азвесь\" (товарищество с ограниченной ответственностью)"], ["org_name", "АЗВЕСЬ"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2072], ["updated_at", Thu, 13 Feb 2014 18:50:09 UTC +00:00], ["ustav_adr", "426076, Удмуртская Республика, г.Ижевск, ул.Ленина, 29"]]
65149
+  (0.5ms) commit transaction
65150
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000024 LIMIT 1
65151
+  (0.1ms) begin transaction
65152
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 18:50:09 UTC +00:00], ["date_kgr_registration", Fri, 15 Jan 1993], ["fact_adr", "427410, Удмуртская Республика, г. Воткинск, ул. Ленина , 5"], ["internal_code", 940000024], ["licences", "--- []\n"], ["org_full_name", "Муниципальный коммерческий банк \"Воткинскинкомбанк\" (товарищество с ограниченной ответственностью)"], ["org_name", "ВОТКИНСКИНКОМБАНК"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2236], ["updated_at", Thu, 13 Feb 2014 18:50:09 UTC +00:00], ["ust_money", 600000], ["ustav_adr", "427410, Удмуртская ССР, г.Воткинск, ул.Ленина, 5"]]
65153
+  (0.5ms) commit transaction
65154
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000028 LIMIT 1
65155
+  (0.1ms) begin transaction
65156
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 18:50:09 UTC +00:00], ["date_kgr_registration", Thu, 12 Aug 1993], ["fact_adr", "426057, Удмуртская Республика, г.Ижевск, ул. Горького, 54"], ["internal_code", 940000028], ["licences", "--- []\n"], ["org_full_name", "Акционерный коммерческий банк \"Агрогражданстрой\""], ["org_name", "АГСБАНК"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2459], ["updated_at", Thu, 13 Feb 2014 18:50:09 UTC +00:00], ["ustav_adr", "426057, Удмуртская Республика, г.Ижевск, ул. Горького, 54"]]
65157
+  (0.5ms) commit transaction
65158
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000029 LIMIT 1
65159
+  (0.1ms) begin transaction
65160
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 18:50:09 UTC +00:00], ["date_kgr_registration", Mon, 17 Aug 1992], ["fact_adr", "426069, Удмуртская Республика, г. Ижевск, ул. Песочная, 9"], ["internal_code", 940000029], ["licences", "--- []\n"], ["org_full_name", "Коммерческий банк \"Аксион\""], ["org_name", "АКСИОН"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2007], ["updated_at", Thu, 13 Feb 2014 18:50:09 UTC +00:00], ["ustav_adr", "426069, Удмуртская Республика, г. Ижевск, ул. Песочная, 9"]]
65161
+  (0.5ms) commit transaction
65162
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000015 LIMIT 1
65163
+  (0.1ms) begin transaction
65164
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 18:50:09 UTC +00:00], ["date_kgr_registration", Fri, 10 Jun 1994], ["fact_adr", "427410, Удмуртская Республика, г. Воткинск, ул. Ленина , 5"], ["internal_code", 940000015], ["licences", "--- []\n"], ["org_full_name", "Коммерческий банк \"ИЖМАШБАНК\" (Товарищество с ограниченной ответственностью)"], ["org_name", "ИЖМАШБАНК"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2882], ["updated_at", Thu, 13 Feb 2014 18:50:09 UTC +00:00], ["ust_money", 6512000], ["ustav_adr", "426006, Удмуртская Республика, г.Ижевск, ул.Дерябина, 1"]]
65165
+  (0.5ms) commit transaction
65166
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000018 LIMIT 1
65167
+  (0.1ms) begin transaction
65168
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 18:50:09 UTC +00:00], ["date_kgr_registration", Fri, 08 Oct 1993], ["fact_adr", "426057, Удмуртская Республика, г. Ижевск, ул. Свободы, 173"], ["internal_code", 940000018], ["licences", "--- []\n"], ["org_full_name", "Ижевский коммерческий банк \"Почтовый\" - открытое акционерное общество"], ["org_name", "ПОЧТОВЫЙ"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2527], ["updated_at", Thu, 13 Feb 2014 18:50:09 UTC +00:00], ["ust_money", 7300000], ["ustav_adr", ", г.Ижевск, ул.Свободы, 173"]]
65169
+  (10.8ms) commit transaction
65170
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000031 LIMIT 1
65171
+  (0.1ms) begin transaction
65172
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 18:50:09 UTC +00:00], ["date_kgr_registration", Thu, 08 Jul 1993], ["fact_adr", "426011, Удмуртская Республика, г.Ижевск, ул.Пушкинская,373"], ["internal_code", 940000031], ["licences", "--- []\n"], ["org_full_name", "Акционерный банк \"Конверсия\" (открытое акционерное общество)"], ["org_name", "КОНВЕРСИЯ"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2413], ["updated_at", Thu, 13 Feb 2014 18:50:09 UTC +00:00], ["ust_money", 2315000], ["ustav_adr", "426000, Удмурдская Республика, г.Ижевск, ул.Пушкинская, 373"]]
65173
+  (0.5ms) commit transaction
65174
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000030 LIMIT 1
65175
+  (0.1ms) begin transaction
65176
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 18:50:10 UTC +00:00], ["date_kgr_registration", Thu, 04 Aug 1994], ["fact_adr", "426000, Удмуртская Республика, г.Ижевск, переулок Северный, 61"], ["internal_code", 940000030], ["licences", "--- []\n"], ["org_full_name", "акционерный коммерческий банк \"ЦЕНТ\" (акционерное общество закрытого типа)"], ["org_name", "ЦЕНТ"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 3020], ["updated_at", Thu, 13 Feb 2014 18:50:10 UTC +00:00], ["ustav_adr", "426000, Удмуртская Республика, г.Ижевск, переулок Северный, 61"]]
65177
+  (0.6ms) commit transaction
65178
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000025 LIMIT 1
65179
+  (0.1ms) begin transaction
65180
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 18:50:10 UTC +00:00], ["date_kgr_registration", Tue, 18 Aug 1992], ["fact_adr", "426033, Удмуртская Республика, г. Ижевск, ул.Береговая,11"], ["internal_code", 940000025], ["licences", "--- []\n"], ["org_full_name", "коммерческий банк \"ИГЕРМАН\""], ["org_name", "ИГЕРМАН"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2017], ["updated_at", Thu, 13 Feb 2014 18:50:10 UTC +00:00], ["ustav_adr", "426033, Удмуртская Республика, г. Ижевск, ул.Береговая,11"]]
65181
+  (0.5ms) commit transaction
65182
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000532 LIMIT 1
65183
+  (0.1ms) begin transaction
65184
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 18:50:10 UTC +00:00], ["date_kgr_registration", Wed, 28 Nov 1990], ["fact_adr", "Нет данных"], ["internal_code", 940000532], ["licences", "--- []\n"], ["org_full_name", "ШАРКАНСКИЙ КОММЕРЧЕСКИЙ БАНК"], ["org_name", "ШАРКАНСКИЙ"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 984], ["updated_at", Thu, 13 Feb 2014 18:50:10 UTC +00:00], ["ustav_adr", "427440, Удмуртская Республика, с.Шаркан, ул.Советская, 34"]]
65185
+  (0.5ms) commit transaction
65186
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000533 LIMIT 1
65187
+  (0.1ms) begin transaction
65188
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 18:50:10 UTC +00:00], ["date_kgr_registration", Thu, 27 Aug 1992], ["fact_adr", "Нет данных"], ["internal_code", 940000533], ["licences", "--- []\n"], ["org_full_name", "Коммерческий банк \"Соцкультбанк\""], ["org_name", "СОЦКУЛЬТБАНК"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2031], ["updated_at", Thu, 13 Feb 2014 18:50:10 UTC +00:00], ["ustav_adr", "426024, Удмуртская Республика, г.Ижевск, ул.Бородина, 21"]]
65189
+  (0.6ms) commit transaction
65190
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000534 LIMIT 1
65191
+  (0.1ms) begin transaction
65192
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 18:50:10 UTC +00:00], ["date_kgr_registration", Wed, 24 Oct 1990], ["fact_adr", "Нет данных"], ["internal_code", 940000534], ["licences", "--- []\n"], ["org_full_name", "Удмуртский сельскохозяйственный коммерческий банк\"Удмуртсельхозбанк\""], ["org_name", "УДМУРТСЕЛЬХОЗБАНК"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 569], ["updated_at", Thu, 13 Feb 2014 18:50:10 UTC +00:00], ["ustav_adr", "426058, Удмуртская Республика, г.Ижевск, ул.Красноармейская,д.159"]]
65193
+  (0.6ms) commit transaction
65194
+  (0.6ms) DELETE FROM "banks";
65195
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65196
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'banks';
65197
+  (0.0ms) begin transaction
65198
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 18:50:10 UTC +00:00], ["internal_code", 450000650], ["licences", "--- []\n"], ["org_name", "Bank in Database"], ["org_status", "лицензия отозвана"], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 18:50:10 UTC +00:00]]
65199
+  (0.4ms) commit transaction
65200
+  (0.0ms) begin transaction
65201
+ SQL (0.2ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 18:50:10 UTC +00:00], ["internal_code", 450000650], ["licences", "---\n- :l_code: '3'\n :lt: Лицензия 4\n :l_date: '2007-12-20T00:00:00+04:00'\n"], ["org_name", "Bank in Database"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 18:50:10 UTC +00:00]]
65202
+  (0.4ms) commit transaction
65203
+  (0.5ms) DELETE FROM "banks";
65204
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65205
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65206
+  (0.0ms) begin transaction
65207
+ SQL (0.2ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 18:50:10 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "Bank in Database"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 18:50:10 UTC +00:00]]
65208
+  (0.4ms) commit transaction
65209
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650 LIMIT 1
65210
+  (0.6ms) DELETE FROM "banks";
65211
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65212
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65213
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650 LIMIT 1
65214
+  (0.1ms) begin transaction
65215
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 18:50:10 UTC +00:00], ["date_kgr_registration", Tue, 12 May 1992], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["internal_code", 450000650], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 04 Oct 2002], ["main_reg_number", "1027700280937"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["phones", "(495)785-82-25"], ["reg_code", 16], ["reg_number", 316], ["ssv_date", Wed, 10 Nov 2004], ["updated_at", Thu, 13 Feb 2014 18:50:10 UTC +00:00], ["ust_money", 4173000000], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"]]
65216
+  (0.5ms) commit transaction
65217
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650 LIMIT 1
65218
+  (0.6ms) DELETE FROM "banks";
65219
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65220
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'banks';
65221
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000100 LIMIT 1
65222
+  (0.1ms) begin transaction
65223
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 18:50:11 UTC +00:00], ["date_kgr_registration", Thu, 10 Oct 1991], ["fact_adr", "125030, г. Москва, ул. Зои и Александра Космодемьянских, д.34, стр.6"], ["internal_code", 450000100], ["licences", "--- []\n"], ["org_full_name", "ЗАКРЫТОЕ АКЦИОНЕРНОЕ ОБЩЕСТВО КОММЕРЧЕСКИЙ БАНК \"МОСКОВСКИЙ МЕЖДУНАРОДНЫЙ ТОРГОВЫЙ БАНК\""], ["org_name", "МОСКОВСКИЙ МЕЖДУНАРОДНЫЙ ТОРГОВЫЙ БАНК"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 1584], ["updated_at", Thu, 13 Feb 2014 18:50:11 UTC +00:00], ["ust_money", 4000000], ["ustav_adr", "107076, г. Москва, Б.Матросский пер., д.1, к.1"]]
65224
+  (0.5ms) commit transaction
65225
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000226 LIMIT 1
65226
+  (0.1ms) begin transaction
65227
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585659"], ["created_at", Thu, 13 Feb 2014 18:50:11 UTC +00:00], ["date_kgr_registration", Wed, 05 Aug 1992], ["fact_adr", "107045, г. Москва, Луков переулок, д. 2, стр. 1"], ["internal_code", 450000226], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0Lgg0YDQsNC30LzQtdGJ0LXQvdC40LUg0LTR\n gNCw0LPQvtGG0LXQvdC90YvRhSDQvNC10YLQsNC70LvQvtCy\n attributes: {}\n :l_date: !ruby/object:DateTime 1999-08-18 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2013-01-21 00:00:00.000000000 +04:00\n"], ["main_date_reg", Mon, 18 Nov 2002], ["main_reg_number", "1027739555282"], ["org_full_name", "\"МОСКОВСКИЙ КРЕДИТНЫЙ БАНК\" (открытое акционерное общество)"], ["org_name", "МОСКОВСКИЙ КРЕДИТНЫЙ БАНК"], ["org_status", "норм."], ["phones", "(495)777-48-88"], ["reg_code", 16], ["reg_number", 1978], ["ssv_date", Tue, 30 Nov 2004], ["updated_at", Thu, 13 Feb 2014 18:50:11 UTC +00:00], ["ust_money", 14467761735], ["ustav_adr", "107045, г. Москва, Луков переулок, д. 2, стр. 1"]]
65228
+  (0.5ms) commit transaction
65229
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000573 LIMIT 1
65230
+  (0.1ms) begin transaction
65231
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585187"], ["created_at", Thu, 13 Feb 2014 18:50:11 UTC +00:00], ["date_kgr_registration", Wed, 16 Feb 1994], ["fact_adr", "127238, г. Москва, Ильменский проезд, д. 10, стр. 1"], ["internal_code", 450000573], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mg==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC+0YHRg9GJ0LXRgdGC0LLQu9C10L3Q\n uNC1INCx0LDQvdC60L7QstGB0LrQuNGFINC+0L/QtdGA0LDRhtC40Lkg0YHQ\n viDRgdGA0LXQtNGB0YLQstCw0LzQuCDQsiDRgNGD0LHQu9GP0YUg0Lgg0LjQ\n vdC+0YHRgtGA0LDQvdC90L7QuSDQstCw0LvRjtGC0LUgKNCx0LXQtyDQv9GA\n 0LDQstCwINC/0YDQuNCy0LvQtdGH0LXQvdC40Y8g0LLQviDQstC60LvQsNC0\n 0Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB0YLQsiDRhNC40LfQuNGH\n 0LXRgdC60LjRhSDQu9C40YYp\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-16 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Ng==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB\n 0YLQsiDRhNC40LfQuNGH0LXRgdC60LjRhSDQu9C40YYg0LIg0YDRg9Cx0LvR\n j9GFINC4INC40L3QvtGB0YLRgNCw0L3QvdC+0Lkg0LLQsNC70Y7RgtC1\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-16 00:00:00.000000000 +04:00\n"], ["main_date_reg", Wed, 30 Oct 2002], ["main_reg_number", "1027739481362"], ["org_full_name", "Акционерный Коммерческий Банк \"Московский Вексельный Банк\" (Закрытое Акционерное Общество)"], ["org_name", "МОСКОВСКИЙ ВЕКСЕЛЬНЫЙ БАНК"], ["org_status", "норм."], ["phones", "(495) 221-38-71"], ["reg_code", 16], ["reg_number", 2697], ["ssv_date", Thu, 17 Mar 2005], ["updated_at", Thu, 13 Feb 2014 18:50:11 UTC +00:00], ["ust_money", 227000000], ["ustav_adr", "127238, г. Москва, Ильменский проезд, д. 10, стр. 1"]]
65232
+  (0.5ms) commit transaction
65233
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 820000042 LIMIT 1
65234
+  (0.1ms) begin transaction
65235
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044525521"], ["created_at", Thu, 13 Feb 2014 18:50:11 UTC +00:00], ["date_kgr_registration", Thu, 09 Apr 1992], ["fact_adr", "107023, г. Москва, ул. Большая Семеновская, д. 32, стр. 1"], ["internal_code", 820000042], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-09-17 00:00:00.000000000 +04:00\n"], ["main_date_reg", Tue, 09 Feb 2010], ["main_reg_number", "1107711000022"], ["org_full_name", "Акционерный коммерческий банк МОСКОВСКИЙ ОБЛАСТНОЙ БАНК открытое акционерное общество"], ["org_name", "МОСКОВСКИЙ ОБЛАСТНОЙ БАНК"], ["org_status", "норм."], ["phones", "(495) 626-21-01"], ["reg_code", 16], ["reg_number", 1751], ["ssv_date", Wed, 31 Aug 2005], ["updated_at", Thu, 13 Feb 2014 18:50:11 UTC +00:00], ["ust_money", 3739141000], ["ustav_adr", "107023, г. Москва, ул. Большая Семеновская, д. 32, стр. 1"]]
65236
+  (0.6ms) commit transaction
65237
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000842 LIMIT 1
65238
+  (0.1ms) begin transaction
65239
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044579476"], ["created_at", Thu, 13 Feb 2014 18:50:11 UTC +00:00], ["date_kgr_registration", Mon, 05 Dec 1994], ["fact_adr", "119146, г. Москва, 1-я Фрунзенская ул., д.5"], ["internal_code", 450000842], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mg==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC+0YHRg9GJ0LXRgdGC0LLQu9C10L3Q\n uNC1INCx0LDQvdC60L7QstGB0LrQuNGFINC+0L/QtdGA0LDRhtC40Lkg0YHQ\n viDRgdGA0LXQtNGB0YLQstCw0LzQuCDQsiDRgNGD0LHQu9GP0YUg0Lgg0LjQ\n vdC+0YHRgtGA0LDQvdC90L7QuSDQstCw0LvRjtGC0LUgKNCx0LXQtyDQv9GA\n 0LDQstCwINC/0YDQuNCy0LvQtdGH0LXQvdC40Y8g0LLQviDQstC60LvQsNC0\n 0Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB0YLQsiDRhNC40LfQuNGH\n 0LXRgdC60LjRhSDQu9C40YYp\n attributes: {}\n :l_date: !ruby/object:DateTime 1999-10-26 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Ng==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB\n 0YLQsiDRhNC40LfQuNGH0LXRgdC60LjRhSDQu9C40YYg0LIg0YDRg9Cx0LvR\n j9GFINC4INC40L3QvtGB0YLRgNCw0L3QvdC+0Lkg0LLQsNC70Y7RgtC1\n attributes: {}\n :l_date: !ruby/object:DateTime 1999-10-26 00:00:00.000000000 +04:00\n"], ["main_date_reg", Thu, 19 Sep 2002], ["main_reg_number", "1027739223687"], ["org_full_name", "Открытое акционерное общество \"Московский Коммерческий Банк\""], ["org_name", "МОСКОВСКИЙ КОММЕРЧЕСКИЙ БАНК"], ["org_status", "норм."], ["phones", "(495) 609-19-19"], ["reg_code", 16], ["reg_number", 3172], ["ssv_date", Thu, 17 Mar 2005], ["updated_at", Thu, 13 Feb 2014 18:50:11 UTC +00:00], ["ust_money", 330000000], ["ustav_adr", "119146, г. Москва, 1-я Фрунзенская ул. д.5"]]
65240
+  (0.5ms) commit transaction
65241
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000053 LIMIT 1
65242
+  (0.1ms) begin transaction
65243
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044579629"], ["created_at", Thu, 13 Feb 2014 18:50:11 UTC +00:00], ["date_kgr_registration", Fri, 15 Mar 1991], ["fact_adr", "121069, г. Москва, ул. Большая Никитская, д.49"], ["internal_code", 450000053], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mg==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC+0YHRg9GJ0LXRgdGC0LLQu9C10L3Q\n uNC1INCx0LDQvdC60L7QstGB0LrQuNGFINC+0L/QtdGA0LDRhtC40Lkg0YHQ\n viDRgdGA0LXQtNGB0YLQstCw0LzQuCDQsiDRgNGD0LHQu9GP0YUg0Lgg0LjQ\n vdC+0YHRgtGA0LDQvdC90L7QuSDQstCw0LvRjtGC0LUgKNCx0LXQtyDQv9GA\n 0LDQstCwINC/0YDQuNCy0LvQtdGH0LXQvdC40Y8g0LLQviDQstC60LvQsNC0\n 0Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB0YLQsiDRhNC40LfQuNGH\n 0LXRgdC60LjRhSDQu9C40YYp\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-08-03 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Ng==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB\n 0YLQsiDRhNC40LfQuNGH0LXRgdC60LjRhSDQu9C40YYg0LIg0YDRg9Cx0LvR\n j9GFINC4INC40L3QvtGB0YLRgNCw0L3QvdC+0Lkg0LLQsNC70Y7RgtC1\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-08-03 00:00:00.000000000 +04:00\n"], ["main_date_reg", Tue, 08 Oct 2002], ["main_reg_number", "1027739337581"], ["org_full_name", "Открытое акционерное общество \"Московский Нефтехимический банк\""], ["org_name", "МОСКОВСКИЙ НЕФТЕХИМИЧЕСКИЙ БАНК"], ["org_status", "норм."], ["phones", "232-33-25"], ["reg_code", 16], ["reg_number", 1411], ["ssv_date", Wed, 02 Feb 2005], ["updated_at", Thu, 13 Feb 2014 18:50:11 UTC +00:00], ["ust_money", 105056100], ["ustav_adr", "121069, г. Москва, ул. Большая Никитская, д.49"]]
65244
+  (0.5ms) commit transaction
65245
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000741 LIMIT 1
65246
+  (0.1ms) begin transaction
65247
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044525600"], ["created_at", Thu, 13 Feb 2014 18:50:11 UTC +00:00], ["date_kgr_registration", Thu, 22 Nov 1990], ["fact_adr", "115419, г. Москва, ул.Орджоникидзе, д.5"], ["internal_code", 450000741], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0Lgg0YDQsNC30LzQtdGJ0LXQvdC40LUg0LTR\n gNCw0LPQvtGG0LXQvdC90YvRhSDQvNC10YLQsNC70LvQvtCy\n attributes: {}\n :l_date: !ruby/object:DateTime 2002-10-14 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2002-10-14 00:00:00.000000000 +04:00\n"], ["main_date_reg", Wed, 11 Sep 2002], ["main_reg_number", "1027739179160"], ["org_full_name", "акционерный коммерческий банк \"Московский Индустриальный банк\" (открытое акционерное общество)"], ["org_name", "МОСКОВСКИЙ ИНДУСТРИАЛЬНЫЙ БАНК"], ["org_status", "норм."], ["phones", "(495)740-00-74"], ["reg_code", 16], ["reg_number", 912], ["ssv_date", Wed, 29 Dec 2004], ["updated_at", Thu, 13 Feb 2014 18:50:11 UTC +00:00], ["ust_money", 1925002700], ["ustav_adr", "115419, г. Москва, ул.Орджоникидзе, д.5"]]
65248
+  (0.5ms) commit transaction
65249
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000039 LIMIT 1
65250
+  (0.1ms) begin transaction
65251
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 18:50:11 UTC +00:00], ["date_kgr_registration", Wed, 04 Mar 1992], ["fact_adr", "121019, г. Москва, ул.Ленивка, д.1"], ["internal_code", 450000039], ["licences", "--- []\n"], ["org_full_name", "МОСКОВСКИЙ ГОРОДСКОЙ КОММЕРЧЕСКИЙ БАНК ПРОМЫШЛЕННОСТИ СТРОИТЕЛЬНЫХ МАТЕРИАЛОВ"], ["org_name", "МОСКОВСКИЙ БАНК ПРОМСТРОЙМАТЕРИАЛОВ"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 133], ["updated_at", Thu, 13 Feb 2014 18:50:11 UTC +00:00], ["ust_money", 203000], ["ustav_adr", "119820, г.Москва, Кропоткинская наб., 45/1,почтовый - 121019,Москва, а/я 72"]]
65252
+  (0.5ms) commit transaction
65253
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 460000041 LIMIT 1
65254
+  (0.1ms) begin transaction
65255
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 18:50:12 UTC +00:00], ["date_kgr_registration", Tue, 23 Oct 1990], ["fact_adr", "142100, Московская обл.,г.Подольск, ул. Б. Серпуховская, д. 1"], ["internal_code", 460000041], ["licences", "--- []\n"], ["org_full_name", "Московский межрегиональный коммерческий банк (Общество с ограниченной ответственностью)"], ["org_name", "МОСКОВСКИЙ МЕЖРЕГИОНАЛЬНЫЙ КОМБАНК"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 553], ["updated_at", Thu, 13 Feb 2014 18:50:12 UTC +00:00], ["ust_money", 90352000], ["ustav_adr", ", г.Москва, Саймоновский пр., 7"]]
65256
+  (0.5ms) commit transaction
65257
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 460000036 LIMIT 1
65258
+  (0.1ms) begin transaction
65259
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044583098"], ["created_at", Thu, 13 Feb 2014 18:50:12 UTC +00:00], ["date_kgr_registration", Wed, 10 Aug 1994], ["fact_adr", "105318, г. Москва, ул. Ткацкая, д.15, стр.1"], ["internal_code", 460000036], ["licences", "--- []\n"], ["main_date_reg", Thu, 05 Sep 2002], ["main_reg_number", "1027739154596"], ["org_full_name", "Коммерческий банк \"Московский Капитал\" (общество с ограниченной ответственностью)"], ["org_name", "МОСКОВСКИЙ КАПИТАЛ"], ["org_status", "лицензия отозвана"], ["phones", "166-90-36, 369-20-34"], ["reg_code", 16], ["reg_number", 3044], ["ssv_date", Wed, 09 Feb 2005], ["updated_at", Thu, 13 Feb 2014 18:50:12 UTC +00:00], ["ust_money", 1415000000], ["ustav_adr", "105318, г. Москва, ул. Ткацкая, д.15, стр.1"]]
65260
+  (0.5ms) commit transaction
65261
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000022 LIMIT 1
65262
+  (0.1ms) begin transaction
65263
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 18:50:12 UTC +00:00], ["date_kgr_registration", Fri, 14 Dec 1990], ["fact_adr", "103482, г. Москва, Центральный проспект, д.1, комн.246"], ["internal_code", 450000022], ["licences", "--- []\n"], ["org_full_name", "Московский коммерческий банк ипотечного кредита"], ["org_name", "МОСКОВСКИЙ БАНК ИПОТЕЧНОГО КРЕДИТА"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 1190], ["updated_at", Thu, 13 Feb 2014 18:50:12 UTC +00:00], ["ust_money", 20000], ["ustav_adr", "103482, г. Москва, Центральный проспект, д.1, комн.246"]]
65264
+  (0.5ms) commit transaction
65265
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000336 LIMIT 1
65266
+  (0.1ms) begin transaction
65267
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 18:50:12 UTC +00:00], ["date_kgr_registration", Fri, 29 Jan 1993], ["fact_adr", "107815, г. Москва, ул.Маши Порываевой, д.7"], ["internal_code", 450000336], ["licences", "--- []\n"], ["org_full_name", "АКЦИОНЕРНЫЙ КОММЕРЧЕСКИЙ БАНК \"МОСКОВСКИЙ НАЦИОНАЛЬНЫЙ БАНК\" (ЗАКРЫТОЕ АКЦИОНЕРНОЕ ОБЩЕСТВО) АКБ \"МОСНАЦБАНК\""], ["org_name", "МОСКОВСКИЙ НАЦИОНАЛЬНЫЙ БАНК"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 2255], ["updated_at", Thu, 13 Feb 2014 18:50:12 UTC +00:00], ["ustav_adr", "107815, г. Москва, ул.Маши Порываевой, д.7"]]
65268
+  (0.5ms) commit transaction
65269
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450001087 LIMIT 1
65270
+  (0.1ms) begin transaction
65271
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 18:50:12 UTC +00:00], ["date_kgr_registration", Fri, 10 Feb 1995], ["fact_adr", "103031, г. Москва, ул.Кузнецкий мост, д.19, офис 40"], ["internal_code", 450001087], ["licences", "--- []\n"], ["org_full_name", "КОММЕРЧЕСКИЙ БАНК \"МОСКОВСКИЙ БАНК РАЗВИТИЯ\" /Общество с ограниченной ответственностью/"], ["org_name", "МОСКОВСКИЙ БАНК РАЗВИТИЯ"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 3217], ["updated_at", Thu, 13 Feb 2014 18:50:12 UTC +00:00], ["ustav_adr", "125252, г. Москва, ул.Зорге, д.12"]]
65272
+  (0.5ms) commit transaction
65273
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000718 LIMIT 1
65274
+  (0.1ms) begin transaction
65275
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044583133"], ["created_at", Thu, 13 Feb 2014 18:50:12 UTC +00:00], ["date_kgr_registration", Tue, 30 Jun 1992], ["fact_adr", "123557, г. Москва, Электрический пер., д.3/10, стр.1"], ["internal_code", 450000718], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n MjQ4\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n dW5rbm93bg==\n attributes: {}\n :l_date: !ruby/object:DateTime 2013-03-12 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 26 Jul 2002], ["main_reg_number", "1027739020726"], ["org_full_name", "НЕБАНКОВСКАЯ КРЕДИТНАЯ ОРГАНИЗАЦИЯ \"МОСКОВСКИЙ КЛИРИНГОВЫЙ ЦЕНТР\" (ОТКРЫТОЕ АКЦИОНЕРНОЕ ОБЩЕСТВО)"], ["org_name", "МОСКОВСКИЙ КЛИРИНГОВЫЙ ЦЕНТР"], ["org_status", "норм."], ["phones", "(495)662-15-00"], ["reg_code", 16], ["reg_number", 3314], ["updated_at", Thu, 13 Feb 2014 18:50:12 UTC +00:00], ["ust_money", 8097000], ["ustav_adr", "123557, г. Москва, Электрический пер., д.3/10, стр.1"]]
65276
+  (0.5ms) commit transaction
65277
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000873 LIMIT 1
65278
+  (0.1ms) begin transaction
65279
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 18:50:12 UTC +00:00], ["date_kgr_registration", Mon, 05 Sep 1994], ["fact_adr", "129090, г. Москва, Проспект Мира, д.7, стр.3"], ["internal_code", 450000873], ["licences", "--- []\n"], ["main_date_reg", Tue, 28 Jan 2003], ["main_reg_number", "1037700079702"], ["org_full_name", "КОММЕРЧЕСКИЙ БАНК \"СИБИРСКО-МОСКОВСКИЙ КОММЕРЧЕСКИЙ БАНК\" (общество с ограниченной ответственностью)"], ["org_name", "СИБИРСКО-МОСКОВСКИЙ КОММЕРЧЕСКИЙ БАНК"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 3069], ["ssv_date", Thu, 17 Mar 2005], ["updated_at", Thu, 13 Feb 2014 18:50:12 UTC +00:00], ["ust_money", 35000000], ["ustav_adr", "117420, г.Москва, ул.Н.Черемушкинская, 62 к.3"]]
65280
+  (0.5ms) commit transaction
65281
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000962 LIMIT 1
65282
+  (0.1ms) begin transaction
65283
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044579852"], ["created_at", Thu, 13 Feb 2014 18:50:12 UTC +00:00], ["date_kgr_registration", Mon, 27 Jun 1994], ["fact_adr", "123100, г. Москва, Краснопресненская набережная, д.2/1, стр.1"], ["internal_code", 450000962], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mg==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC+0YHRg9GJ0LXRgdGC0LLQu9C10L3Q\n uNC1INCx0LDQvdC60L7QstGB0LrQuNGFINC+0L/QtdGA0LDRhtC40Lkg0YHQ\n viDRgdGA0LXQtNGB0YLQstCw0LzQuCDQsiDRgNGD0LHQu9GP0YUg0Lgg0LjQ\n vdC+0YHRgtGA0LDQvdC90L7QuSDQstCw0LvRjtGC0LUgKNCx0LXQtyDQv9GA\n 0LDQstCwINC/0YDQuNCy0LvQtdGH0LXQvdC40Y8g0LLQviDQstC60LvQsNC0\n 0Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB0YLQsiDRhNC40LfQuNGH\n 0LXRgdC60LjRhSDQu9C40YYp\n attributes: {}\n :l_date: !ruby/object:DateTime 1998-10-20 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0Lgg0YDQsNC30LzQtdGJ0LXQvdC40LUg0LTR\n gNCw0LPQvtGG0LXQvdC90YvRhSDQvNC10YLQsNC70LvQvtCy\n attributes: {}\n :l_date: !ruby/object:DateTime 1999-10-15 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Ng==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB\n 0YLQsiDRhNC40LfQuNGH0LXRgdC60LjRhSDQu9C40YYg0LIg0YDRg9Cx0LvR\n j9GFINC4INC40L3QvtGB0YLRgNCw0L3QvdC+0Lkg0LLQsNC70Y7RgtC1\n attributes: {}\n :l_date: !ruby/object:DateTime 1998-10-20 00:00:00.000000000 +04:00\n"], ["main_date_reg", Wed, 14 Aug 2002], ["main_reg_number", "1027700128796"], ["org_full_name", "Коммерческий Банк \"Новый Московский Банк\" (Общество с ограниченной ответственностью)"], ["org_name", "НОВЫЙ МОСКОВСКИЙ БАНК"], ["org_status", "норм."], ["phones", "(495) 605-32-53, (495) 605-32-89, (495) 605-78-45"], ["reg_code", 16], ["reg_number", 2932], ["ssv_date", Wed, 02 Feb 2005], ["updated_at", Thu, 13 Feb 2014 18:50:12 UTC +00:00], ["ust_money", 237000000], ["ustav_adr", "123100, г. Москва, Краснопресненская набережная, д.2/1, стр.1"]]
65284
+  (0.5ms) commit transaction
65285
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000014 LIMIT 1
65286
+  (0.1ms) begin transaction
65287
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 18:50:12 UTC +00:00], ["date_kgr_registration", Wed, 05 Dec 1990], ["fact_adr", "0, г. Москва, Новоарбатский проспект, д.23"], ["internal_code", 450000014], ["licences", "--- []\n"], ["org_full_name", "АКЦИОНЕРНЫЙ БАНК РАЗВИТИЯ НАРОДНОГО ХОЗЯЙСТВА \"МОСКОВСКИЙ КРЕДИТ\" (АКЦИОНЕРНОЕ ОБЩЕСТВО ЗАКРЫТОГО ТИПА) - БАНК \"МОСКОВСКИЙ КРЕДИТ\""], ["org_name", "МОСКОВСКИЙ КРЕДИТ"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 1101], ["updated_at", Thu, 13 Feb 2014 18:50:12 UTC +00:00], ["ustav_adr", "117049, г. Москва, Ленинский проспект, д.6"]]
65288
+  (0.5ms) commit transaction
65289
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000284 LIMIT 1
65290
+  (0.1ms) begin transaction
65291
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 18:50:13 UTC +00:00], ["date_kgr_registration", Fri, 30 Oct 1992], ["fact_adr", "129110, г. Москва, ул.Щепкина, д.61/2"], ["internal_code", 450000284], ["licences", "--- []\n"], ["org_full_name", "Коммерческий банк \"МОСКОВСКИЙ ГОРОДСКОЙ БАНК\" акционерное общество закрытого типа"], ["org_name", "МОСКОВСКИЙ ГОРОДСКОЙ БАНК"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 2144], ["updated_at", Thu, 13 Feb 2014 18:50:13 UTC +00:00], ["ustav_adr", "111402, г. Москва, ул.Кетчерская, д.16"]]
65292
+  (0.5ms) commit transaction
65293
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450001014 LIMIT 1
65294
+  (0.1ms) begin transaction
65295
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 18:50:13 UTC +00:00], ["date_kgr_registration", Tue, 18 Apr 1995], ["fact_adr", "129348, г. Москва, Ярославское шоссе, д.13, корп.2"], ["internal_code", 450001014], ["licences", "--- []\n"], ["org_full_name", "коммерческий банк \"МОСКОВСКИЙ ИННОВАЦИОННЫЙ БАНК\" (общество с ограниченной ответственностью)"], ["org_name", "МОСКОВСКИЙ ИННОВАЦИОННЫЙ БАНК"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 3249], ["updated_at", Thu, 13 Feb 2014 18:50:13 UTC +00:00], ["ust_money", 100000], ["ustav_adr", "103101, г. Москва, ул.Садовая-Кудринская, д.24/27, стр.1"]]
65296
+  (0.5ms) commit transaction
65297
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000281 LIMIT 1
65298
+  (0.1ms) begin transaction
65299
+ SQL (0.8ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 18:50:13 UTC +00:00], ["date_kgr_registration", Wed, 04 Nov 1992], ["fact_adr", "107078, г. Москва, ул.Новая Басманная, д.14, стр.1"], ["internal_code", 450000281], ["licences", "--- []\n"], ["org_full_name", "Коммерческий Банк \"Московский Трастовый Банк\""], ["org_name", "МОСКОВСКИЙ ТРАСТОВЫЙ БАНК"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 2141], ["updated_at", Thu, 13 Feb 2014 18:50:13 UTC +00:00], ["ust_money", 8000000], ["ustav_adr", "107078, г. Москва, ул.Новая Басманная, д.14, стр.1"]]
65300
+  (3.6ms) commit transaction
65301
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000468 LIMIT 1
65302
+  (0.1ms) begin transaction
65303
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 18:50:13 UTC +00:00], ["date_kgr_registration", Tue, 21 Sep 1993], ["fact_adr", "117198, г. Москва, ул.Миклухо-Маклая, д.11а"], ["internal_code", 450000468], ["licences", "--- []\n"], ["org_full_name", "Коммерческий банк \"Московский\" товарищество с ограниченной ответственностью"], ["org_name", "МОСКОВСКИЙ"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 2502], ["updated_at", Thu, 13 Feb 2014 18:50:13 UTC +00:00], ["ust_money", 14500000], ["ustav_adr", "117198, г.Москва, ул.Миклухо-Маклая, 11"]]
65304
+  (0.5ms) commit transaction
65305
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450039307 LIMIT 1
65306
+  (0.1ms) begin transaction
65307
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 18:50:13 UTC +00:00], ["date_kgr_registration", Mon, 27 Dec 1993], ["fact_adr", "Нет данных"], ["internal_code", 450039307], ["licences", "--- []\n"], ["org_full_name", "Коммерческий банк \"Московский объединенный банк\" (товарищество с ограниченной ответственностью)"], ["org_name", "МОСКОВСКИЙ ОБЪЕДИНЕННЫЙ БАНК"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 2634], ["updated_at", Thu, 13 Feb 2014 18:50:13 UTC +00:00], ["ustav_adr", "107005, г.Москва, Плетешковский пер.. 22"]]
65308
+  (0.5ms) commit transaction
65309
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 460001027 LIMIT 1
65310
+  (0.1ms) begin transaction
65311
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 18:50:13 UTC +00:00], ["date_kgr_registration", Mon, 17 Aug 1992], ["fact_adr", "Нет данных"], ["internal_code", 460001027], ["licences", "--- []\n"], ["org_full_name", "Акционерный коммерческий банк \"Московский купеческий банк\""], ["org_name", "МОСКОВСКИЙ КУПЕЧЕСКИЙ БАНК"], ["org_status", "ликвидирована"], ["reg_code", 17], ["reg_number", 2019], ["updated_at", Thu, 13 Feb 2014 18:50:13 UTC +00:00], ["ustav_adr", "103012, г.Москва, ул.Варварка, 8"]]
65312
+  (0.5ms) commit transaction
65313
+  (0.5ms) DELETE FROM "banks";
65314
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65315
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65316
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
65317
+  (0.6ms) DELETE FROM "banks";
65318
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65319
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'banks';
65320
+  (0.1ms) begin transaction
65321
+ SQL (2.4ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:19:04 UTC +00:00], ["internal_code", 450000650], ["licences", "---\n- :l_code: '3'\n :lt: Лицензия 2\n :l_date: '2007-12-20T00:00:00+04:00'\n- :l_code: '7'\n :lt: Лицензия 3\n :l_date: '2012-03-23T00:00:00+04:00'\n"], ["org_name", "Bank in Database"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 19:19:04 UTC +00:00]]
65322
+  (0.4ms) commit transaction
65323
+  (0.5ms) DELETE FROM "banks";
65324
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65325
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'banks';
65326
+  (0.0ms) begin transaction
65327
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:19:04 UTC +00:00], ["internal_code", 450000650], ["licences", "---\n- :l_code: '7'\n :lt: Лицензия 1\n :l_date: '2012-09-10T00:00:00+04:00'\n"], ["org_name", "Bank in Database"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 19:19:04 UTC +00:00]]
65328
+  (0.4ms) commit transaction
65329
+  (0.5ms) DELETE FROM "banks";
65330
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65331
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65332
+  (0.0ms) begin transaction
65333
+ SQL (0.2ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:19:04 UTC +00:00], ["internal_code", 450000650], ["licences", "--- []\n"], ["org_name", "Bank in Database"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 19:19:04 UTC +00:00]]
65334
+  (0.4ms) commit transaction
65335
+  (0.5ms) DELETE FROM "banks";
65336
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65337
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'banks';
65338
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000003 LIMIT 1
65339
+  (0.1ms) begin transaction
65340
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "049401814"], ["created_at", Thu, 13 Feb 2014 19:19:04 UTC +00:00], ["date_kgr_registration", Thu, 02 Apr 1992], ["fact_adr", "426008, Удмуртская Республика, г.Ижевск, ул.Пушкинская,268"], ["internal_code", 940000003], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mg==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC+0YHRg9GJ0LXRgdGC0LLQu9C10L3Q\n uNC1INCx0LDQvdC60L7QstGB0LrQuNGFINC+0L/QtdGA0LDRhtC40Lkg0YHQ\n viDRgdGA0LXQtNGB0YLQstCw0LzQuCDQsiDRgNGD0LHQu9GP0YUg0Lgg0LjQ\n vdC+0YHRgtGA0LDQvdC90L7QuSDQstCw0LvRjtGC0LUgKNCx0LXQtyDQv9GA\n 0LDQstCwINC/0YDQuNCy0LvQtdGH0LXQvdC40Y8g0LLQviDQstC60LvQsNC0\n 0Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB0YLQsiDRhNC40LfQuNGH\n 0LXRgdC60LjRhSDQu9C40YYp\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-12-13 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Ng==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB\n 0YLQsiDRhNC40LfQuNGH0LXRgdC60LjRhSDQu9C40YYg0LIg0YDRg9Cx0LvR\n j9GFINC4INC40L3QvtGB0YLRgNCw0L3QvdC+0Lkg0LLQsNC70Y7RgtC1\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-09-13 00:00:00.000000000 +04:00\n"], ["main_date_reg", Tue, 15 Oct 2002], ["main_reg_number", "1021800001508"], ["org_full_name", "Открытое акционерное общество \"БыстроБанк\""], ["org_name", "БЫСТРОБАНК"], ["org_status", "норм."], ["phones", "90-80-70, 90-80-90"], ["reg_code", 54], ["reg_number", 1745], ["ssv_date", Wed, 12 Jan 2005], ["updated_at", Thu, 13 Feb 2014 19:19:04 UTC +00:00], ["ust_money", 397121982], ["ustav_adr", "426008, Удмуртская Республика, г.Ижевск, ул.Пушкинская,268"]]
65341
+  (0.5ms) commit transaction
65342
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000013 LIMIT 1
65343
+  (0.1ms) begin transaction
65344
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:19:04 UTC +00:00], ["date_kgr_registration", Wed, 24 Oct 1990], ["fact_adr", "426057, Удмуртская Республика, г. Ижевск, ул.Красноармейская,182-а"], ["internal_code", 940000013], ["licences", "--- []\n"], ["main_date_reg", Wed, 06 Nov 2002], ["main_reg_number", "1021800002366"], ["org_full_name", "Открытое акционерное общество \"Евроазиатский банк экономического развития\""], ["org_name", "ЕВРАЗИЯ"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 573], ["ssv_date", Tue, 02 Nov 2004], ["updated_at", Thu, 13 Feb 2014 19:19:04 UTC +00:00], ["ust_money", 102403774], ["ustav_adr", "426057, Удмуртская Республика, г. Ижевск, ул.Красноармейская,182-а"]]
65345
+  (0.5ms) commit transaction
65346
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000012 LIMIT 1
65347
+  (0.1ms) begin transaction
65348
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "049401846"], ["created_at", Thu, 13 Feb 2014 19:19:04 UTC +00:00], ["date_kgr_registration", Wed, 15 Apr 1992], ["fact_adr", "426008, Удмуртская Республика, г.Ижевск, ул.Пушкинская, д.268"], ["internal_code", 940000012], ["licences", "--- []\n"], ["main_date_reg", Wed, 09 Oct 2002], ["main_reg_number", "1021800001310"], ["org_full_name", "Удмуртский Пенсионный банк (Открытое акционерное общество)"], ["org_name", "УДМУРТСКИЙ ПЕНСИОННЫЙ БАНК"], ["org_status", "лицензия отозвана"], ["phones", "(3412) 51-02-44"], ["reg_code", 54], ["reg_number", 1764], ["ssv_date", Tue, 07 Dec 2004], ["updated_at", Thu, 13 Feb 2014 19:19:04 UTC +00:00], ["ust_money", 80000000], ["ustav_adr", "426065, Удмуртская Республика, г.Ижевск, ул.Петрова,39а"]]
65349
+  (0.4ms) commit transaction
65350
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000016 LIMIT 1
65351
+  (0.1ms) begin transaction
65352
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:19:04 UTC +00:00], ["date_kgr_registration", Fri, 23 Nov 1990], ["fact_adr", "427790, Удмуртская Республика, г.Можга, ул.Можгинская,62"], ["internal_code", 940000016], ["licences", "--- []\n"], ["main_date_reg", Thu, 24 Oct 2002], ["main_reg_number", "1021800001850"], ["org_full_name", "Общество с ограниченной ответственностью \"Удмуртский промышленно-строительный банк\""], ["org_name", "УДМУРТПРОМСТРОЙБАНК"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 928], ["updated_at", Thu, 13 Feb 2014 19:19:04 UTC +00:00], ["ust_money", 130000000], ["ustav_adr", "427790, Удмуртская Республика, г.Можга, ул.Можгинская,62"]]
65353
+  (0.5ms) commit transaction
65354
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000020 LIMIT 1
65355
+  (0.1ms) begin transaction
65356
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:19:04 UTC +00:00], ["date_kgr_registration", Tue, 17 Mar 1992], ["fact_adr", "426000, Удмуртская Республика, г.Ижевск, переулок Северный, 61"], ["internal_code", 940000020], ["licences", "--- []\n"], ["main_date_reg", Tue, 12 Nov 2002], ["main_reg_number", "1021800002400"], ["org_full_name", "закрытое акционерное общество \"Коммерческий банк \"С-БАНК\""], ["org_name", "С-БАНК"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 1857], ["ssv_date", Wed, 26 Jan 2005], ["updated_at", Thu, 13 Feb 2014 19:19:04 UTC +00:00], ["ust_money", 14329428], ["ustav_adr", "426000, Удмуртская Республика, г.Ижевск, ул.Пушкинская, 278"]]
65357
+  (0.4ms) commit transaction
65358
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000017 LIMIT 1
65359
+  (0.1ms) begin transaction
65360
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "049401863"], ["created_at", Thu, 13 Feb 2014 19:19:05 UTC +00:00], ["date_kgr_registration", Tue, 03 Aug 1993], ["fact_adr", "426008, Удмуртская Республика, г.Ижевск, ул.Пушкинская, д.268"], ["internal_code", 940000017], ["licences", "--- []\n"], ["main_date_reg", Wed, 11 Sep 2002], ["main_reg_number", "1021800000551"], ["org_full_name", "Акционерный коммерческий Удмуртский инвестиционно-строительный банк (открытое акционерное общество)"], ["org_name", "УДМУРТИНВЕСТСТРОЙБАНК"], ["org_status", "лицензия отозвана"], ["phones", "8(3412)51-02-44"], ["reg_code", 54], ["reg_number", 2447], ["ssv_date", Wed, 22 Dec 2004], ["updated_at", Thu, 13 Feb 2014 19:19:05 UTC +00:00], ["ust_money", 8880000], ["ustav_adr", "426008, Удмуртская Республика, г.Ижевск, ул.Пушкинская, д.268"]]
65361
+  (0.8ms) commit transaction
65362
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000019 LIMIT 1
65363
+  (0.1ms) begin transaction
65364
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "049401825"], ["created_at", Thu, 13 Feb 2014 19:19:05 UTC +00:00], ["date_kgr_registration", Fri, 19 Oct 1990], ["fact_adr", "426008, Удмуртская Республика, г.Ижевск, ул.Пушкинская, д. 268"], ["internal_code", 940000019], ["licences", "--- []\n"], ["main_date_reg", Wed, 21 Aug 2002], ["main_reg_number", "1021800000177"], ["org_full_name", "Открытое акционерное общество \"Мобилбанк\""], ["org_name", "МОБИЛБАНК"], ["org_status", "лицензия отозвана"], ["phones", "8(3412) 510-244, 8(3412) 908-911"], ["reg_code", 54], ["reg_number", 532], ["ssv_date", Wed, 12 Jan 2005], ["updated_at", Thu, 13 Feb 2014 19:19:05 UTC +00:00], ["ust_money", 176668000], ["ustav_adr", "426000, Удмуртская Республика, г.Ижевск, ул.Свободы, 173"]]
65365
+  (0.5ms) commit transaction
65366
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000021 LIMIT 1
65367
+  (0.1ms) begin transaction
65368
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "049401871"], ["created_at", Thu, 13 Feb 2014 19:19:05 UTC +00:00], ["date_kgr_registration", Tue, 30 Oct 1990], ["fact_adr", "426076, Удмуртская Республика, г.Ижевск, ул. Ленина, 30"], ["internal_code", 940000021], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mg==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC+0YHRg9GJ0LXRgdGC0LLQu9C10L3Q\n uNC1INCx0LDQvdC60L7QstGB0LrQuNGFINC+0L/QtdGA0LDRhtC40Lkg0YHQ\n viDRgdGA0LXQtNGB0YLQstCw0LzQuCDQsiDRgNGD0LHQu9GP0YUg0Lgg0LjQ\n vdC+0YHRgtGA0LDQvdC90L7QuSDQstCw0LvRjtGC0LUgKNCx0LXQtyDQv9GA\n 0LDQstCwINC/0YDQuNCy0LvQtdGH0LXQvdC40Y8g0LLQviDQstC60LvQsNC0\n 0Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB0YLQsiDRhNC40LfQuNGH\n 0LXRgdC60LjRhSDQu9C40YYp\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-10-31 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Ng==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB\n 0YLQsiDRhNC40LfQuNGH0LXRgdC60LjRhSDQu9C40YYg0LIg0YDRg9Cx0LvR\n j9GFINC4INC40L3QvtGB0YLRgNCw0L3QvdC+0Lkg0LLQsNC70Y7RgtC1\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-10-31 00:00:00.000000000 +04:00\n"], ["main_date_reg", Wed, 31 Jul 2002], ["main_reg_number", "1021800000090"], ["org_full_name", "Акционерный коммерческий банк \"Ижкомбанк\" (открытое акционерное общество)"], ["org_name", "ИЖКОМБАНК"], ["org_status", "норм."], ["phones", "91-91-00, 91-91-01"], ["reg_code", 54], ["reg_number", 646], ["ssv_date", Tue, 26 Oct 2004], ["updated_at", Thu, 13 Feb 2014 19:19:05 UTC +00:00], ["ust_money", 341615722], ["ustav_adr", "426076, Удмуртская Республика, г.Ижевск, ул. Ленина, 30"]]
65369
+  (0.5ms) commit transaction
65370
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000022 LIMIT 1
65371
+  (0.1ms) begin transaction
65372
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:19:05 UTC +00:00], ["date_kgr_registration", Wed, 31 Oct 1990], ["fact_adr", "426076, Удмуртская Республика, г. Ижевск, ул. Ленина, 44-a"], ["internal_code", 940000022], ["licences", "--- []\n"], ["main_date_reg", Thu, 17 Oct 2002], ["main_reg_number", "1021800001520"], ["org_full_name", "Общество с ограниченной ответственностью \"Коммерческий банк \"Первомайский\""], ["org_name", "ПЕРВОМАЙСКИЙ"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 652], ["updated_at", Thu, 13 Feb 2014 19:19:05 UTC +00:00], ["ust_money", 170650000], ["ustav_adr", "426076, Удмуртская Республика, г. Ижевск, ул. Ленина, 44-a"]]
65373
+  (0.5ms) commit transaction
65374
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000014 LIMIT 1
65375
+  (0.1ms) begin transaction
65376
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "049401869"], ["created_at", Thu, 13 Feb 2014 19:19:05 UTC +00:00], ["date_kgr_registration", Tue, 05 Oct 1993], ["fact_adr", "426008, Удмуртская Республика, г. Ижевск, ул. Пушкинская, 268"], ["internal_code", 940000014], ["licences", "--- []\n"], ["main_date_reg", Mon, 07 Oct 2002], ["main_reg_number", "1021800001190"], ["org_full_name", "Открытое акционерное общество \"УРАЛЬСКИЙ ТРАСТОВЫЙ БАНК\""], ["org_name", "УРАЛЬСКИЙ ТРАСТОВЫЙ БАНК"], ["org_status", "лицензия отозвана"], ["phones", "43-91-75, 51-02-44"], ["reg_code", 54], ["reg_number", 2523], ["ssv_date", Wed, 12 Jan 2005], ["updated_at", Thu, 13 Feb 2014 19:19:05 UTC +00:00], ["ust_money", 300000000], ["ustav_adr", "426008, Удмуртская Республика, г. Ижевск, ул. Пушкинская, 268"]]
65377
+  (0.5ms) commit transaction
65378
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000011 LIMIT 1
65379
+  (0.1ms) begin transaction
65380
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:19:05 UTC +00:00], ["date_kgr_registration", Thu, 04 Aug 1994], ["fact_adr", "426034, г. Ижевск, ул. Лихвинцева, 76"], ["internal_code", 940000011], ["licences", "--- []\n"], ["org_full_name", "ЗАКРЫТОЕ АКЦИОНЕРНОЕ ОБЩЕСТВО \"УДМУРТСКИЙ УНИВЕРСАЛЬНЫЙ КОММЕРЧЕСКИЙ БАНК\" (ЗАО \"УДМУРТУНИКОМБАНК\")"], ["org_name", "УДМУРТУНИКОМБАНК"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 3043], ["updated_at", Thu, 13 Feb 2014 19:19:05 UTC +00:00], ["ustav_adr", "426076, Удмуртская Республика, г.Ижевск, ул.Лихвинцева, 76"]]
65381
+  (0.5ms) commit transaction
65382
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000023 LIMIT 1
65383
+  (0.1ms) begin transaction
65384
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:19:05 UTC +00:00], ["date_kgr_registration", Fri, 11 Sep 1992], ["fact_adr", "426003, Удмуртская Республика, г.Ижевск, ул.К.Маркса,1"], ["internal_code", 940000023], ["licences", "--- []\n"], ["org_full_name", "Удмуртский народный коммерческий банк \"Азвесь\" (товарищество с ограниченной ответственностью)"], ["org_name", "АЗВЕСЬ"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2072], ["updated_at", Thu, 13 Feb 2014 19:19:05 UTC +00:00], ["ustav_adr", "426076, Удмуртская Республика, г.Ижевск, ул.Ленина, 29"]]
65385
+  (0.5ms) commit transaction
65386
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000024 LIMIT 1
65387
+  (0.1ms) begin transaction
65388
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:19:05 UTC +00:00], ["date_kgr_registration", Fri, 15 Jan 1993], ["fact_adr", "427410, Удмуртская Республика, г. Воткинск, ул. Ленина , 5"], ["internal_code", 940000024], ["licences", "--- []\n"], ["org_full_name", "Муниципальный коммерческий банк \"Воткинскинкомбанк\" (товарищество с ограниченной ответственностью)"], ["org_name", "ВОТКИНСКИНКОМБАНК"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2236], ["updated_at", Thu, 13 Feb 2014 19:19:05 UTC +00:00], ["ust_money", 600000], ["ustav_adr", "427410, Удмуртская ССР, г.Воткинск, ул.Ленина, 5"]]
65389
+  (0.5ms) commit transaction
65390
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000028 LIMIT 1
65391
+  (0.1ms) begin transaction
65392
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:19:05 UTC +00:00], ["date_kgr_registration", Thu, 12 Aug 1993], ["fact_adr", "426057, Удмуртская Республика, г.Ижевск, ул. Горького, 54"], ["internal_code", 940000028], ["licences", "--- []\n"], ["org_full_name", "Акционерный коммерческий банк \"Агрогражданстрой\""], ["org_name", "АГСБАНК"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2459], ["updated_at", Thu, 13 Feb 2014 19:19:05 UTC +00:00], ["ustav_adr", "426057, Удмуртская Республика, г.Ижевск, ул. Горького, 54"]]
65393
+  (0.5ms) commit transaction
65394
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000029 LIMIT 1
65395
+  (0.1ms) begin transaction
65396
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:19:06 UTC +00:00], ["date_kgr_registration", Mon, 17 Aug 1992], ["fact_adr", "426069, Удмуртская Республика, г. Ижевск, ул. Песочная, 9"], ["internal_code", 940000029], ["licences", "--- []\n"], ["org_full_name", "Коммерческий банк \"Аксион\""], ["org_name", "АКСИОН"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2007], ["updated_at", Thu, 13 Feb 2014 19:19:06 UTC +00:00], ["ustav_adr", "426069, Удмуртская Республика, г. Ижевск, ул. Песочная, 9"]]
65397
+  (0.5ms) commit transaction
65398
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000015 LIMIT 1
65399
+  (0.1ms) begin transaction
65400
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:19:06 UTC +00:00], ["date_kgr_registration", Fri, 10 Jun 1994], ["fact_adr", "427410, Удмуртская Республика, г. Воткинск, ул. Ленина , 5"], ["internal_code", 940000015], ["licences", "--- []\n"], ["org_full_name", "Коммерческий банк \"ИЖМАШБАНК\" (Товарищество с ограниченной ответственностью)"], ["org_name", "ИЖМАШБАНК"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2882], ["updated_at", Thu, 13 Feb 2014 19:19:06 UTC +00:00], ["ust_money", 6512000], ["ustav_adr", "426006, Удмуртская Республика, г.Ижевск, ул.Дерябина, 1"]]
65401
+  (0.5ms) commit transaction
65402
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000018 LIMIT 1
65403
+  (0.1ms) begin transaction
65404
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:19:06 UTC +00:00], ["date_kgr_registration", Fri, 08 Oct 1993], ["fact_adr", "426057, Удмуртская Республика, г. Ижевск, ул. Свободы, 173"], ["internal_code", 940000018], ["licences", "--- []\n"], ["org_full_name", "Ижевский коммерческий банк \"Почтовый\" - открытое акционерное общество"], ["org_name", "ПОЧТОВЫЙ"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2527], ["updated_at", Thu, 13 Feb 2014 19:19:06 UTC +00:00], ["ust_money", 7300000], ["ustav_adr", ", г.Ижевск, ул.Свободы, 173"]]
65405
+  (0.5ms) commit transaction
65406
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000031 LIMIT 1
65407
+  (0.1ms) begin transaction
65408
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:19:06 UTC +00:00], ["date_kgr_registration", Thu, 08 Jul 1993], ["fact_adr", "426011, Удмуртская Республика, г.Ижевск, ул.Пушкинская,373"], ["internal_code", 940000031], ["licences", "--- []\n"], ["org_full_name", "Акционерный банк \"Конверсия\" (открытое акционерное общество)"], ["org_name", "КОНВЕРСИЯ"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2413], ["updated_at", Thu, 13 Feb 2014 19:19:06 UTC +00:00], ["ust_money", 2315000], ["ustav_adr", "426000, Удмурдская Республика, г.Ижевск, ул.Пушкинская, 373"]]
65409
+  (0.5ms) commit transaction
65410
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000030 LIMIT 1
65411
+  (0.1ms) begin transaction
65412
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:19:06 UTC +00:00], ["date_kgr_registration", Thu, 04 Aug 1994], ["fact_adr", "426000, Удмуртская Республика, г.Ижевск, переулок Северный, 61"], ["internal_code", 940000030], ["licences", "--- []\n"], ["org_full_name", "акционерный коммерческий банк \"ЦЕНТ\" (акционерное общество закрытого типа)"], ["org_name", "ЦЕНТ"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 3020], ["updated_at", Thu, 13 Feb 2014 19:19:06 UTC +00:00], ["ustav_adr", "426000, Удмуртская Республика, г.Ижевск, переулок Северный, 61"]]
65413
+  (0.5ms) commit transaction
65414
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000025 LIMIT 1
65415
+  (0.1ms) begin transaction
65416
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:19:06 UTC +00:00], ["date_kgr_registration", Tue, 18 Aug 1992], ["fact_adr", "426033, Удмуртская Республика, г. Ижевск, ул.Береговая,11"], ["internal_code", 940000025], ["licences", "--- []\n"], ["org_full_name", "коммерческий банк \"ИГЕРМАН\""], ["org_name", "ИГЕРМАН"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2017], ["updated_at", Thu, 13 Feb 2014 19:19:06 UTC +00:00], ["ustav_adr", "426033, Удмуртская Республика, г. Ижевск, ул.Береговая,11"]]
65417
+  (0.5ms) commit transaction
65418
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000532 LIMIT 1
65419
+  (0.1ms) begin transaction
65420
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:19:06 UTC +00:00], ["date_kgr_registration", Wed, 28 Nov 1990], ["fact_adr", "Нет данных"], ["internal_code", 940000532], ["licences", "--- []\n"], ["org_full_name", "ШАРКАНСКИЙ КОММЕРЧЕСКИЙ БАНК"], ["org_name", "ШАРКАНСКИЙ"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 984], ["updated_at", Thu, 13 Feb 2014 19:19:06 UTC +00:00], ["ustav_adr", "427440, Удмуртская Республика, с.Шаркан, ул.Советская, 34"]]
65421
+  (0.5ms) commit transaction
65422
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000533 LIMIT 1
65423
+  (0.1ms) begin transaction
65424
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:19:06 UTC +00:00], ["date_kgr_registration", Thu, 27 Aug 1992], ["fact_adr", "Нет данных"], ["internal_code", 940000533], ["licences", "--- []\n"], ["org_full_name", "Коммерческий банк \"Соцкультбанк\""], ["org_name", "СОЦКУЛЬТБАНК"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2031], ["updated_at", Thu, 13 Feb 2014 19:19:06 UTC +00:00], ["ustav_adr", "426024, Удмуртская Республика, г.Ижевск, ул.Бородина, 21"]]
65425
+  (0.5ms) commit transaction
65426
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000534 LIMIT 1
65427
+  (0.1ms) begin transaction
65428
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:19:06 UTC +00:00], ["date_kgr_registration", Wed, 24 Oct 1990], ["fact_adr", "Нет данных"], ["internal_code", 940000534], ["licences", "--- []\n"], ["org_full_name", "Удмуртский сельскохозяйственный коммерческий банк\"Удмуртсельхозбанк\""], ["org_name", "УДМУРТСЕЛЬХОЗБАНК"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 569], ["updated_at", Thu, 13 Feb 2014 19:19:06 UTC +00:00], ["ustav_adr", "426058, Удмуртская Республика, г.Ижевск, ул.Красноармейская,д.159"]]
65429
+  (0.5ms) commit transaction
65430
+  (0.5ms) DELETE FROM "banks";
65431
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65432
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65433
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000100 LIMIT 1
65434
+  (0.1ms) begin transaction
65435
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:19:07 UTC +00:00], ["date_kgr_registration", Thu, 10 Oct 1991], ["fact_adr", "125030, г. Москва, ул. Зои и Александра Космодемьянских, д.34, стр.6"], ["internal_code", 450000100], ["licences", "--- []\n"], ["org_full_name", "ЗАКРЫТОЕ АКЦИОНЕРНОЕ ОБЩЕСТВО КОММЕРЧЕСКИЙ БАНК \"МОСКОВСКИЙ МЕЖДУНАРОДНЫЙ ТОРГОВЫЙ БАНК\""], ["org_name", "МОСКОВСКИЙ МЕЖДУНАРОДНЫЙ ТОРГОВЫЙ БАНК"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 1584], ["updated_at", Thu, 13 Feb 2014 19:19:07 UTC +00:00], ["ust_money", 4000000], ["ustav_adr", "107076, г. Москва, Б.Матросский пер., д.1, к.1"]]
65436
+  (0.4ms) commit transaction
65437
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000226 LIMIT 1
65438
+  (0.1ms) begin transaction
65439
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585659"], ["created_at", Thu, 13 Feb 2014 19:19:07 UTC +00:00], ["date_kgr_registration", Wed, 05 Aug 1992], ["fact_adr", "107045, г. Москва, Луков переулок, д. 2, стр. 1"], ["internal_code", 450000226], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0Lgg0YDQsNC30LzQtdGJ0LXQvdC40LUg0LTR\n gNCw0LPQvtGG0LXQvdC90YvRhSDQvNC10YLQsNC70LvQvtCy\n attributes: {}\n :l_date: !ruby/object:DateTime 1999-08-18 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2013-01-21 00:00:00.000000000 +04:00\n"], ["main_date_reg", Mon, 18 Nov 2002], ["main_reg_number", "1027739555282"], ["org_full_name", "\"МОСКОВСКИЙ КРЕДИТНЫЙ БАНК\" (открытое акционерное общество)"], ["org_name", "МОСКОВСКИЙ КРЕДИТНЫЙ БАНК"], ["org_status", "норм."], ["phones", "(495)777-48-88"], ["reg_code", 16], ["reg_number", 1978], ["ssv_date", Tue, 30 Nov 2004], ["updated_at", Thu, 13 Feb 2014 19:19:07 UTC +00:00], ["ust_money", 14467761735], ["ustav_adr", "107045, г. Москва, Луков переулок, д. 2, стр. 1"]]
65440
+  (0.5ms) commit transaction
65441
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000573 LIMIT 1
65442
+  (0.1ms) begin transaction
65443
+ SQL (0.7ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585187"], ["created_at", Thu, 13 Feb 2014 19:19:07 UTC +00:00], ["date_kgr_registration", Wed, 16 Feb 1994], ["fact_adr", "127238, г. Москва, Ильменский проезд, д. 10, стр. 1"], ["internal_code", 450000573], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mg==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC+0YHRg9GJ0LXRgdGC0LLQu9C10L3Q\n uNC1INCx0LDQvdC60L7QstGB0LrQuNGFINC+0L/QtdGA0LDRhtC40Lkg0YHQ\n viDRgdGA0LXQtNGB0YLQstCw0LzQuCDQsiDRgNGD0LHQu9GP0YUg0Lgg0LjQ\n vdC+0YHRgtGA0LDQvdC90L7QuSDQstCw0LvRjtGC0LUgKNCx0LXQtyDQv9GA\n 0LDQstCwINC/0YDQuNCy0LvQtdGH0LXQvdC40Y8g0LLQviDQstC60LvQsNC0\n 0Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB0YLQsiDRhNC40LfQuNGH\n 0LXRgdC60LjRhSDQu9C40YYp\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-16 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Ng==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB\n 0YLQsiDRhNC40LfQuNGH0LXRgdC60LjRhSDQu9C40YYg0LIg0YDRg9Cx0LvR\n j9GFINC4INC40L3QvtGB0YLRgNCw0L3QvdC+0Lkg0LLQsNC70Y7RgtC1\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-16 00:00:00.000000000 +04:00\n"], ["main_date_reg", Wed, 30 Oct 2002], ["main_reg_number", "1027739481362"], ["org_full_name", "Акционерный Коммерческий Банк \"Московский Вексельный Банк\" (Закрытое Акционерное Общество)"], ["org_name", "МОСКОВСКИЙ ВЕКСЕЛЬНЫЙ БАНК"], ["org_status", "норм."], ["phones", "(495) 221-38-71"], ["reg_code", 16], ["reg_number", 2697], ["ssv_date", Thu, 17 Mar 2005], ["updated_at", Thu, 13 Feb 2014 19:19:07 UTC +00:00], ["ust_money", 227000000], ["ustav_adr", "127238, г. Москва, Ильменский проезд, д. 10, стр. 1"]]
65444
+  (0.4ms) commit transaction
65445
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 820000042 LIMIT 1
65446
+  (0.1ms) begin transaction
65447
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044525521"], ["created_at", Thu, 13 Feb 2014 19:19:07 UTC +00:00], ["date_kgr_registration", Thu, 09 Apr 1992], ["fact_adr", "107023, г. Москва, ул. Большая Семеновская, д. 32, стр. 1"], ["internal_code", 820000042], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-09-17 00:00:00.000000000 +04:00\n"], ["main_date_reg", Tue, 09 Feb 2010], ["main_reg_number", "1107711000022"], ["org_full_name", "Акционерный коммерческий банк МОСКОВСКИЙ ОБЛАСТНОЙ БАНК открытое акционерное общество"], ["org_name", "МОСКОВСКИЙ ОБЛАСТНОЙ БАНК"], ["org_status", "норм."], ["phones", "(495) 626-21-01"], ["reg_code", 16], ["reg_number", 1751], ["ssv_date", Wed, 31 Aug 2005], ["updated_at", Thu, 13 Feb 2014 19:19:07 UTC +00:00], ["ust_money", 3739141000], ["ustav_adr", "107023, г. Москва, ул. Большая Семеновская, д. 32, стр. 1"]]
65448
+  (0.5ms) commit transaction
65449
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000842 LIMIT 1
65450
+  (0.1ms) begin transaction
65451
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044579476"], ["created_at", Thu, 13 Feb 2014 19:19:07 UTC +00:00], ["date_kgr_registration", Mon, 05 Dec 1994], ["fact_adr", "119146, г. Москва, 1-я Фрунзенская ул., д.5"], ["internal_code", 450000842], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mg==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC+0YHRg9GJ0LXRgdGC0LLQu9C10L3Q\n uNC1INCx0LDQvdC60L7QstGB0LrQuNGFINC+0L/QtdGA0LDRhtC40Lkg0YHQ\n viDRgdGA0LXQtNGB0YLQstCw0LzQuCDQsiDRgNGD0LHQu9GP0YUg0Lgg0LjQ\n vdC+0YHRgtGA0LDQvdC90L7QuSDQstCw0LvRjtGC0LUgKNCx0LXQtyDQv9GA\n 0LDQstCwINC/0YDQuNCy0LvQtdGH0LXQvdC40Y8g0LLQviDQstC60LvQsNC0\n 0Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB0YLQsiDRhNC40LfQuNGH\n 0LXRgdC60LjRhSDQu9C40YYp\n attributes: {}\n :l_date: !ruby/object:DateTime 1999-10-26 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Ng==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB\n 0YLQsiDRhNC40LfQuNGH0LXRgdC60LjRhSDQu9C40YYg0LIg0YDRg9Cx0LvR\n j9GFINC4INC40L3QvtGB0YLRgNCw0L3QvdC+0Lkg0LLQsNC70Y7RgtC1\n attributes: {}\n :l_date: !ruby/object:DateTime 1999-10-26 00:00:00.000000000 +04:00\n"], ["main_date_reg", Thu, 19 Sep 2002], ["main_reg_number", "1027739223687"], ["org_full_name", "Открытое акционерное общество \"Московский Коммерческий Банк\""], ["org_name", "МОСКОВСКИЙ КОММЕРЧЕСКИЙ БАНК"], ["org_status", "норм."], ["phones", "(495) 609-19-19"], ["reg_code", 16], ["reg_number", 3172], ["ssv_date", Thu, 17 Mar 2005], ["updated_at", Thu, 13 Feb 2014 19:19:07 UTC +00:00], ["ust_money", 330000000], ["ustav_adr", "119146, г. Москва, 1-я Фрунзенская ул. д.5"]]
65452
+  (0.5ms) commit transaction
65453
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000053 LIMIT 1
65454
+  (0.1ms) begin transaction
65455
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044579629"], ["created_at", Thu, 13 Feb 2014 19:19:07 UTC +00:00], ["date_kgr_registration", Fri, 15 Mar 1991], ["fact_adr", "121069, г. Москва, ул. Большая Никитская, д.49"], ["internal_code", 450000053], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mg==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC+0YHRg9GJ0LXRgdGC0LLQu9C10L3Q\n uNC1INCx0LDQvdC60L7QstGB0LrQuNGFINC+0L/QtdGA0LDRhtC40Lkg0YHQ\n viDRgdGA0LXQtNGB0YLQstCw0LzQuCDQsiDRgNGD0LHQu9GP0YUg0Lgg0LjQ\n vdC+0YHRgtGA0LDQvdC90L7QuSDQstCw0LvRjtGC0LUgKNCx0LXQtyDQv9GA\n 0LDQstCwINC/0YDQuNCy0LvQtdGH0LXQvdC40Y8g0LLQviDQstC60LvQsNC0\n 0Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB0YLQsiDRhNC40LfQuNGH\n 0LXRgdC60LjRhSDQu9C40YYp\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-08-03 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Ng==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB\n 0YLQsiDRhNC40LfQuNGH0LXRgdC60LjRhSDQu9C40YYg0LIg0YDRg9Cx0LvR\n j9GFINC4INC40L3QvtGB0YLRgNCw0L3QvdC+0Lkg0LLQsNC70Y7RgtC1\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-08-03 00:00:00.000000000 +04:00\n"], ["main_date_reg", Tue, 08 Oct 2002], ["main_reg_number", "1027739337581"], ["org_full_name", "Открытое акционерное общество \"Московский Нефтехимический банк\""], ["org_name", "МОСКОВСКИЙ НЕФТЕХИМИЧЕСКИЙ БАНК"], ["org_status", "норм."], ["phones", "232-33-25"], ["reg_code", 16], ["reg_number", 1411], ["ssv_date", Wed, 02 Feb 2005], ["updated_at", Thu, 13 Feb 2014 19:19:07 UTC +00:00], ["ust_money", 105056100], ["ustav_adr", "121069, г. Москва, ул. Большая Никитская, д.49"]]
65456
+  (0.5ms) commit transaction
65457
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000741 LIMIT 1
65458
+  (0.1ms) begin transaction
65459
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044525600"], ["created_at", Thu, 13 Feb 2014 19:19:07 UTC +00:00], ["date_kgr_registration", Thu, 22 Nov 1990], ["fact_adr", "115419, г. Москва, ул.Орджоникидзе, д.5"], ["internal_code", 450000741], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0Lgg0YDQsNC30LzQtdGJ0LXQvdC40LUg0LTR\n gNCw0LPQvtGG0LXQvdC90YvRhSDQvNC10YLQsNC70LvQvtCy\n attributes: {}\n :l_date: !ruby/object:DateTime 2002-10-14 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2002-10-14 00:00:00.000000000 +04:00\n"], ["main_date_reg", Wed, 11 Sep 2002], ["main_reg_number", "1027739179160"], ["org_full_name", "акционерный коммерческий банк \"Московский Индустриальный банк\" (открытое акционерное общество)"], ["org_name", "МОСКОВСКИЙ ИНДУСТРИАЛЬНЫЙ БАНК"], ["org_status", "норм."], ["phones", "(495)740-00-74"], ["reg_code", 16], ["reg_number", 912], ["ssv_date", Wed, 29 Dec 2004], ["updated_at", Thu, 13 Feb 2014 19:19:07 UTC +00:00], ["ust_money", 1925002700], ["ustav_adr", "115419, г. Москва, ул.Орджоникидзе, д.5"]]
65460
+  (0.5ms) commit transaction
65461
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000039 LIMIT 1
65462
+  (0.1ms) begin transaction
65463
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:19:07 UTC +00:00], ["date_kgr_registration", Wed, 04 Mar 1992], ["fact_adr", "121019, г. Москва, ул.Ленивка, д.1"], ["internal_code", 450000039], ["licences", "--- []\n"], ["org_full_name", "МОСКОВСКИЙ ГОРОДСКОЙ КОММЕРЧЕСКИЙ БАНК ПРОМЫШЛЕННОСТИ СТРОИТЕЛЬНЫХ МАТЕРИАЛОВ"], ["org_name", "МОСКОВСКИЙ БАНК ПРОМСТРОЙМАТЕРИАЛОВ"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 133], ["updated_at", Thu, 13 Feb 2014 19:19:07 UTC +00:00], ["ust_money", 203000], ["ustav_adr", "119820, г.Москва, Кропоткинская наб., 45/1,почтовый - 121019,Москва, а/я 72"]]
65464
+  (0.5ms) commit transaction
65465
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 460000041 LIMIT 1
65466
+  (0.1ms) begin transaction
65467
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:19:08 UTC +00:00], ["date_kgr_registration", Tue, 23 Oct 1990], ["fact_adr", "103064,Москва, ул.Земляной вал, д.17,стр.5, а/я 340"], ["internal_code", 460000041], ["licences", "--- []\n"], ["org_full_name", "Московский межрегиональный коммерческий банк (Общество с ограниченной ответственностью)"], ["org_name", "МОСКОВСКИЙ МЕЖРЕГИОНАЛЬНЫЙ КОМБАНК"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 553], ["updated_at", Thu, 13 Feb 2014 19:19:08 UTC +00:00], ["ust_money", 90352000], ["ustav_adr", ", г.Москва, Саймоновский пр., 7"]]
65468
+  (0.5ms) commit transaction
65469
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 460000036 LIMIT 1
65470
+  (0.1ms) begin transaction
65471
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044583098"], ["created_at", Thu, 13 Feb 2014 19:19:08 UTC +00:00], ["date_kgr_registration", Wed, 10 Aug 1994], ["fact_adr", "105318, г. Москва, ул. Ткацкая, д.15, стр.1"], ["internal_code", 460000036], ["licences", "--- []\n"], ["main_date_reg", Thu, 05 Sep 2002], ["main_reg_number", "1027739154596"], ["org_full_name", "Коммерческий банк \"Московский Капитал\" (общество с ограниченной ответственностью)"], ["org_name", "МОСКОВСКИЙ КАПИТАЛ"], ["org_status", "лицензия отозвана"], ["phones", "166-90-36, 369-20-34"], ["reg_code", 16], ["reg_number", 3044], ["ssv_date", Wed, 09 Feb 2005], ["updated_at", Thu, 13 Feb 2014 19:19:08 UTC +00:00], ["ust_money", 1415000000], ["ustav_adr", "105318, г. Москва, ул. Ткацкая, д.15, стр.1"]]
65472
+  (0.5ms) commit transaction
65473
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000022 LIMIT 1
65474
+  (0.1ms) begin transaction
65475
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:19:08 UTC +00:00], ["date_kgr_registration", Fri, 14 Dec 1990], ["fact_adr", "103482, г. Москва, Центральный проспект, д.1, комн.246"], ["internal_code", 450000022], ["licences", "--- []\n"], ["org_full_name", "Московский коммерческий банк ипотечного кредита"], ["org_name", "МОСКОВСКИЙ БАНК ИПОТЕЧНОГО КРЕДИТА"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 1190], ["updated_at", Thu, 13 Feb 2014 19:19:08 UTC +00:00], ["ust_money", 20000], ["ustav_adr", "103482, г. Москва, Центральный проспект, д.1, комн.246"]]
65476
+  (0.5ms) commit transaction
65477
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000336 LIMIT 1
65478
+  (0.1ms) begin transaction
65479
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:19:08 UTC +00:00], ["date_kgr_registration", Fri, 29 Jan 1993], ["fact_adr", "107815, г. Москва, ул.Маши Порываевой, д.7"], ["internal_code", 450000336], ["licences", "--- []\n"], ["org_full_name", "АКЦИОНЕРНЫЙ КОММЕРЧЕСКИЙ БАНК \"МОСКОВСКИЙ НАЦИОНАЛЬНЫЙ БАНК\" (ЗАКРЫТОЕ АКЦИОНЕРНОЕ ОБЩЕСТВО) АКБ \"МОСНАЦБАНК\""], ["org_name", "МОСКОВСКИЙ НАЦИОНАЛЬНЫЙ БАНК"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 2255], ["updated_at", Thu, 13 Feb 2014 19:19:08 UTC +00:00], ["ustav_adr", "107815, г. Москва, ул.Маши Порываевой, д.7"]]
65480
+  (0.5ms) commit transaction
65481
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450001087 LIMIT 1
65482
+  (0.1ms) begin transaction
65483
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:19:08 UTC +00:00], ["date_kgr_registration", Fri, 10 Feb 1995], ["fact_adr", "103031, г. Москва, ул.Кузнецкий мост, д.19, офис 40"], ["internal_code", 450001087], ["licences", "--- []\n"], ["org_full_name", "КОММЕРЧЕСКИЙ БАНК \"МОСКОВСКИЙ БАНК РАЗВИТИЯ\" /Общество с ограниченной ответственностью/"], ["org_name", "МОСКОВСКИЙ БАНК РАЗВИТИЯ"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 3217], ["updated_at", Thu, 13 Feb 2014 19:19:08 UTC +00:00], ["ustav_adr", "125252, г. Москва, ул.Зорге, д.12"]]
65484
+  (0.5ms) commit transaction
65485
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000718 LIMIT 1
65486
+  (0.1ms) begin transaction
65487
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044583133"], ["created_at", Thu, 13 Feb 2014 19:19:08 UTC +00:00], ["date_kgr_registration", Tue, 30 Jun 1992], ["fact_adr", "123557, г. Москва, Электрический пер., д.3/10, стр.1"], ["internal_code", 450000718], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n MjQ4\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n dW5rbm93bg==\n attributes: {}\n :l_date: !ruby/object:DateTime 2013-03-12 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 26 Jul 2002], ["main_reg_number", "1027739020726"], ["org_full_name", "НЕБАНКОВСКАЯ КРЕДИТНАЯ ОРГАНИЗАЦИЯ \"МОСКОВСКИЙ КЛИРИНГОВЫЙ ЦЕНТР\" (ОТКРЫТОЕ АКЦИОНЕРНОЕ ОБЩЕСТВО)"], ["org_name", "МОСКОВСКИЙ КЛИРИНГОВЫЙ ЦЕНТР"], ["org_status", "норм."], ["phones", "(495)662-15-00"], ["reg_code", 16], ["reg_number", 3314], ["updated_at", Thu, 13 Feb 2014 19:19:08 UTC +00:00], ["ust_money", 8097000], ["ustav_adr", "123557, г. Москва, Электрический пер., д.3/10, стр.1"]]
65488
+  (0.5ms) commit transaction
65489
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000873 LIMIT 1
65490
+  (0.1ms) begin transaction
65491
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:19:08 UTC +00:00], ["date_kgr_registration", Mon, 05 Sep 1994], ["fact_adr", "129090, г. Москва, Проспект Мира, д.7, стр.3"], ["internal_code", 450000873], ["licences", "--- []\n"], ["main_date_reg", Tue, 28 Jan 2003], ["main_reg_number", "1037700079702"], ["org_full_name", "КОММЕРЧЕСКИЙ БАНК \"СИБИРСКО-МОСКОВСКИЙ КОММЕРЧЕСКИЙ БАНК\" (общество с ограниченной ответственностью)"], ["org_name", "СИБИРСКО-МОСКОВСКИЙ КОММЕРЧЕСКИЙ БАНК"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 3069], ["ssv_date", Thu, 17 Mar 2005], ["updated_at", Thu, 13 Feb 2014 19:19:08 UTC +00:00], ["ust_money", 35000000], ["ustav_adr", "103030, г.Москва, ул. Новосущевская, 37, корп. 4"]]
65492
+  (0.5ms) commit transaction
65493
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000962 LIMIT 1
65494
+  (0.1ms) begin transaction
65495
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044579852"], ["created_at", Thu, 13 Feb 2014 19:19:08 UTC +00:00], ["date_kgr_registration", Mon, 27 Jun 1994], ["fact_adr", "123100, г. Москва, Краснопресненская набережная, д.2/1, стр.1"], ["internal_code", 450000962], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mg==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC+0YHRg9GJ0LXRgdGC0LLQu9C10L3Q\n uNC1INCx0LDQvdC60L7QstGB0LrQuNGFINC+0L/QtdGA0LDRhtC40Lkg0YHQ\n viDRgdGA0LXQtNGB0YLQstCw0LzQuCDQsiDRgNGD0LHQu9GP0YUg0Lgg0LjQ\n vdC+0YHRgtGA0LDQvdC90L7QuSDQstCw0LvRjtGC0LUgKNCx0LXQtyDQv9GA\n 0LDQstCwINC/0YDQuNCy0LvQtdGH0LXQvdC40Y8g0LLQviDQstC60LvQsNC0\n 0Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB0YLQsiDRhNC40LfQuNGH\n 0LXRgdC60LjRhSDQu9C40YYp\n attributes: {}\n :l_date: !ruby/object:DateTime 1998-10-20 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0Lgg0YDQsNC30LzQtdGJ0LXQvdC40LUg0LTR\n gNCw0LPQvtGG0LXQvdC90YvRhSDQvNC10YLQsNC70LvQvtCy\n attributes: {}\n :l_date: !ruby/object:DateTime 1999-10-15 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Ng==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB\n 0YLQsiDRhNC40LfQuNGH0LXRgdC60LjRhSDQu9C40YYg0LIg0YDRg9Cx0LvR\n j9GFINC4INC40L3QvtGB0YLRgNCw0L3QvdC+0Lkg0LLQsNC70Y7RgtC1\n attributes: {}\n :l_date: !ruby/object:DateTime 1998-10-20 00:00:00.000000000 +04:00\n"], ["main_date_reg", Wed, 14 Aug 2002], ["main_reg_number", "1027700128796"], ["org_full_name", "Коммерческий Банк \"Новый Московский Банк\" (Общество с ограниченной ответственностью)"], ["org_name", "НОВЫЙ МОСКОВСКИЙ БАНК"], ["org_status", "норм."], ["phones", "(495) 605-32-53, (495) 605-32-89, (495) 605-78-45"], ["reg_code", 16], ["reg_number", 2932], ["ssv_date", Wed, 02 Feb 2005], ["updated_at", Thu, 13 Feb 2014 19:19:08 UTC +00:00], ["ust_money", 237000000], ["ustav_adr", "123100, г. Москва, Краснопресненская набережная, д.2/1, стр.1"]]
65496
+  (0.5ms) commit transaction
65497
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000014 LIMIT 1
65498
+  (0.1ms) begin transaction
65499
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:19:08 UTC +00:00], ["date_kgr_registration", Wed, 05 Dec 1990], ["fact_adr", "0, г. Москва, Новоарбатский проспект, д.23"], ["internal_code", 450000014], ["licences", "--- []\n"], ["org_full_name", "АКЦИОНЕРНЫЙ БАНК РАЗВИТИЯ НАРОДНОГО ХОЗЯЙСТВА \"МОСКОВСКИЙ КРЕДИТ\" (АКЦИОНЕРНОЕ ОБЩЕСТВО ЗАКРЫТОГО ТИПА) - БАНК \"МОСКОВСКИЙ КРЕДИТ\""], ["org_name", "МОСКОВСКИЙ КРЕДИТ"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 1101], ["updated_at", Thu, 13 Feb 2014 19:19:08 UTC +00:00], ["ustav_adr", "117049, г. Москва, Ленинский проспект, д.6"]]
65500
+  (0.5ms) commit transaction
65501
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000284 LIMIT 1
65502
+  (0.1ms) begin transaction
65503
+ SQL (0.3ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:19:09 UTC +00:00], ["date_kgr_registration", Fri, 30 Oct 1992], ["fact_adr", "129110, г. Москва, ул.Щепкина, д.61/2"], ["internal_code", 450000284], ["licences", "--- []\n"], ["org_full_name", "Коммерческий банк \"МОСКОВСКИЙ ГОРОДСКОЙ БАНК\" акционерное общество закрытого типа"], ["org_name", "МОСКОВСКИЙ ГОРОДСКОЙ БАНК"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 2144], ["updated_at", Thu, 13 Feb 2014 19:19:09 UTC +00:00], ["ustav_adr", "111402, г. Москва, ул.Кетчерская, д.16"]]
65504
+  (1.7ms) commit transaction
65505
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450001014 LIMIT 1
65506
+  (0.1ms) begin transaction
65507
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:19:09 UTC +00:00], ["date_kgr_registration", Tue, 18 Apr 1995], ["fact_adr", "129348, г. Москва, Ярославское шоссе, д.13, корп.2"], ["internal_code", 450001014], ["licences", "--- []\n"], ["org_full_name", "коммерческий банк \"МОСКОВСКИЙ ИННОВАЦИОННЫЙ БАНК\" (общество с ограниченной ответственностью)"], ["org_name", "МОСКОВСКИЙ ИННОВАЦИОННЫЙ БАНК"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 3249], ["updated_at", Thu, 13 Feb 2014 19:19:09 UTC +00:00], ["ust_money", 100000], ["ustav_adr", "103101, г. Москва, ул.Садовая-Кудринская, д.24/27, стр.1"]]
65508
+  (0.5ms) commit transaction
65509
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000281 LIMIT 1
65510
+  (0.1ms) begin transaction
65511
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:19:09 UTC +00:00], ["date_kgr_registration", Wed, 04 Nov 1992], ["fact_adr", "107078, г. Москва, ул.Новая Басманная, д.14, стр.1"], ["internal_code", 450000281], ["licences", "--- []\n"], ["org_full_name", "Коммерческий Банк \"Московский Трастовый Банк\""], ["org_name", "МОСКОВСКИЙ ТРАСТОВЫЙ БАНК"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 2141], ["updated_at", Thu, 13 Feb 2014 19:19:09 UTC +00:00], ["ust_money", 8000000], ["ustav_adr", "107078, г. Москва, ул.Новая Басманная, д.14, стр.1"]]
65512
+  (0.5ms) commit transaction
65513
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000468 LIMIT 1
65514
+  (0.1ms) begin transaction
65515
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:19:09 UTC +00:00], ["date_kgr_registration", Tue, 21 Sep 1993], ["fact_adr", "117198, г. Москва, ул.Миклухо-Маклая, д.11а"], ["internal_code", 450000468], ["licences", "--- []\n"], ["org_full_name", "Коммерческий банк \"Московский\" товарищество с ограниченной ответственностью"], ["org_name", "МОСКОВСКИЙ"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 2502], ["updated_at", Thu, 13 Feb 2014 19:19:09 UTC +00:00], ["ust_money", 14500000], ["ustav_adr", "117198, г. Москва, ул.Миклухо-Маклая, д.11а"]]
65516
+  (0.5ms) commit transaction
65517
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450039307 LIMIT 1
65518
+  (0.1ms) begin transaction
65519
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:19:09 UTC +00:00], ["date_kgr_registration", Mon, 27 Dec 1993], ["fact_adr", "Нет данных"], ["internal_code", 450039307], ["licences", "--- []\n"], ["org_full_name", "Коммерческий банк \"Московский объединенный банк\" (товарищество с ограниченной ответственностью)"], ["org_name", "МОСКОВСКИЙ ОБЪЕДИНЕННЫЙ БАНК"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 2634], ["updated_at", Thu, 13 Feb 2014 19:19:09 UTC +00:00], ["ustav_adr", "107005, г.Москва, Плетешковский пер.. 22"]]
65520
+  (0.5ms) commit transaction
65521
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 460001027 LIMIT 1
65522
+  (0.1ms) begin transaction
65523
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:19:09 UTC +00:00], ["date_kgr_registration", Mon, 17 Aug 1992], ["fact_adr", "Нет данных"], ["internal_code", 460001027], ["licences", "--- []\n"], ["org_full_name", "Акционерный коммерческий банк \"Московский купеческий банк\""], ["org_name", "МОСКОВСКИЙ КУПЕЧЕСКИЙ БАНК"], ["org_status", "ликвидирована"], ["reg_code", 17], ["reg_number", 2019], ["updated_at", Thu, 13 Feb 2014 19:19:09 UTC +00:00], ["ustav_adr", "103012, г.Москва, ул.Варварка, 8"]]
65524
+  (0.6ms) commit transaction
65525
+  (0.6ms) DELETE FROM "banks";
65526
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65527
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'banks';
65528
+  (0.0ms) begin transaction
65529
+ SQL (0.2ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:19:09 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "Bank in Database"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 19:19:09 UTC +00:00]]
65530
+  (0.4ms) commit transaction
65531
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650 LIMIT 1
65532
+  (0.6ms) DELETE FROM "banks";
65533
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65534
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'banks';
65535
+  (0.6ms) DELETE FROM "banks";
65536
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65537
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'banks';
65538
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650 LIMIT 1
65539
+  (0.1ms) begin transaction
65540
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:19:09 UTC +00:00], ["date_kgr_registration", Tue, 12 May 1992], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["internal_code", 450000650], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 04 Oct 2002], ["main_reg_number", "1027700280937"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["phones", "(495)785-82-25"], ["reg_code", 16], ["reg_number", 316], ["ssv_date", Wed, 10 Nov 2004], ["updated_at", Thu, 13 Feb 2014 19:19:09 UTC +00:00], ["ust_money", 4173000000], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"]]
65541
+  (0.5ms) commit transaction
65542
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650 LIMIT 1
65543
+  (0.6ms) DELETE FROM "banks";
65544
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65545
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65546
+  (0.0ms) begin transaction
65547
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:19:10 UTC +00:00], ["internal_code", 450000650], ["licences", "--- []\n"], ["org_name", "Bank in Database"], ["org_status", "лицензия отозвана"], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 19:19:10 UTC +00:00]]
65548
+  (0.4ms) commit transaction
65549
+  (0.0ms) begin transaction
65550
+ SQL (0.2ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:19:10 UTC +00:00], ["internal_code", 450000650], ["licences", "---\n- :l_code: '3'\n :lt: Лицензия 4\n :l_date: '2007-12-20T00:00:00+04:00'\n"], ["org_name", "Bank in Database"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 19:19:10 UTC +00:00]]
65551
+  (0.4ms) commit transaction
65552
+  (0.5ms) DELETE FROM "banks";
65553
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65554
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'banks';
65555
+  (0.0ms) begin transaction
65556
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:19:10 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "Old name"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Mon, 13 Jan 2014 19:19:10 UTC +00:00]]
65557
+  (0.4ms) commit transaction
65558
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."reg_number" = 316 LIMIT 1
65559
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65560
+  (0.1ms) begin transaction
65561
+ SQL (0.4ms) UPDATE "banks" SET "org_name" = ?, "org_full_name" = ?, "phones" = ?, "date_kgr_registration" = ?, "main_reg_number" = ?, "main_date_reg" = ?, "ustav_adr" = ?, "fact_adr" = ?, "ust_money" = ?, "ssv_date" = ?, "licences" = ?, "updated_at" = ? WHERE "banks"."id" = 1 [["org_name", "ХКФ БАНК"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["phones", "(495)785-82-25"], ["date_kgr_registration", Tue, 12 May 1992], ["main_reg_number", "1027700280937"], ["main_date_reg", Fri, 04 Oct 2002], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["ust_money", 4173000000], ["ssv_date", Wed, 10 Nov 2004], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["updated_at", Thu, 13 Feb 2014 19:19:10 UTC +00:00]]
65562
+  (0.5ms) commit transaction
65563
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65564
+  (0.5ms) DELETE FROM "banks";
65565
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65566
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65567
+  (0.1ms) SELECT COUNT(*) FROM "banks"
65568
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."reg_number" = 316 LIMIT 1
65569
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65570
+  (0.1ms) begin transaction
65571
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:19:10 UTC +00:00], ["date_kgr_registration", Tue, 12 May 1992], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["internal_code", 450000650], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 04 Oct 2002], ["main_reg_number", "1027700280937"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["phones", "(495)785-82-25"], ["reg_code", 16], ["reg_number", 316], ["ssv_date", Wed, 10 Nov 2004], ["updated_at", Thu, 13 Feb 2014 19:19:10 UTC +00:00], ["ust_money", 4173000000], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"]]
65572
+  (0.5ms) commit transaction
65573
+  (0.1ms) SELECT COUNT(*) FROM "banks"
65574
+  (0.5ms) DELETE FROM "banks";
65575
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65576
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65577
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."reg_number" = 316 LIMIT 1
65578
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65579
+  (0.1ms) begin transaction
65580
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:19:11 UTC +00:00], ["date_kgr_registration", Tue, 12 May 1992], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["internal_code", 450000650], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 04 Oct 2002], ["main_reg_number", "1027700280937"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["phones", "(495)785-82-25"], ["reg_code", 16], ["reg_number", 316], ["ssv_date", Wed, 10 Nov 2004], ["updated_at", Thu, 13 Feb 2014 19:19:11 UTC +00:00], ["ust_money", 4173000000], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"]]
65581
+  (0.5ms) commit transaction
65582
+  (0.5ms) DELETE FROM "banks";
65583
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65584
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'banks';
65585
+  (0.0ms) begin transaction
65586
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:19:11 UTC +00:00], ["internal_code", 450000650999999], ["licences", nil], ["org_name", "Bank in Database"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 19:19:11 UTC +00:00]]
65587
+  (0.4ms) commit transaction
65588
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."reg_number" = 316 LIMIT 1
65589
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65590
+  (0.6ms) DELETE FROM "banks";
65591
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65592
+  (3.3ms) DELETE FROM sqlite_sequence where name = 'banks';
65593
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."reg_number" = 289375237580009 LIMIT 1
65594
+  (0.6ms) DELETE FROM "banks";
65595
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65596
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'banks';
65597
+  (0.0ms) begin transaction
65598
+ SQL (0.2ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:19:11 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 19:19:11 UTC +00:00]]
65599
+  (0.4ms) commit transaction
65600
+  (0.1ms) SELECT COUNT(*) FROM "banks"
65601
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."reg_number" = 316 LIMIT 1
65602
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65603
+  (0.1ms) SELECT COUNT(*) FROM "banks"
65604
+  (0.6ms) DELETE FROM "banks";
65605
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65606
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'banks';
65607
+  (0.0ms) begin transaction
65608
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:19:11 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "Old name"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Mon, 13 Jan 2014 19:19:11 UTC +00:00]]
65609
+  (0.4ms) commit transaction
65610
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650 LIMIT 1
65611
+  (0.1ms) begin transaction
65612
+ SQL (0.3ms) UPDATE "banks" SET "org_name" = ?, "org_full_name" = ?, "phones" = ?, "date_kgr_registration" = ?, "main_reg_number" = ?, "main_date_reg" = ?, "ustav_adr" = ?, "fact_adr" = ?, "ust_money" = ?, "ssv_date" = ?, "licences" = ?, "updated_at" = ? WHERE "banks"."id" = 1 [["org_name", "ХКФ БАНК"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["phones", "(495)785-82-25"], ["date_kgr_registration", Tue, 12 May 1992], ["main_reg_number", "1027700280937"], ["main_date_reg", Fri, 04 Oct 2002], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["ust_money", 4173000000], ["ssv_date", Wed, 10 Nov 2004], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["updated_at", Thu, 13 Feb 2014 19:19:11 UTC +00:00]]
65613
+  (0.4ms) commit transaction
65614
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65615
+  (0.5ms) DELETE FROM "banks";
65616
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65617
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65618
+  (0.1ms) SELECT COUNT(*) FROM "banks"
65619
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650 LIMIT 1
65620
+  (0.1ms) begin transaction
65621
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:19:11 UTC +00:00], ["date_kgr_registration", Tue, 12 May 1992], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["internal_code", 450000650], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 04 Oct 2002], ["main_reg_number", "1027700280937"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["phones", "(495)785-82-25"], ["reg_code", 16], ["reg_number", 316], ["ssv_date", Wed, 10 Nov 2004], ["updated_at", Thu, 13 Feb 2014 19:19:11 UTC +00:00], ["ust_money", 4173000000], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"]]
65622
+  (0.5ms) commit transaction
65623
+  (0.1ms) SELECT COUNT(*) FROM "banks"
65624
+  (0.5ms) DELETE FROM "banks";
65625
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65626
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65627
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650 LIMIT 1
65628
+  (0.1ms) begin transaction
65629
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:19:12 UTC +00:00], ["date_kgr_registration", Tue, 12 May 1992], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["internal_code", 450000650], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 04 Oct 2002], ["main_reg_number", "1027700280937"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["phones", "(495)785-82-25"], ["reg_code", 16], ["reg_number", 316], ["ssv_date", Wed, 10 Nov 2004], ["updated_at", Thu, 13 Feb 2014 19:19:12 UTC +00:00], ["ust_money", 4173000000], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"]]
65630
+  (0.5ms) commit transaction
65631
+  (0.4ms) DELETE FROM "banks";
65632
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65633
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65634
+  (0.1ms) begin transaction
65635
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:19:12 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "Bank in Database"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 289375237580009], ["updated_at", Thu, 13 Feb 2014 19:19:12 UTC +00:00]]
65636
+  (0.4ms) commit transaction
65637
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650 LIMIT 1
65638
+  (0.5ms) DELETE FROM "banks";
65639
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65640
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65641
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650999999 LIMIT 1
65642
+  (0.6ms) DELETE FROM "banks";
65643
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65644
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'banks';
65645
+  (0.0ms) begin transaction
65646
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:19:12 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 19:19:12 UTC +00:00]]
65647
+  (0.4ms) commit transaction
65648
+  (0.1ms) SELECT COUNT(*) FROM "banks"
65649
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650 LIMIT 1
65650
+  (0.1ms) SELECT COUNT(*) FROM "banks"
65651
+  (0.4ms) DELETE FROM "banks";
65652
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65653
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'banks';
65654
+  (0.0ms) begin transaction
65655
+ SQL (0.2ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:19:12 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Mon, 13 Jan 2014 19:19:12 UTC +00:00]]
65656
+  (0.4ms) commit transaction
65657
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65658
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65659
+  (0.1ms) begin transaction
65660
+ SQL (0.4ms) UPDATE "banks" SET "org_full_name" = ?, "phones" = ?, "date_kgr_registration" = ?, "main_reg_number" = ?, "main_date_reg" = ?, "ustav_adr" = ?, "fact_adr" = ?, "ust_money" = ?, "ssv_date" = ?, "licences" = ?, "updated_at" = ? WHERE "banks"."id" = 1 [["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["phones", "(495)785-82-25"], ["date_kgr_registration", Tue, 12 May 1992], ["main_reg_number", "1027700280937"], ["main_date_reg", Fri, 04 Oct 2002], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["ust_money", 4173000000], ["ssv_date", Wed, 10 Nov 2004], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["updated_at", Thu, 13 Feb 2014 19:19:12 UTC +00:00]]
65661
+  (0.4ms) commit transaction
65662
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65663
+  (0.5ms) DELETE FROM "banks";
65664
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65665
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'banks';
65666
+  (0.0ms) begin transaction
65667
+ SQL (0.2ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "111111111"], ["created_at", Thu, 13 Feb 2014 19:19:12 UTC +00:00], ["internal_code", 89899999], ["licences", nil], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Mon, 13 Jan 2014 19:19:12 UTC +00:00]]
65668
+  (0.4ms) commit transaction
65669
+  (0.1ms) SELECT COUNT(*) FROM "banks"
65670
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '111111111' LIMIT 1
65671
+ SQL (0.7ms) DELETE FROM "banks" WHERE "banks"."id" = 1
65672
+  (0.1ms) SELECT COUNT(*) FROM "banks"
65673
+  (0.5ms) DELETE FROM "banks";
65674
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65675
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65676
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65677
+  (0.1ms) begin transaction
65678
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:19:12 UTC +00:00], ["date_kgr_registration", Tue, 12 May 1992], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["internal_code", 450000650], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 04 Oct 2002], ["main_reg_number", "1027700280937"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["phones", "(495)785-82-25"], ["reg_code", 16], ["reg_number", 316], ["ssv_date", Wed, 10 Nov 2004], ["updated_at", Thu, 13 Feb 2014 19:19:12 UTC +00:00], ["ust_money", 4173000000], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"]]
65679
+  (0.5ms) commit transaction
65680
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65681
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65682
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65683
+  (0.5ms) DELETE FROM "banks";
65684
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65685
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65686
+  (0.0ms) begin transaction
65687
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:19:12 UTC +00:00], ["internal_code", 450000650999999], ["licences", nil], ["org_name", "Bank in Database"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 19:19:12 UTC +00:00]]
65688
+  (3.0ms) commit transaction
65689
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65690
+  (0.7ms) DELETE FROM "banks";
65691
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65692
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'banks';
65693
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65694
+  (0.1ms) begin transaction
65695
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:19:13 UTC +00:00], ["date_kgr_registration", Tue, 12 May 1992], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["internal_code", 450000650], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 04 Oct 2002], ["main_reg_number", "1027700280937"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["phones", "(495)785-82-25"], ["reg_code", 16], ["reg_number", 316], ["ssv_date", Wed, 10 Nov 2004], ["updated_at", Thu, 13 Feb 2014 19:19:13 UTC +00:00], ["ust_money", 4173000000], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"]]
65696
+  (0.5ms) commit transaction
65697
+  (0.5ms) DELETE FROM "banks";
65698
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65699
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65700
+  (0.0ms) begin transaction
65701
+ SQL (0.2ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:19:13 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 19:19:13 UTC +00:00]]
65702
+  (0.4ms) commit transaction
65703
+  (0.1ms) SELECT COUNT(*) FROM "banks"
65704
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65705
+  (0.1ms) SELECT COUNT(*) FROM "banks"
65706
+  (0.5ms) DELETE FROM "banks";
65707
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65708
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'banks';
65709
+  (0.1ms) SELECT COUNT(*) FROM "banks"
65710
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65711
+  (0.1ms) begin transaction
65712
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:19:13 UTC +00:00], ["date_kgr_registration", Tue, 12 May 1992], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["internal_code", 450000650], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 04 Oct 2002], ["main_reg_number", "1027700280937"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["phones", "(495)785-82-25"], ["reg_code", 16], ["reg_number", 316], ["ssv_date", Wed, 10 Nov 2004], ["updated_at", Thu, 13 Feb 2014 19:19:13 UTC +00:00], ["ust_money", 4173000000], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"]]
65713
+  (0.5ms) commit transaction
65714
+  (0.1ms) SELECT COUNT(*) FROM "banks"
65715
+  (0.5ms) DELETE FROM "banks";
65716
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65717
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65718
+  (0.0ms) begin transaction
65719
+ SQL (0.2ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:19:13 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "Old name"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Mon, 13 Jan 2014 19:19:13 UTC +00:00]]
65720
+  (0.4ms) commit transaction
65721
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65722
+  (0.1ms) begin transaction
65723
+ SQL (0.3ms) UPDATE "banks" SET "org_name" = ?, "org_full_name" = ?, "phones" = ?, "date_kgr_registration" = ?, "main_reg_number" = ?, "main_date_reg" = ?, "ustav_adr" = ?, "fact_adr" = ?, "ust_money" = ?, "ssv_date" = ?, "licences" = ?, "updated_at" = ? WHERE "banks"."id" = 1 [["org_name", "ХКФ БАНК"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["phones", "(495)785-82-25"], ["date_kgr_registration", Tue, 12 May 1992], ["main_reg_number", "1027700280937"], ["main_date_reg", Fri, 04 Oct 2002], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["ust_money", 4173000000], ["ssv_date", Wed, 10 Nov 2004], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["updated_at", Thu, 13 Feb 2014 19:19:14 UTC +00:00]]
65724
+  (0.5ms) commit transaction
65725
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65726
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
65727
+  (0.6ms) DELETE FROM "banks";
65728
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65729
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65730
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65731
+  (0.1ms) begin transaction
65732
+ SQL (2.2ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:22:39 UTC +00:00], ["date_kgr_registration", Tue, 12 May 1992], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["internal_code", 450000650], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 04 Oct 2002], ["main_reg_number", "1027700280937"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["phones", "(495)785-82-25"], ["reg_code", 16], ["reg_number", 316], ["ssv_date", Wed, 10 Nov 2004], ["updated_at", Thu, 13 Feb 2014 19:22:39 UTC +00:00], ["ust_money", 4173000000], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"]]
65733
+  (0.4ms) commit transaction
65734
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65735
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65736
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65737
+  (0.5ms) DELETE FROM "banks";
65738
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65739
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65740
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65741
+  (0.1ms) begin transaction
65742
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:22:39 UTC +00:00], ["date_kgr_registration", Tue, 12 May 1992], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["internal_code", 450000650], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 04 Oct 2002], ["main_reg_number", "1027700280937"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["phones", "(495)785-82-25"], ["reg_code", 16], ["reg_number", 316], ["ssv_date", Wed, 10 Nov 2004], ["updated_at", Thu, 13 Feb 2014 19:22:39 UTC +00:00], ["ust_money", 4173000000], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"]]
65743
+  (0.5ms) commit transaction
65744
+  (0.6ms) DELETE FROM "banks";
65745
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65746
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'banks';
65747
+  (0.1ms) SELECT COUNT(*) FROM "banks"
65748
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65749
+  (0.1ms) begin transaction
65750
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:22:39 UTC +00:00], ["date_kgr_registration", Tue, 12 May 1992], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["internal_code", 450000650], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 04 Oct 2002], ["main_reg_number", "1027700280937"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["phones", "(495)785-82-25"], ["reg_code", 16], ["reg_number", 316], ["ssv_date", Wed, 10 Nov 2004], ["updated_at", Thu, 13 Feb 2014 19:22:39 UTC +00:00], ["ust_money", 4173000000], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"]]
65751
+  (0.5ms) commit transaction
65752
+  (0.1ms) SELECT COUNT(*) FROM "banks"
65753
+  (0.5ms) DELETE FROM "banks";
65754
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65755
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65756
+  (0.0ms) begin transaction
65757
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:22:39 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 19:22:39 UTC +00:00]]
65758
+  (0.4ms) commit transaction
65759
+  (0.1ms) SELECT COUNT(*) FROM "banks"
65760
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65761
+  (0.1ms) SELECT COUNT(*) FROM "banks"
65762
+  (3.7ms) DELETE FROM "banks";
65763
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65764
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65765
+  (0.0ms) begin transaction
65766
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "111111111"], ["created_at", Thu, 13 Feb 2014 19:22:40 UTC +00:00], ["internal_code", 89899999], ["licences", nil], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Mon, 13 Jan 2014 19:22:40 UTC +00:00]]
65767
+  (0.4ms) commit transaction
65768
+  (0.1ms) SELECT COUNT(*) FROM "banks"
65769
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '111111111' LIMIT 1
65770
+  (0.6ms) DELETE FROM "banks";
65771
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65772
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65773
+  (0.0ms) begin transaction
65774
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:22:40 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Mon, 13 Jan 2014 19:22:40 UTC +00:00]]
65775
+  (0.4ms) commit transaction
65776
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65777
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65778
+  (0.6ms) DELETE FROM "banks";
65779
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65780
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65781
+  (0.0ms) begin transaction
65782
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:22:40 UTC +00:00], ["internal_code", 450000650999999], ["licences", nil], ["org_name", "Bank in Database"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 19:22:40 UTC +00:00]]
65783
+  (0.4ms) commit transaction
65784
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65785
+  (0.6ms) DELETE FROM "banks";
65786
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65787
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65788
+  (0.0ms) begin transaction
65789
+ SQL (0.2ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:22:40 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "Old name"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Mon, 13 Jan 2014 19:22:40 UTC +00:00]]
65790
+  (0.4ms) commit transaction
65791
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65792
+  (0.6ms) DELETE FROM "banks";
65793
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65794
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65795
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."reg_number" = 316 LIMIT 1
65796
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65797
+  (0.1ms) begin transaction
65798
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:22:41 UTC +00:00], ["date_kgr_registration", Tue, 12 May 1992], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["internal_code", 450000650], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 04 Oct 2002], ["main_reg_number", "1027700280937"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["phones", "(495)785-82-25"], ["reg_code", 16], ["reg_number", 316], ["ssv_date", Wed, 10 Nov 2004], ["updated_at", Thu, 13 Feb 2014 19:22:41 UTC +00:00], ["ust_money", 4173000000], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"]]
65799
+  (0.5ms) commit transaction
65800
+  (0.5ms) DELETE FROM "banks";
65801
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65802
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65803
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."reg_number" = 289375237580009 LIMIT 1
65804
+  (0.6ms) DELETE FROM "banks";
65805
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65806
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'banks';
65807
+  (0.0ms) begin transaction
65808
+ SQL (0.2ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:22:41 UTC +00:00], ["internal_code", 450000650999999], ["licences", nil], ["org_name", "Bank in Database"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 19:22:41 UTC +00:00]]
65809
+  (0.4ms) commit transaction
65810
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."reg_number" = 316 LIMIT 1
65811
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65812
+  (0.6ms) DELETE FROM "banks";
65813
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65814
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65815
+  (0.0ms) begin transaction
65816
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:22:41 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "Old name"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Mon, 13 Jan 2014 19:22:41 UTC +00:00]]
65817
+  (0.4ms) commit transaction
65818
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."reg_number" = 316 LIMIT 1
65819
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65820
+  (0.6ms) DELETE FROM "banks";
65821
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65822
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65823
+  (0.1ms) SELECT COUNT(*) FROM "banks"
65824
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."reg_number" = 316 LIMIT 1
65825
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65826
+  (0.1ms) begin transaction
65827
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:22:42 UTC +00:00], ["date_kgr_registration", Tue, 12 May 1992], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["internal_code", 450000650], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 04 Oct 2002], ["main_reg_number", "1027700280937"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["phones", "(495)785-82-25"], ["reg_code", 16], ["reg_number", 316], ["ssv_date", Wed, 10 Nov 2004], ["updated_at", Thu, 13 Feb 2014 19:22:42 UTC +00:00], ["ust_money", 4173000000], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"]]
65828
+  (0.4ms) commit transaction
65829
+  (0.1ms) SELECT COUNT(*) FROM "banks"
65830
+  (0.5ms) DELETE FROM "banks";
65831
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65832
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65833
+  (0.0ms) begin transaction
65834
+ SQL (0.2ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:22:42 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 19:22:42 UTC +00:00]]
65835
+  (0.4ms) commit transaction
65836
+  (0.1ms) SELECT COUNT(*) FROM "banks"
65837
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."reg_number" = 316 LIMIT 1
65838
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
65839
+  (0.1ms) SELECT COUNT(*) FROM "banks"
65840
+  (0.6ms) DELETE FROM "banks";
65841
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65842
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65843
+  (0.0ms) begin transaction
65844
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:22:42 UTC +00:00], ["internal_code", 450000650], ["licences", "---\n- :l_code: '7'\n :lt: Лицензия 1\n :l_date: '2012-09-10T00:00:00+04:00'\n"], ["org_name", "Bank in Database"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 19:22:42 UTC +00:00]]
65845
+  (0.4ms) commit transaction
65846
+  (0.5ms) DELETE FROM "banks";
65847
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65848
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65849
+  (0.0ms) begin transaction
65850
+ SQL (0.2ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:22:42 UTC +00:00], ["internal_code", 450000650], ["licences", "---\n- :l_code: '3'\n :lt: Лицензия 2\n :l_date: '2007-12-20T00:00:00+04:00'\n- :l_code: '7'\n :lt: Лицензия 3\n :l_date: '2012-03-23T00:00:00+04:00'\n"], ["org_name", "Bank in Database"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 19:22:42 UTC +00:00]]
65851
+  (0.4ms) commit transaction
65852
+  (0.4ms) DELETE FROM "banks";
65853
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65854
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65855
+  (0.0ms) begin transaction
65856
+ SQL (0.2ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:22:42 UTC +00:00], ["internal_code", 450000650], ["licences", "--- []\n"], ["org_name", "Bank in Database"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 19:22:42 UTC +00:00]]
65857
+  (0.4ms) commit transaction
65858
+  (0.4ms) DELETE FROM "banks";
65859
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65860
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65861
+  (0.6ms) DELETE FROM "banks";
65862
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65863
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'banks';
65864
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000100 LIMIT 1
65865
+  (0.1ms) begin transaction
65866
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:22:43 UTC +00:00], ["date_kgr_registration", Thu, 10 Oct 1991], ["fact_adr", "125030, г. Москва, ул. Зои и Александра Космодемьянских, д.34, стр.6"], ["internal_code", 450000100], ["licences", "--- []\n"], ["org_full_name", "ЗАКРЫТОЕ АКЦИОНЕРНОЕ ОБЩЕСТВО КОММЕРЧЕСКИЙ БАНК \"МОСКОВСКИЙ МЕЖДУНАРОДНЫЙ ТОРГОВЫЙ БАНК\""], ["org_name", "МОСКОВСКИЙ МЕЖДУНАРОДНЫЙ ТОРГОВЫЙ БАНК"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 1584], ["updated_at", Thu, 13 Feb 2014 19:22:43 UTC +00:00], ["ust_money", 4000000], ["ustav_adr", "107076, г. Москва, Б.Матросский пер., д.1, к.1"]]
65867
+  (0.5ms) commit transaction
65868
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000226 LIMIT 1
65869
+  (0.1ms) begin transaction
65870
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585659"], ["created_at", Thu, 13 Feb 2014 19:22:43 UTC +00:00], ["date_kgr_registration", Wed, 05 Aug 1992], ["fact_adr", "107045, г. Москва, Луков переулок, д. 2, стр. 1"], ["internal_code", 450000226], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0Lgg0YDQsNC30LzQtdGJ0LXQvdC40LUg0LTR\n gNCw0LPQvtGG0LXQvdC90YvRhSDQvNC10YLQsNC70LvQvtCy\n attributes: {}\n :l_date: !ruby/object:DateTime 1999-08-18 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2013-01-21 00:00:00.000000000 +04:00\n"], ["main_date_reg", Mon, 18 Nov 2002], ["main_reg_number", "1027739555282"], ["org_full_name", "\"МОСКОВСКИЙ КРЕДИТНЫЙ БАНК\" (открытое акционерное общество)"], ["org_name", "МОСКОВСКИЙ КРЕДИТНЫЙ БАНК"], ["org_status", "норм."], ["phones", "(495)777-48-88"], ["reg_code", 16], ["reg_number", 1978], ["ssv_date", Tue, 30 Nov 2004], ["updated_at", Thu, 13 Feb 2014 19:22:43 UTC +00:00], ["ust_money", 14467761735], ["ustav_adr", "107045, г. Москва, Луков переулок, д. 2, стр. 1"]]
65871
+  (0.4ms) commit transaction
65872
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000573 LIMIT 1
65873
+  (0.1ms) begin transaction
65874
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585187"], ["created_at", Thu, 13 Feb 2014 19:22:43 UTC +00:00], ["date_kgr_registration", Wed, 16 Feb 1994], ["fact_adr", "127238, г. Москва, Ильменский проезд, д. 10, стр. 1"], ["internal_code", 450000573], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mg==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC+0YHRg9GJ0LXRgdGC0LLQu9C10L3Q\n uNC1INCx0LDQvdC60L7QstGB0LrQuNGFINC+0L/QtdGA0LDRhtC40Lkg0YHQ\n viDRgdGA0LXQtNGB0YLQstCw0LzQuCDQsiDRgNGD0LHQu9GP0YUg0Lgg0LjQ\n vdC+0YHRgtGA0LDQvdC90L7QuSDQstCw0LvRjtGC0LUgKNCx0LXQtyDQv9GA\n 0LDQstCwINC/0YDQuNCy0LvQtdGH0LXQvdC40Y8g0LLQviDQstC60LvQsNC0\n 0Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB0YLQsiDRhNC40LfQuNGH\n 0LXRgdC60LjRhSDQu9C40YYp\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-16 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Ng==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB\n 0YLQsiDRhNC40LfQuNGH0LXRgdC60LjRhSDQu9C40YYg0LIg0YDRg9Cx0LvR\n j9GFINC4INC40L3QvtGB0YLRgNCw0L3QvdC+0Lkg0LLQsNC70Y7RgtC1\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-16 00:00:00.000000000 +04:00\n"], ["main_date_reg", Wed, 30 Oct 2002], ["main_reg_number", "1027739481362"], ["org_full_name", "Акционерный Коммерческий Банк \"Московский Вексельный Банк\" (Закрытое Акционерное Общество)"], ["org_name", "МОСКОВСКИЙ ВЕКСЕЛЬНЫЙ БАНК"], ["org_status", "норм."], ["phones", "(495) 221-38-71"], ["reg_code", 16], ["reg_number", 2697], ["ssv_date", Thu, 17 Mar 2005], ["updated_at", Thu, 13 Feb 2014 19:22:43 UTC +00:00], ["ust_money", 227000000], ["ustav_adr", "127238, г. Москва, Ильменский проезд, д. 10, стр. 1"]]
65875
+  (0.4ms) commit transaction
65876
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 820000042 LIMIT 1
65877
+  (0.1ms) begin transaction
65878
+ SQL (0.5ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044525521"], ["created_at", Thu, 13 Feb 2014 19:22:43 UTC +00:00], ["date_kgr_registration", Thu, 09 Apr 1992], ["fact_adr", "107023, г. Москва, ул. Большая Семеновская, д. 32, стр. 1"], ["internal_code", 820000042], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-09-17 00:00:00.000000000 +04:00\n"], ["main_date_reg", Tue, 09 Feb 2010], ["main_reg_number", "1107711000022"], ["org_full_name", "Акционерный коммерческий банк МОСКОВСКИЙ ОБЛАСТНОЙ БАНК открытое акционерное общество"], ["org_name", "МОСКОВСКИЙ ОБЛАСТНОЙ БАНК"], ["org_status", "норм."], ["phones", "(495) 626-21-01"], ["reg_code", 16], ["reg_number", 1751], ["ssv_date", Wed, 31 Aug 2005], ["updated_at", Thu, 13 Feb 2014 19:22:43 UTC +00:00], ["ust_money", 3739141000], ["ustav_adr", "107023, г. Москва, ул. Большая Семеновская, д. 32, стр. 1"]]
65879
+  (0.6ms) commit transaction
65880
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000842 LIMIT 1
65881
+  (0.1ms) begin transaction
65882
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044579476"], ["created_at", Thu, 13 Feb 2014 19:22:43 UTC +00:00], ["date_kgr_registration", Mon, 05 Dec 1994], ["fact_adr", "119146, г. Москва, 1-я Фрунзенская ул., д.5"], ["internal_code", 450000842], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mg==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC+0YHRg9GJ0LXRgdGC0LLQu9C10L3Q\n uNC1INCx0LDQvdC60L7QstGB0LrQuNGFINC+0L/QtdGA0LDRhtC40Lkg0YHQ\n viDRgdGA0LXQtNGB0YLQstCw0LzQuCDQsiDRgNGD0LHQu9GP0YUg0Lgg0LjQ\n vdC+0YHRgtGA0LDQvdC90L7QuSDQstCw0LvRjtGC0LUgKNCx0LXQtyDQv9GA\n 0LDQstCwINC/0YDQuNCy0LvQtdGH0LXQvdC40Y8g0LLQviDQstC60LvQsNC0\n 0Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB0YLQsiDRhNC40LfQuNGH\n 0LXRgdC60LjRhSDQu9C40YYp\n attributes: {}\n :l_date: !ruby/object:DateTime 1999-10-26 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Ng==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB\n 0YLQsiDRhNC40LfQuNGH0LXRgdC60LjRhSDQu9C40YYg0LIg0YDRg9Cx0LvR\n j9GFINC4INC40L3QvtGB0YLRgNCw0L3QvdC+0Lkg0LLQsNC70Y7RgtC1\n attributes: {}\n :l_date: !ruby/object:DateTime 1999-10-26 00:00:00.000000000 +04:00\n"], ["main_date_reg", Thu, 19 Sep 2002], ["main_reg_number", "1027739223687"], ["org_full_name", "Открытое акционерное общество \"Московский Коммерческий Банк\""], ["org_name", "МОСКОВСКИЙ КОММЕРЧЕСКИЙ БАНК"], ["org_status", "норм."], ["phones", "(495) 609-19-19"], ["reg_code", 16], ["reg_number", 3172], ["ssv_date", Thu, 17 Mar 2005], ["updated_at", Thu, 13 Feb 2014 19:22:43 UTC +00:00], ["ust_money", 330000000], ["ustav_adr", "119146, г. Москва, 1-я Фрунзенская ул. д.5"]]
65883
+  (0.4ms) commit transaction
65884
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000053 LIMIT 1
65885
+  (0.1ms) begin transaction
65886
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044579629"], ["created_at", Thu, 13 Feb 2014 19:22:43 UTC +00:00], ["date_kgr_registration", Fri, 15 Mar 1991], ["fact_adr", "121069, г. Москва, ул. Большая Никитская, д.49"], ["internal_code", 450000053], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mg==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC+0YHRg9GJ0LXRgdGC0LLQu9C10L3Q\n uNC1INCx0LDQvdC60L7QstGB0LrQuNGFINC+0L/QtdGA0LDRhtC40Lkg0YHQ\n viDRgdGA0LXQtNGB0YLQstCw0LzQuCDQsiDRgNGD0LHQu9GP0YUg0Lgg0LjQ\n vdC+0YHRgtGA0LDQvdC90L7QuSDQstCw0LvRjtGC0LUgKNCx0LXQtyDQv9GA\n 0LDQstCwINC/0YDQuNCy0LvQtdGH0LXQvdC40Y8g0LLQviDQstC60LvQsNC0\n 0Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB0YLQsiDRhNC40LfQuNGH\n 0LXRgdC60LjRhSDQu9C40YYp\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-08-03 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Ng==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB\n 0YLQsiDRhNC40LfQuNGH0LXRgdC60LjRhSDQu9C40YYg0LIg0YDRg9Cx0LvR\n j9GFINC4INC40L3QvtGB0YLRgNCw0L3QvdC+0Lkg0LLQsNC70Y7RgtC1\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-08-03 00:00:00.000000000 +04:00\n"], ["main_date_reg", Tue, 08 Oct 2002], ["main_reg_number", "1027739337581"], ["org_full_name", "Открытое акционерное общество \"Московский Нефтехимический банк\""], ["org_name", "МОСКОВСКИЙ НЕФТЕХИМИЧЕСКИЙ БАНК"], ["org_status", "норм."], ["phones", "232-33-25"], ["reg_code", 16], ["reg_number", 1411], ["ssv_date", Wed, 02 Feb 2005], ["updated_at", Thu, 13 Feb 2014 19:22:43 UTC +00:00], ["ust_money", 105056100], ["ustav_adr", "121069, г. Москва, ул. Большая Никитская, д.49"]]
65887
+  (0.5ms) commit transaction
65888
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000741 LIMIT 1
65889
+  (0.1ms) begin transaction
65890
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044525600"], ["created_at", Thu, 13 Feb 2014 19:22:43 UTC +00:00], ["date_kgr_registration", Thu, 22 Nov 1990], ["fact_adr", "115419, г. Москва, ул.Орджоникидзе, д.5"], ["internal_code", 450000741], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0Lgg0YDQsNC30LzQtdGJ0LXQvdC40LUg0LTR\n gNCw0LPQvtGG0LXQvdC90YvRhSDQvNC10YLQsNC70LvQvtCy\n attributes: {}\n :l_date: !ruby/object:DateTime 2002-10-14 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2002-10-14 00:00:00.000000000 +04:00\n"], ["main_date_reg", Wed, 11 Sep 2002], ["main_reg_number", "1027739179160"], ["org_full_name", "акционерный коммерческий банк \"Московский Индустриальный банк\" (открытое акционерное общество)"], ["org_name", "МОСКОВСКИЙ ИНДУСТРИАЛЬНЫЙ БАНК"], ["org_status", "норм."], ["phones", "(495)740-00-74"], ["reg_code", 16], ["reg_number", 912], ["ssv_date", Wed, 29 Dec 2004], ["updated_at", Thu, 13 Feb 2014 19:22:43 UTC +00:00], ["ust_money", 1925002700], ["ustav_adr", "115419, г. Москва, ул.Орджоникидзе, д.5"]]
65891
+  (0.5ms) commit transaction
65892
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000039 LIMIT 1
65893
+  (0.1ms) begin transaction
65894
+ SQL (0.3ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:22:43 UTC +00:00], ["date_kgr_registration", Wed, 04 Mar 1992], ["fact_adr", "121019, г. Москва, ул.Ленивка, д.1"], ["internal_code", 450000039], ["licences", "--- []\n"], ["org_full_name", "МОСКОВСКИЙ ГОРОДСКОЙ КОММЕРЧЕСКИЙ БАНК ПРОМЫШЛЕННОСТИ СТРОИТЕЛЬНЫХ МАТЕРИАЛОВ"], ["org_name", "МОСКОВСКИЙ БАНК ПРОМСТРОЙМАТЕРИАЛОВ"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 133], ["updated_at", Thu, 13 Feb 2014 19:22:43 UTC +00:00], ["ust_money", 203000], ["ustav_adr", "119820, г.Москва, Кропоткинская наб., 45/1,почтовый - 121019,Москва, а/я 72"]]
65895
+  (0.5ms) commit transaction
65896
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 460000041 LIMIT 1
65897
+  (0.1ms) begin transaction
65898
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:22:43 UTC +00:00], ["date_kgr_registration", Tue, 23 Oct 1990], ["fact_adr", "103064,Москва, ул.Земляной вал, д.17,стр.5, а/я 340"], ["internal_code", 460000041], ["licences", "--- []\n"], ["org_full_name", "Московский межрегиональный коммерческий банк (Общество с ограниченной ответственностью)"], ["org_name", "МОСКОВСКИЙ МЕЖРЕГИОНАЛЬНЫЙ КОМБАНК"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 553], ["updated_at", Thu, 13 Feb 2014 19:22:43 UTC +00:00], ["ust_money", 90352000], ["ustav_adr", ", г.Москва, Саймоновский пр., 7"]]
65899
+  (0.5ms) commit transaction
65900
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 460000036 LIMIT 1
65901
+  (0.1ms) begin transaction
65902
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044583098"], ["created_at", Thu, 13 Feb 2014 19:22:44 UTC +00:00], ["date_kgr_registration", Wed, 10 Aug 1994], ["fact_adr", "105318, г. Москва, ул. Ткацкая, д.15, стр.1"], ["internal_code", 460000036], ["licences", "--- []\n"], ["main_date_reg", Thu, 05 Sep 2002], ["main_reg_number", "1027739154596"], ["org_full_name", "Коммерческий банк \"Московский Капитал\" (общество с ограниченной ответственностью)"], ["org_name", "МОСКОВСКИЙ КАПИТАЛ"], ["org_status", "лицензия отозвана"], ["phones", "166-90-36, 369-20-34"], ["reg_code", 16], ["reg_number", 3044], ["ssv_date", Wed, 09 Feb 2005], ["updated_at", Thu, 13 Feb 2014 19:22:44 UTC +00:00], ["ust_money", 1415000000], ["ustav_adr", "105318, г. Москва, ул. Ткацкая, д.15, стр.1"]]
65903
+  (0.5ms) commit transaction
65904
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000022 LIMIT 1
65905
+  (0.1ms) begin transaction
65906
+ SQL (0.3ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:22:44 UTC +00:00], ["date_kgr_registration", Fri, 14 Dec 1990], ["fact_adr", "103482, г. Москва, Центральный проспект, д.1, комн.246"], ["internal_code", 450000022], ["licences", "--- []\n"], ["org_full_name", "Московский коммерческий банк ипотечного кредита"], ["org_name", "МОСКОВСКИЙ БАНК ИПОТЕЧНОГО КРЕДИТА"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 1190], ["updated_at", Thu, 13 Feb 2014 19:22:44 UTC +00:00], ["ust_money", 20000], ["ustav_adr", "103482, г. Москва, Центральный проспект, д.1, комн.246"]]
65907
+  (0.5ms) commit transaction
65908
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000336 LIMIT 1
65909
+  (0.1ms) begin transaction
65910
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:22:44 UTC +00:00], ["date_kgr_registration", Fri, 29 Jan 1993], ["fact_adr", "107815, г. Москва, ул.Маши Порываевой, д.7"], ["internal_code", 450000336], ["licences", "--- []\n"], ["org_full_name", "АКЦИОНЕРНЫЙ КОММЕРЧЕСКИЙ БАНК \"МОСКОВСКИЙ НАЦИОНАЛЬНЫЙ БАНК\" (ЗАКРЫТОЕ АКЦИОНЕРНОЕ ОБЩЕСТВО) АКБ \"МОСНАЦБАНК\""], ["org_name", "МОСКОВСКИЙ НАЦИОНАЛЬНЫЙ БАНК"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 2255], ["updated_at", Thu, 13 Feb 2014 19:22:44 UTC +00:00], ["ustav_adr", "107815, г. Москва, ул.Маши Порываевой, д.7"]]
65911
+  (0.5ms) commit transaction
65912
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450001087 LIMIT 1
65913
+  (0.1ms) begin transaction
65914
+ SQL (0.3ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:22:44 UTC +00:00], ["date_kgr_registration", Fri, 10 Feb 1995], ["fact_adr", "103031, г. Москва, ул.Кузнецкий мост, д.19, офис 40"], ["internal_code", 450001087], ["licences", "--- []\n"], ["org_full_name", "КОММЕРЧЕСКИЙ БАНК \"МОСКОВСКИЙ БАНК РАЗВИТИЯ\" /Общество с ограниченной ответственностью/"], ["org_name", "МОСКОВСКИЙ БАНК РАЗВИТИЯ"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 3217], ["updated_at", Thu, 13 Feb 2014 19:22:44 UTC +00:00], ["ustav_adr", "125252, г. Москва, ул.Зорге, д.12"]]
65915
+  (0.4ms) commit transaction
65916
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000718 LIMIT 1
65917
+  (0.1ms) begin transaction
65918
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044583133"], ["created_at", Thu, 13 Feb 2014 19:22:44 UTC +00:00], ["date_kgr_registration", Tue, 30 Jun 1992], ["fact_adr", "123557, г. Москва, Электрический пер., д.3/10, стр.1"], ["internal_code", 450000718], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n MjQ4\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n dW5rbm93bg==\n attributes: {}\n :l_date: !ruby/object:DateTime 2013-03-12 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 26 Jul 2002], ["main_reg_number", "1027739020726"], ["org_full_name", "НЕБАНКОВСКАЯ КРЕДИТНАЯ ОРГАНИЗАЦИЯ \"МОСКОВСКИЙ КЛИРИНГОВЫЙ ЦЕНТР\" (ОТКРЫТОЕ АКЦИОНЕРНОЕ ОБЩЕСТВО)"], ["org_name", "МОСКОВСКИЙ КЛИРИНГОВЫЙ ЦЕНТР"], ["org_status", "норм."], ["phones", "(495)662-15-00"], ["reg_code", 16], ["reg_number", 3314], ["updated_at", Thu, 13 Feb 2014 19:22:44 UTC +00:00], ["ust_money", 8097000], ["ustav_adr", "123557, г. Москва, Электрический пер., д.3/10, стр.1"]]
65919
+  (0.4ms) commit transaction
65920
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000873 LIMIT 1
65921
+  (0.1ms) begin transaction
65922
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:22:44 UTC +00:00], ["date_kgr_registration", Mon, 05 Sep 1994], ["fact_adr", "129090, г. Москва, Проспект Мира, д.7, стр.3"], ["internal_code", 450000873], ["licences", "--- []\n"], ["main_date_reg", Tue, 28 Jan 2003], ["main_reg_number", "1037700079702"], ["org_full_name", "КОММЕРЧЕСКИЙ БАНК \"СИБИРСКО-МОСКОВСКИЙ КОММЕРЧЕСКИЙ БАНК\" (общество с ограниченной ответственностью)"], ["org_name", "СИБИРСКО-МОСКОВСКИЙ КОММЕРЧЕСКИЙ БАНК"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 3069], ["ssv_date", Thu, 17 Mar 2005], ["updated_at", Thu, 13 Feb 2014 19:22:44 UTC +00:00], ["ust_money", 35000000], ["ustav_adr", "103030, г.Москва, ул. Новосущевская, 37, корп. 4"]]
65923
+  (0.5ms) commit transaction
65924
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000962 LIMIT 1
65925
+  (0.1ms) begin transaction
65926
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044579852"], ["created_at", Thu, 13 Feb 2014 19:22:44 UTC +00:00], ["date_kgr_registration", Mon, 27 Jun 1994], ["fact_adr", "123100, г. Москва, Краснопресненская набережная, д.2/1, стр.1"], ["internal_code", 450000962], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mg==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC+0YHRg9GJ0LXRgdGC0LLQu9C10L3Q\n uNC1INCx0LDQvdC60L7QstGB0LrQuNGFINC+0L/QtdGA0LDRhtC40Lkg0YHQ\n viDRgdGA0LXQtNGB0YLQstCw0LzQuCDQsiDRgNGD0LHQu9GP0YUg0Lgg0LjQ\n vdC+0YHRgtGA0LDQvdC90L7QuSDQstCw0LvRjtGC0LUgKNCx0LXQtyDQv9GA\n 0LDQstCwINC/0YDQuNCy0LvQtdGH0LXQvdC40Y8g0LLQviDQstC60LvQsNC0\n 0Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB0YLQsiDRhNC40LfQuNGH\n 0LXRgdC60LjRhSDQu9C40YYp\n attributes: {}\n :l_date: !ruby/object:DateTime 1998-10-20 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0Lgg0YDQsNC30LzQtdGJ0LXQvdC40LUg0LTR\n gNCw0LPQvtGG0LXQvdC90YvRhSDQvNC10YLQsNC70LvQvtCy\n attributes: {}\n :l_date: !ruby/object:DateTime 1999-10-15 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Ng==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB\n 0YLQsiDRhNC40LfQuNGH0LXRgdC60LjRhSDQu9C40YYg0LIg0YDRg9Cx0LvR\n j9GFINC4INC40L3QvtGB0YLRgNCw0L3QvdC+0Lkg0LLQsNC70Y7RgtC1\n attributes: {}\n :l_date: !ruby/object:DateTime 1998-10-20 00:00:00.000000000 +04:00\n"], ["main_date_reg", Wed, 14 Aug 2002], ["main_reg_number", "1027700128796"], ["org_full_name", "Коммерческий Банк \"Новый Московский Банк\" (Общество с ограниченной ответственностью)"], ["org_name", "НОВЫЙ МОСКОВСКИЙ БАНК"], ["org_status", "норм."], ["phones", "(495) 605-32-53, (495) 605-32-89, (495) 605-78-45"], ["reg_code", 16], ["reg_number", 2932], ["ssv_date", Wed, 02 Feb 2005], ["updated_at", Thu, 13 Feb 2014 19:22:44 UTC +00:00], ["ust_money", 237000000], ["ustav_adr", "123100, г. Москва, Краснопресненская набережная, д.2/1, стр.1"]]
65927
+  (0.5ms) commit transaction
65928
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000014 LIMIT 1
65929
+  (0.1ms) begin transaction
65930
+ SQL (0.3ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:22:44 UTC +00:00], ["date_kgr_registration", Wed, 05 Dec 1990], ["fact_adr", "0, г. Москва, Новоарбатский проспект, д.23"], ["internal_code", 450000014], ["licences", "--- []\n"], ["org_full_name", "АКЦИОНЕРНЫЙ БАНК РАЗВИТИЯ НАРОДНОГО ХОЗЯЙСТВА \"МОСКОВСКИЙ КРЕДИТ\" (АКЦИОНЕРНОЕ ОБЩЕСТВО ЗАКРЫТОГО ТИПА) - БАНК \"МОСКОВСКИЙ КРЕДИТ\""], ["org_name", "МОСКОВСКИЙ КРЕДИТ"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 1101], ["updated_at", Thu, 13 Feb 2014 19:22:44 UTC +00:00], ["ustav_adr", "117049, г. Москва, Ленинский проспект, д.6"]]
65931
+  (0.5ms) commit transaction
65932
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000284 LIMIT 1
65933
+  (0.1ms) begin transaction
65934
+ SQL (0.3ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:22:44 UTC +00:00], ["date_kgr_registration", Fri, 30 Oct 1992], ["fact_adr", "129110, г. Москва, ул.Щепкина, д.61/2"], ["internal_code", 450000284], ["licences", "--- []\n"], ["org_full_name", "Коммерческий банк \"МОСКОВСКИЙ ГОРОДСКОЙ БАНК\" акционерное общество закрытого типа"], ["org_name", "МОСКОВСКИЙ ГОРОДСКОЙ БАНК"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 2144], ["updated_at", Thu, 13 Feb 2014 19:22:44 UTC +00:00], ["ustav_adr", "111402, г. Москва, ул.Кетчерская, д.16"]]
65935
+  (0.5ms) commit transaction
65936
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450001014 LIMIT 1
65937
+  (0.1ms) begin transaction
65938
+ SQL (0.3ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:22:45 UTC +00:00], ["date_kgr_registration", Tue, 18 Apr 1995], ["fact_adr", "129348, г. Москва, Ярославское шоссе, д.13, корп.2"], ["internal_code", 450001014], ["licences", "--- []\n"], ["org_full_name", "коммерческий банк \"МОСКОВСКИЙ ИННОВАЦИОННЫЙ БАНК\" (общество с ограниченной ответственностью)"], ["org_name", "МОСКОВСКИЙ ИННОВАЦИОННЫЙ БАНК"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 3249], ["updated_at", Thu, 13 Feb 2014 19:22:45 UTC +00:00], ["ust_money", 100000], ["ustav_adr", "103101, г. Москва, ул.Садовая-Кудринская, д.24/27, стр.1"]]
65939
+  (0.5ms) commit transaction
65940
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000281 LIMIT 1
65941
+  (0.1ms) begin transaction
65942
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:22:45 UTC +00:00], ["date_kgr_registration", Wed, 04 Nov 1992], ["fact_adr", "107078, г. Москва, ул.Новая Басманная, д.14, стр.1"], ["internal_code", 450000281], ["licences", "--- []\n"], ["org_full_name", "Коммерческий Банк \"Московский Трастовый Банк\""], ["org_name", "МОСКОВСКИЙ ТРАСТОВЫЙ БАНК"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 2141], ["updated_at", Thu, 13 Feb 2014 19:22:45 UTC +00:00], ["ust_money", 8000000], ["ustav_adr", "107078, г. Москва, ул.Новая Басманная, д.14, стр.1"]]
65943
+  (0.5ms) commit transaction
65944
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000468 LIMIT 1
65945
+  (0.1ms) begin transaction
65946
+ SQL (0.3ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:22:45 UTC +00:00], ["date_kgr_registration", Tue, 21 Sep 1993], ["fact_adr", "117198, г. Москва, ул.Миклухо-Маклая, д.11а"], ["internal_code", 450000468], ["licences", "--- []\n"], ["org_full_name", "Коммерческий банк \"Московский\" товарищество с ограниченной ответственностью"], ["org_name", "МОСКОВСКИЙ"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 2502], ["updated_at", Thu, 13 Feb 2014 19:22:45 UTC +00:00], ["ust_money", 14500000], ["ustav_adr", "117198, г. Москва, ул.Миклухо-Маклая, д.11а"]]
65947
+  (0.4ms) commit transaction
65948
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450039307 LIMIT 1
65949
+  (0.1ms) begin transaction
65950
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:22:45 UTC +00:00], ["date_kgr_registration", Mon, 27 Dec 1993], ["fact_adr", "Нет данных"], ["internal_code", 450039307], ["licences", "--- []\n"], ["org_full_name", "Коммерческий банк \"Московский объединенный банк\" (товарищество с ограниченной ответственностью)"], ["org_name", "МОСКОВСКИЙ ОБЪЕДИНЕННЫЙ БАНК"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 2634], ["updated_at", Thu, 13 Feb 2014 19:22:45 UTC +00:00], ["ustav_adr", "107005, г.Москва, Плетешковский пер.. 22"]]
65951
+  (0.5ms) commit transaction
65952
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 460001027 LIMIT 1
65953
+  (0.1ms) begin transaction
65954
+ SQL (0.3ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:22:45 UTC +00:00], ["date_kgr_registration", Mon, 17 Aug 1992], ["fact_adr", "Нет данных"], ["internal_code", 460001027], ["licences", "--- []\n"], ["org_full_name", "Акционерный коммерческий банк \"Московский купеческий банк\""], ["org_name", "МОСКОВСКИЙ КУПЕЧЕСКИЙ БАНК"], ["org_status", "ликвидирована"], ["reg_code", 17], ["reg_number", 2019], ["updated_at", Thu, 13 Feb 2014 19:22:45 UTC +00:00], ["ustav_adr", "103012, г.Москва, ул.Варварка, 8"]]
65955
+  (0.5ms) commit transaction
65956
+  (0.5ms) DELETE FROM "banks";
65957
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65958
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65959
+  (0.0ms) begin transaction
65960
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:22:45 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "Bank in Database"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 19:22:45 UTC +00:00]]
65961
+  (0.3ms) commit transaction
65962
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650 LIMIT 1
65963
+  (0.5ms) DELETE FROM "banks";
65964
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65965
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65966
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650 LIMIT 1
65967
+  (0.1ms) begin transaction
65968
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:22:45 UTC +00:00], ["date_kgr_registration", Tue, 12 May 1992], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["internal_code", 450000650], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 04 Oct 2002], ["main_reg_number", "1027700280937"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["phones", "(495)785-82-25"], ["reg_code", 16], ["reg_number", 316], ["ssv_date", Wed, 10 Nov 2004], ["updated_at", Thu, 13 Feb 2014 19:22:45 UTC +00:00], ["ust_money", 4173000000], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"]]
65969
+  (0.4ms) commit transaction
65970
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650 LIMIT 1
65971
+  (0.6ms) DELETE FROM "banks";
65972
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
65973
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
65974
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000003 LIMIT 1
65975
+  (0.1ms) begin transaction
65976
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "049401814"], ["created_at", Thu, 13 Feb 2014 19:22:46 UTC +00:00], ["date_kgr_registration", Thu, 02 Apr 1992], ["fact_adr", "426008, Удмуртская Республика, г.Ижевск, ул.Пушкинская,268"], ["internal_code", 940000003], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mg==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC+0YHRg9GJ0LXRgdGC0LLQu9C10L3Q\n uNC1INCx0LDQvdC60L7QstGB0LrQuNGFINC+0L/QtdGA0LDRhtC40Lkg0YHQ\n viDRgdGA0LXQtNGB0YLQstCw0LzQuCDQsiDRgNGD0LHQu9GP0YUg0Lgg0LjQ\n vdC+0YHRgtGA0LDQvdC90L7QuSDQstCw0LvRjtGC0LUgKNCx0LXQtyDQv9GA\n 0LDQstCwINC/0YDQuNCy0LvQtdGH0LXQvdC40Y8g0LLQviDQstC60LvQsNC0\n 0Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB0YLQsiDRhNC40LfQuNGH\n 0LXRgdC60LjRhSDQu9C40YYp\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-12-13 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Ng==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB\n 0YLQsiDRhNC40LfQuNGH0LXRgdC60LjRhSDQu9C40YYg0LIg0YDRg9Cx0LvR\n j9GFINC4INC40L3QvtGB0YLRgNCw0L3QvdC+0Lkg0LLQsNC70Y7RgtC1\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-09-13 00:00:00.000000000 +04:00\n"], ["main_date_reg", Tue, 15 Oct 2002], ["main_reg_number", "1021800001508"], ["org_full_name", "Открытое акционерное общество \"БыстроБанк\""], ["org_name", "БЫСТРОБАНК"], ["org_status", "норм."], ["phones", "90-80-70, 90-80-90"], ["reg_code", 54], ["reg_number", 1745], ["ssv_date", Wed, 12 Jan 2005], ["updated_at", Thu, 13 Feb 2014 19:22:46 UTC +00:00], ["ust_money", 397121982], ["ustav_adr", "426008, Удмуртская Республика, г.Ижевск, ул.Пушкинская,268"]]
65977
+  (0.5ms) commit transaction
65978
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000013 LIMIT 1
65979
+  (0.1ms) begin transaction
65980
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:22:46 UTC +00:00], ["date_kgr_registration", Wed, 24 Oct 1990], ["fact_adr", "426057, Удмуртская Республика, г. Ижевск, ул.Красноармейская,182-а"], ["internal_code", 940000013], ["licences", "--- []\n"], ["main_date_reg", Wed, 06 Nov 2002], ["main_reg_number", "1021800002366"], ["org_full_name", "Открытое акционерное общество \"Евроазиатский банк экономического развития\""], ["org_name", "ЕВРАЗИЯ"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 573], ["ssv_date", Tue, 02 Nov 2004], ["updated_at", Thu, 13 Feb 2014 19:22:46 UTC +00:00], ["ust_money", 102403774], ["ustav_adr", "426057, Удмуртская Республика, г. Ижевск, ул.Красноармейская,182-а"]]
65981
+  (0.4ms) commit transaction
65982
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000012 LIMIT 1
65983
+  (0.1ms) begin transaction
65984
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "049401846"], ["created_at", Thu, 13 Feb 2014 19:22:46 UTC +00:00], ["date_kgr_registration", Wed, 15 Apr 1992], ["fact_adr", "426008, Удмуртская Республика, г.Ижевск, ул.Пушкинская, д.268"], ["internal_code", 940000012], ["licences", "--- []\n"], ["main_date_reg", Wed, 09 Oct 2002], ["main_reg_number", "1021800001310"], ["org_full_name", "Удмуртский Пенсионный банк (Открытое акционерное общество)"], ["org_name", "УДМУРТСКИЙ ПЕНСИОННЫЙ БАНК"], ["org_status", "лицензия отозвана"], ["phones", "(3412) 51-02-44"], ["reg_code", 54], ["reg_number", 1764], ["ssv_date", Tue, 07 Dec 2004], ["updated_at", Thu, 13 Feb 2014 19:22:46 UTC +00:00], ["ust_money", 80000000], ["ustav_adr", "426065, Удмуртская Республика, г.Ижевск, ул.Петрова,39а"]]
65985
+  (0.4ms) commit transaction
65986
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000016 LIMIT 1
65987
+  (0.1ms) begin transaction
65988
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:22:46 UTC +00:00], ["date_kgr_registration", Fri, 23 Nov 1990], ["fact_adr", "427790, Удмуртская Республика, г.Можга, ул.Можгинская,62"], ["internal_code", 940000016], ["licences", "--- []\n"], ["main_date_reg", Thu, 24 Oct 2002], ["main_reg_number", "1021800001850"], ["org_full_name", "Общество с ограниченной ответственностью \"Удмуртский промышленно-строительный банк\""], ["org_name", "УДМУРТПРОМСТРОЙБАНК"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 928], ["updated_at", Thu, 13 Feb 2014 19:22:46 UTC +00:00], ["ust_money", 130000000], ["ustav_adr", "427790, Удмуртская Республика, г.Можга, ул.Можгинская,62"]]
65989
+  (0.4ms) commit transaction
65990
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000020 LIMIT 1
65991
+  (0.1ms) begin transaction
65992
+ SQL (0.3ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:22:46 UTC +00:00], ["date_kgr_registration", Tue, 17 Mar 1992], ["fact_adr", "426000, Удмуртская Республика, г.Ижевск, переулок Северный, 61"], ["internal_code", 940000020], ["licences", "--- []\n"], ["main_date_reg", Tue, 12 Nov 2002], ["main_reg_number", "1021800002400"], ["org_full_name", "закрытое акционерное общество \"Коммерческий банк \"С-БАНК\""], ["org_name", "С-БАНК"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 1857], ["ssv_date", Wed, 26 Jan 2005], ["updated_at", Thu, 13 Feb 2014 19:22:46 UTC +00:00], ["ust_money", 14329428], ["ustav_adr", "426000, Удмуртская Республика, г.Ижевск, ул.Пушкинская, 278"]]
65993
+  (0.4ms) commit transaction
65994
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000017 LIMIT 1
65995
+  (0.1ms) begin transaction
65996
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "049401863"], ["created_at", Thu, 13 Feb 2014 19:22:46 UTC +00:00], ["date_kgr_registration", Tue, 03 Aug 1993], ["fact_adr", "426008, Удмуртская Республика, г.Ижевск, ул.Пушкинская, д.268"], ["internal_code", 940000017], ["licences", "--- []\n"], ["main_date_reg", Wed, 11 Sep 2002], ["main_reg_number", "1021800000551"], ["org_full_name", "Акционерный коммерческий Удмуртский инвестиционно-строительный банк (открытое акционерное общество)"], ["org_name", "УДМУРТИНВЕСТСТРОЙБАНК"], ["org_status", "лицензия отозвана"], ["phones", "8(3412)51-02-44"], ["reg_code", 54], ["reg_number", 2447], ["ssv_date", Wed, 22 Dec 2004], ["updated_at", Thu, 13 Feb 2014 19:22:46 UTC +00:00], ["ust_money", 8880000], ["ustav_adr", "426008, Удмуртская Республика, г.Ижевск, ул.Пушкинская, д.268"]]
65997
+  (0.5ms) commit transaction
65998
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000019 LIMIT 1
65999
+  (0.1ms) begin transaction
66000
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "049401825"], ["created_at", Thu, 13 Feb 2014 19:22:46 UTC +00:00], ["date_kgr_registration", Fri, 19 Oct 1990], ["fact_adr", "426008, Удмуртская Республика, г.Ижевск, ул.Пушкинская, д. 268"], ["internal_code", 940000019], ["licences", "--- []\n"], ["main_date_reg", Wed, 21 Aug 2002], ["main_reg_number", "1021800000177"], ["org_full_name", "Открытое акционерное общество \"Мобилбанк\""], ["org_name", "МОБИЛБАНК"], ["org_status", "лицензия отозвана"], ["phones", "8(3412) 510-244, 8(3412) 908-911"], ["reg_code", 54], ["reg_number", 532], ["ssv_date", Wed, 12 Jan 2005], ["updated_at", Thu, 13 Feb 2014 19:22:46 UTC +00:00], ["ust_money", 176668000], ["ustav_adr", "426000, Удмуртская Республика, г.Ижевск, ул.Свободы, 173"]]
66001
+  (0.4ms) commit transaction
66002
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000021 LIMIT 1
66003
+  (0.1ms) begin transaction
66004
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "049401871"], ["created_at", Thu, 13 Feb 2014 19:22:46 UTC +00:00], ["date_kgr_registration", Tue, 30 Oct 1990], ["fact_adr", "426076, Удмуртская Республика, г.Ижевск, ул. Ленина, 30"], ["internal_code", 940000021], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mg==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC+0YHRg9GJ0LXRgdGC0LLQu9C10L3Q\n uNC1INCx0LDQvdC60L7QstGB0LrQuNGFINC+0L/QtdGA0LDRhtC40Lkg0YHQ\n viDRgdGA0LXQtNGB0YLQstCw0LzQuCDQsiDRgNGD0LHQu9GP0YUg0Lgg0LjQ\n vdC+0YHRgtGA0LDQvdC90L7QuSDQstCw0LvRjtGC0LUgKNCx0LXQtyDQv9GA\n 0LDQstCwINC/0YDQuNCy0LvQtdGH0LXQvdC40Y8g0LLQviDQstC60LvQsNC0\n 0Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB0YLQsiDRhNC40LfQuNGH\n 0LXRgdC60LjRhSDQu9C40YYp\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-10-31 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Ng==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB\n 0YLQsiDRhNC40LfQuNGH0LXRgdC60LjRhSDQu9C40YYg0LIg0YDRg9Cx0LvR\n j9GFINC4INC40L3QvtGB0YLRgNCw0L3QvdC+0Lkg0LLQsNC70Y7RgtC1\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-10-31 00:00:00.000000000 +04:00\n"], ["main_date_reg", Wed, 31 Jul 2002], ["main_reg_number", "1021800000090"], ["org_full_name", "Акционерный коммерческий банк \"Ижкомбанк\" (открытое акционерное общество)"], ["org_name", "ИЖКОМБАНК"], ["org_status", "норм."], ["phones", "91-91-00, 91-91-01"], ["reg_code", 54], ["reg_number", 646], ["ssv_date", Tue, 26 Oct 2004], ["updated_at", Thu, 13 Feb 2014 19:22:46 UTC +00:00], ["ust_money", 341615722], ["ustav_adr", "426076, Удмуртская Республика, г.Ижевск, ул. Ленина, 30"]]
66005
+  (0.5ms) commit transaction
66006
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000022 LIMIT 1
66007
+  (0.1ms) begin transaction
66008
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:22:46 UTC +00:00], ["date_kgr_registration", Wed, 31 Oct 1990], ["fact_adr", "426076, Удмуртская Республика, г. Ижевск, ул. Ленина, 44-a"], ["internal_code", 940000022], ["licences", "--- []\n"], ["main_date_reg", Thu, 17 Oct 2002], ["main_reg_number", "1021800001520"], ["org_full_name", "Общество с ограниченной ответственностью \"Коммерческий банк \"Первомайский\""], ["org_name", "ПЕРВОМАЙСКИЙ"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 652], ["updated_at", Thu, 13 Feb 2014 19:22:46 UTC +00:00], ["ust_money", 170650000], ["ustav_adr", "426076, Удмуртская Республика, г. Ижевск, ул. Ленина, 44-a"]]
66009
+  (0.5ms) commit transaction
66010
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000014 LIMIT 1
66011
+  (0.1ms) begin transaction
66012
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "049401869"], ["created_at", Thu, 13 Feb 2014 19:22:47 UTC +00:00], ["date_kgr_registration", Tue, 05 Oct 1993], ["fact_adr", "426008, Удмуртская Республика, г. Ижевск, ул. Пушкинская, 268"], ["internal_code", 940000014], ["licences", "--- []\n"], ["main_date_reg", Mon, 07 Oct 2002], ["main_reg_number", "1021800001190"], ["org_full_name", "Открытое акционерное общество \"УРАЛЬСКИЙ ТРАСТОВЫЙ БАНК\""], ["org_name", "УРАЛЬСКИЙ ТРАСТОВЫЙ БАНК"], ["org_status", "лицензия отозвана"], ["phones", "43-91-75, 51-02-44"], ["reg_code", 54], ["reg_number", 2523], ["ssv_date", Wed, 12 Jan 2005], ["updated_at", Thu, 13 Feb 2014 19:22:47 UTC +00:00], ["ust_money", 300000000], ["ustav_adr", "426008, Удмуртская Республика, г. Ижевск, ул. Пушкинская, 268"]]
66013
+  (0.4ms) commit transaction
66014
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000011 LIMIT 1
66015
+  (0.1ms) begin transaction
66016
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:22:47 UTC +00:00], ["date_kgr_registration", Thu, 04 Aug 1994], ["fact_adr", "426034, г. Ижевск, ул. Лихвинцева, 76"], ["internal_code", 940000011], ["licences", "--- []\n"], ["org_full_name", "ЗАКРЫТОЕ АКЦИОНЕРНОЕ ОБЩЕСТВО \"УДМУРТСКИЙ УНИВЕРСАЛЬНЫЙ КОММЕРЧЕСКИЙ БАНК\" (ЗАО \"УДМУРТУНИКОМБАНК\")"], ["org_name", "УДМУРТУНИКОМБАНК"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 3043], ["updated_at", Thu, 13 Feb 2014 19:22:47 UTC +00:00], ["ustav_adr", "426076, Удмуртская Республика, г.Ижевск, ул.Лихвинцева, 76"]]
66017
+  (0.5ms) commit transaction
66018
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000023 LIMIT 1
66019
+  (0.1ms) begin transaction
66020
+ SQL (0.3ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:22:47 UTC +00:00], ["date_kgr_registration", Fri, 11 Sep 1992], ["fact_adr", "426003, Удмуртская Республика, г.Ижевск, ул.К.Маркса,1"], ["internal_code", 940000023], ["licences", "--- []\n"], ["org_full_name", "Удмуртский народный коммерческий банк \"Азвесь\" (товарищество с ограниченной ответственностью)"], ["org_name", "АЗВЕСЬ"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2072], ["updated_at", Thu, 13 Feb 2014 19:22:47 UTC +00:00], ["ustav_adr", "426076, Удмуртская Республика, г.Ижевск, ул.Ленина, 29"]]
66021
+  (0.5ms) commit transaction
66022
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000024 LIMIT 1
66023
+  (0.1ms) begin transaction
66024
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:22:47 UTC +00:00], ["date_kgr_registration", Fri, 15 Jan 1993], ["fact_adr", "427410, Удмуртская Республика, г. Воткинск, ул. Ленина , 5"], ["internal_code", 940000024], ["licences", "--- []\n"], ["org_full_name", "Муниципальный коммерческий банк \"Воткинскинкомбанк\" (товарищество с ограниченной ответственностью)"], ["org_name", "ВОТКИНСКИНКОМБАНК"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2236], ["updated_at", Thu, 13 Feb 2014 19:22:47 UTC +00:00], ["ust_money", 600000], ["ustav_adr", "427410, Удмуртская ССР, г.Воткинск, ул.Ленина, 5"]]
66025
+  (0.4ms) commit transaction
66026
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000028 LIMIT 1
66027
+  (0.1ms) begin transaction
66028
+ SQL (0.3ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:22:47 UTC +00:00], ["date_kgr_registration", Thu, 12 Aug 1993], ["fact_adr", "426057, Удмуртская Республика, г.Ижевск, ул. Горького, 54"], ["internal_code", 940000028], ["licences", "--- []\n"], ["org_full_name", "Акционерный коммерческий банк \"Агрогражданстрой\""], ["org_name", "АГСБАНК"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2459], ["updated_at", Thu, 13 Feb 2014 19:22:47 UTC +00:00], ["ustav_adr", "426057, Удмуртская Республика, г.Ижевск, ул. Горького, 54"]]
66029
+  (0.4ms) commit transaction
66030
+ Bank Load (0.3ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000029 LIMIT 1
66031
+  (0.1ms) begin transaction
66032
+ SQL (0.3ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:22:47 UTC +00:00], ["date_kgr_registration", Mon, 17 Aug 1992], ["fact_adr", "426069, Удмуртская Республика, г. Ижевск, ул. Песочная, 9"], ["internal_code", 940000029], ["licences", "--- []\n"], ["org_full_name", "Коммерческий банк \"Аксион\""], ["org_name", "АКСИОН"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2007], ["updated_at", Thu, 13 Feb 2014 19:22:47 UTC +00:00], ["ustav_adr", "426069, Удмуртская Республика, г. Ижевск, ул. Песочная, 9"]]
66033
+  (0.5ms) commit transaction
66034
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000015 LIMIT 1
66035
+  (0.1ms) begin transaction
66036
+ SQL (0.3ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:22:47 UTC +00:00], ["date_kgr_registration", Fri, 10 Jun 1994], ["fact_adr", "427410, Удмуртская Республика, г. Воткинск, ул. Ленина , 5"], ["internal_code", 940000015], ["licences", "--- []\n"], ["org_full_name", "Коммерческий банк \"ИЖМАШБАНК\" (Товарищество с ограниченной ответственностью)"], ["org_name", "ИЖМАШБАНК"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2882], ["updated_at", Thu, 13 Feb 2014 19:22:47 UTC +00:00], ["ust_money", 6512000], ["ustav_adr", "426006, Удмуртская Республика, г.Ижевск, ул.Дерябина, 1"]]
66037
+  (0.5ms) commit transaction
66038
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000018 LIMIT 1
66039
+  (0.1ms) begin transaction
66040
+ SQL (0.3ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:22:47 UTC +00:00], ["date_kgr_registration", Fri, 08 Oct 1993], ["fact_adr", "426057, Удмуртская Республика, г. Ижевск, ул. Свободы, 173"], ["internal_code", 940000018], ["licences", "--- []\n"], ["org_full_name", "Ижевский коммерческий банк \"Почтовый\" - открытое акционерное общество"], ["org_name", "ПОЧТОВЫЙ"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2527], ["updated_at", Thu, 13 Feb 2014 19:22:47 UTC +00:00], ["ust_money", 7300000], ["ustav_adr", ", г.Ижевск, ул.Свободы, 173"]]
66041
+  (0.5ms) commit transaction
66042
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000031 LIMIT 1
66043
+  (0.1ms) begin transaction
66044
+ SQL (0.3ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:22:47 UTC +00:00], ["date_kgr_registration", Thu, 08 Jul 1993], ["fact_adr", "426011, Удмуртская Республика, г.Ижевск, ул.Пушкинская,373"], ["internal_code", 940000031], ["licences", "--- []\n"], ["org_full_name", "Акционерный банк \"Конверсия\" (открытое акционерное общество)"], ["org_name", "КОНВЕРСИЯ"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2413], ["updated_at", Thu, 13 Feb 2014 19:22:47 UTC +00:00], ["ust_money", 2315000], ["ustav_adr", "426000, Удмурдская Республика, г.Ижевск, ул.Пушкинская, 373"]]
66045
+  (0.5ms) commit transaction
66046
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000030 LIMIT 1
66047
+  (0.1ms) begin transaction
66048
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:22:47 UTC +00:00], ["date_kgr_registration", Thu, 04 Aug 1994], ["fact_adr", "426000, Удмуртская Республика, г.Ижевск, переулок Северный, 61"], ["internal_code", 940000030], ["licences", "--- []\n"], ["org_full_name", "акционерный коммерческий банк \"ЦЕНТ\" (акционерное общество закрытого типа)"], ["org_name", "ЦЕНТ"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 3020], ["updated_at", Thu, 13 Feb 2014 19:22:47 UTC +00:00], ["ustav_adr", "426000, Удмуртская Республика, г.Ижевск, переулок Северный, 61"]]
66049
+  (0.5ms) commit transaction
66050
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000025 LIMIT 1
66051
+  (0.1ms) begin transaction
66052
+ SQL (0.3ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:22:48 UTC +00:00], ["date_kgr_registration", Tue, 18 Aug 1992], ["fact_adr", "426033, Удмуртская Республика, г. Ижевск, ул.Береговая,11"], ["internal_code", 940000025], ["licences", "--- []\n"], ["org_full_name", "коммерческий банк \"ИГЕРМАН\""], ["org_name", "ИГЕРМАН"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2017], ["updated_at", Thu, 13 Feb 2014 19:22:48 UTC +00:00], ["ustav_adr", "426033, Удмуртская Республика, г. Ижевск, ул.Береговая,11"]]
66053
+  (0.5ms) commit transaction
66054
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000532 LIMIT 1
66055
+  (0.1ms) begin transaction
66056
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:22:48 UTC +00:00], ["date_kgr_registration", Wed, 28 Nov 1990], ["fact_adr", "Нет данных"], ["internal_code", 940000532], ["licences", "--- []\n"], ["org_full_name", "ШАРКАНСКИЙ КОММЕРЧЕСКИЙ БАНК"], ["org_name", "ШАРКАНСКИЙ"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 984], ["updated_at", Thu, 13 Feb 2014 19:22:48 UTC +00:00], ["ustav_adr", "427440, Удмуртская Республика, с.Шаркан, ул.Советская, 34"]]
66057
+  (0.5ms) commit transaction
66058
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000533 LIMIT 1
66059
+  (0.1ms) begin transaction
66060
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:22:48 UTC +00:00], ["date_kgr_registration", Thu, 27 Aug 1992], ["fact_adr", "Нет данных"], ["internal_code", 940000533], ["licences", "--- []\n"], ["org_full_name", "Коммерческий банк \"Соцкультбанк\""], ["org_name", "СОЦКУЛЬТБАНК"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2031], ["updated_at", Thu, 13 Feb 2014 19:22:48 UTC +00:00], ["ustav_adr", "426024, Удмуртская Республика, г.Ижевск, ул.Бородина, 21"]]
66061
+  (0.5ms) commit transaction
66062
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000534 LIMIT 1
66063
+  (0.1ms) begin transaction
66064
+ SQL (0.3ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:22:48 UTC +00:00], ["date_kgr_registration", Wed, 24 Oct 1990], ["fact_adr", "Нет данных"], ["internal_code", 940000534], ["licences", "--- []\n"], ["org_full_name", "Удмуртский сельскохозяйственный коммерческий банк\"Удмуртсельхозбанк\""], ["org_name", "УДМУРТСЕЛЬХОЗБАНК"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 569], ["updated_at", Thu, 13 Feb 2014 19:22:48 UTC +00:00], ["ustav_adr", "426058, Удмуртская Республика, г.Ижевск, ул.Красноармейская,д.159"]]
66065
+  (0.4ms) commit transaction
66066
+  (0.5ms) DELETE FROM "banks";
66067
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66068
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
66069
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650 LIMIT 1
66070
+  (0.1ms) begin transaction
66071
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:22:48 UTC +00:00], ["date_kgr_registration", Tue, 12 May 1992], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["internal_code", 450000650], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 04 Oct 2002], ["main_reg_number", "1027700280937"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["phones", "(495)785-82-25"], ["reg_code", 16], ["reg_number", 316], ["ssv_date", Wed, 10 Nov 2004], ["updated_at", Thu, 13 Feb 2014 19:22:48 UTC +00:00], ["ust_money", 4173000000], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"]]
66072
+  (0.5ms) commit transaction
66073
+  (0.4ms) DELETE FROM "banks";
66074
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66075
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
66076
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650999999 LIMIT 1
66077
+  (0.6ms) DELETE FROM "banks";
66078
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66079
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'banks';
66080
+  (0.0ms) begin transaction
66081
+ SQL (0.2ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:22:48 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "Bank in Database"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 289375237580009], ["updated_at", Thu, 13 Feb 2014 19:22:48 UTC +00:00]]
66082
+  (0.4ms) commit transaction
66083
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650 LIMIT 1
66084
+  (0.5ms) DELETE FROM "banks";
66085
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66086
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
66087
+  (0.0ms) begin transaction
66088
+ SQL (0.2ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:22:48 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "Old name"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Mon, 13 Jan 2014 19:22:48 UTC +00:00]]
66089
+  (0.4ms) commit transaction
66090
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650 LIMIT 1
66091
+  (0.6ms) DELETE FROM "banks";
66092
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66093
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'banks';
66094
+  (0.1ms) SELECT COUNT(*) FROM "banks"
66095
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650 LIMIT 1
66096
+  (0.1ms) begin transaction
66097
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:22:48 UTC +00:00], ["date_kgr_registration", Tue, 12 May 1992], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["internal_code", 450000650], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 04 Oct 2002], ["main_reg_number", "1027700280937"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["phones", "(495)785-82-25"], ["reg_code", 16], ["reg_number", 316], ["ssv_date", Wed, 10 Nov 2004], ["updated_at", Thu, 13 Feb 2014 19:22:48 UTC +00:00], ["ust_money", 4173000000], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"]]
66098
+  (0.5ms) commit transaction
66099
+  (0.1ms) SELECT COUNT(*) FROM "banks"
66100
+  (0.5ms) DELETE FROM "banks";
66101
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66102
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
66103
+  (0.0ms) begin transaction
66104
+ SQL (0.2ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:22:48 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 19:22:48 UTC +00:00]]
66105
+  (0.4ms) commit transaction
66106
+  (0.1ms) SELECT COUNT(*) FROM "banks"
66107
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650 LIMIT 1
66108
+  (0.1ms) SELECT COUNT(*) FROM "banks"
66109
+  (0.4ms) DELETE FROM "banks";
66110
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66111
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
66112
+  (0.1ms) begin transaction
66113
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:22:48 UTC +00:00], ["internal_code", 450000650], ["licences", "--- []\n"], ["org_name", "Bank in Database"], ["org_status", "лицензия отозвана"], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 19:22:48 UTC +00:00]]
66114
+  (0.4ms) commit transaction
66115
+  (0.0ms) begin transaction
66116
+ SQL (0.2ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:22:48 UTC +00:00], ["internal_code", 450000650], ["licences", "---\n- :l_code: '3'\n :lt: Лицензия 4\n :l_date: '2007-12-20T00:00:00+04:00'\n"], ["org_name", "Bank in Database"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 19:22:48 UTC +00:00]]
66117
+  (0.4ms) commit transaction
66118
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
66119
+  (0.7ms) DELETE FROM "banks";
66120
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66121
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'banks';
66122
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650999999 LIMIT 1
66123
+  (0.5ms) DELETE FROM "banks";
66124
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66125
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'banks';
66126
+  (0.1ms) SELECT COUNT(*) FROM "banks"
66127
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650 LIMIT 1
66128
+  (0.1ms) begin transaction
66129
+ SQL (2.1ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:24:04 UTC +00:00], ["date_kgr_registration", Tue, 12 May 1992], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["internal_code", 450000650], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 04 Oct 2002], ["main_reg_number", "1027700280937"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["phones", "(495)785-82-25"], ["reg_code", 16], ["reg_number", 316], ["ssv_date", Wed, 10 Nov 2004], ["updated_at", Thu, 13 Feb 2014 19:24:04 UTC +00:00], ["ust_money", 4173000000], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"]]
66130
+  (0.5ms) commit transaction
66131
+  (0.1ms) SELECT COUNT(*) FROM "banks"
66132
+  (0.5ms) DELETE FROM "banks";
66133
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66134
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
66135
+  (0.0ms) begin transaction
66136
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:24:04 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 19:24:04 UTC +00:00]]
66137
+  (0.4ms) commit transaction
66138
+  (0.1ms) SELECT COUNT(*) FROM "banks"
66139
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650 LIMIT 1
66140
+  (0.1ms) SELECT COUNT(*) FROM "banks"
66141
+  (0.5ms) DELETE FROM "banks";
66142
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66143
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
66144
+  (0.0ms) begin transaction
66145
+ SQL (0.2ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:24:04 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "Bank in Database"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 289375237580009], ["updated_at", Thu, 13 Feb 2014 19:24:04 UTC +00:00]]
66146
+  (0.4ms) commit transaction
66147
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650 LIMIT 1
66148
+  (0.5ms) DELETE FROM "banks";
66149
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66150
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
66151
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650 LIMIT 1
66152
+  (0.1ms) begin transaction
66153
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:24:04 UTC +00:00], ["date_kgr_registration", Tue, 12 May 1992], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["internal_code", 450000650], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 04 Oct 2002], ["main_reg_number", "1027700280937"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["phones", "(495)785-82-25"], ["reg_code", 16], ["reg_number", 316], ["ssv_date", Wed, 10 Nov 2004], ["updated_at", Thu, 13 Feb 2014 19:24:04 UTC +00:00], ["ust_money", 4173000000], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"]]
66154
+  (0.4ms) commit transaction
66155
+  (0.5ms) DELETE FROM "banks";
66156
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66157
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'banks';
66158
+  (0.0ms) begin transaction
66159
+ SQL (0.2ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:24:04 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "Old name"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Mon, 13 Jan 2014 19:24:04 UTC +00:00]]
66160
+  (0.3ms) commit transaction
66161
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650 LIMIT 1
66162
+  (0.1ms) begin transaction
66163
+ SQL (0.4ms) UPDATE "banks" SET "org_name" = ?, "org_full_name" = ?, "phones" = ?, "date_kgr_registration" = ?, "main_reg_number" = ?, "main_date_reg" = ?, "ustav_adr" = ?, "fact_adr" = ?, "ust_money" = ?, "ssv_date" = ?, "licences" = ?, "updated_at" = ? WHERE "banks"."id" = 1 [["org_name", "ХКФ БАНК"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["phones", "(495)785-82-25"], ["date_kgr_registration", Tue, 12 May 1992], ["main_reg_number", "1027700280937"], ["main_date_reg", Fri, 04 Oct 2002], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["ust_money", 4173000000], ["ssv_date", Wed, 10 Nov 2004], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["updated_at", Thu, 13 Feb 2014 19:24:04 UTC +00:00]]
66164
+  (0.4ms) commit transaction
66165
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
66166
+  (0.4ms) DELETE FROM "banks";
66167
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66168
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
66169
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000003 LIMIT 1
66170
+  (0.1ms) begin transaction
66171
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "049401814"], ["created_at", Thu, 13 Feb 2014 19:24:04 UTC +00:00], ["date_kgr_registration", Thu, 02 Apr 1992], ["fact_adr", "426008, Удмуртская Республика, г.Ижевск, ул.Пушкинская,268"], ["internal_code", 940000003], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mg==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC+0YHRg9GJ0LXRgdGC0LLQu9C10L3Q\n uNC1INCx0LDQvdC60L7QstGB0LrQuNGFINC+0L/QtdGA0LDRhtC40Lkg0YHQ\n viDRgdGA0LXQtNGB0YLQstCw0LzQuCDQsiDRgNGD0LHQu9GP0YUg0Lgg0LjQ\n vdC+0YHRgtGA0LDQvdC90L7QuSDQstCw0LvRjtGC0LUgKNCx0LXQtyDQv9GA\n 0LDQstCwINC/0YDQuNCy0LvQtdGH0LXQvdC40Y8g0LLQviDQstC60LvQsNC0\n 0Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB0YLQsiDRhNC40LfQuNGH\n 0LXRgdC60LjRhSDQu9C40YYp\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-12-13 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Ng==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB\n 0YLQsiDRhNC40LfQuNGH0LXRgdC60LjRhSDQu9C40YYg0LIg0YDRg9Cx0LvR\n j9GFINC4INC40L3QvtGB0YLRgNCw0L3QvdC+0Lkg0LLQsNC70Y7RgtC1\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-09-13 00:00:00.000000000 +04:00\n"], ["main_date_reg", Tue, 15 Oct 2002], ["main_reg_number", "1021800001508"], ["org_full_name", "Открытое акционерное общество \"БыстроБанк\""], ["org_name", "БЫСТРОБАНК"], ["org_status", "норм."], ["phones", "90-80-70, 90-80-90"], ["reg_code", 54], ["reg_number", 1745], ["ssv_date", Wed, 12 Jan 2005], ["updated_at", Thu, 13 Feb 2014 19:24:04 UTC +00:00], ["ust_money", 397121982], ["ustav_adr", "426008, Удмуртская Республика, г.Ижевск, ул.Пушкинская,268"]]
66172
+  (0.4ms) commit transaction
66173
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000013 LIMIT 1
66174
+  (0.1ms) begin transaction
66175
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:24:04 UTC +00:00], ["date_kgr_registration", Wed, 24 Oct 1990], ["fact_adr", "426057, Удмуртская Республика, г. Ижевск, ул.Красноармейская,182-а"], ["internal_code", 940000013], ["licences", "--- []\n"], ["main_date_reg", Wed, 06 Nov 2002], ["main_reg_number", "1021800002366"], ["org_full_name", "Открытое акционерное общество \"Евроазиатский банк экономического развития\""], ["org_name", "ЕВРАЗИЯ"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 573], ["ssv_date", Tue, 02 Nov 2004], ["updated_at", Thu, 13 Feb 2014 19:24:04 UTC +00:00], ["ust_money", 102403774], ["ustav_adr", "426057, Удмуртская Республика, г. Ижевск, ул.Красноармейская,182-а"]]
66176
+  (0.4ms) commit transaction
66177
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000012 LIMIT 1
66178
+  (0.1ms) begin transaction
66179
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "049401846"], ["created_at", Thu, 13 Feb 2014 19:24:04 UTC +00:00], ["date_kgr_registration", Wed, 15 Apr 1992], ["fact_adr", "426008, Удмуртская Республика, г.Ижевск, ул.Пушкинская, д.268"], ["internal_code", 940000012], ["licences", "--- []\n"], ["main_date_reg", Wed, 09 Oct 2002], ["main_reg_number", "1021800001310"], ["org_full_name", "Удмуртский Пенсионный банк (Открытое акционерное общество)"], ["org_name", "УДМУРТСКИЙ ПЕНСИОННЫЙ БАНК"], ["org_status", "лицензия отозвана"], ["phones", "(3412) 51-02-44"], ["reg_code", 54], ["reg_number", 1764], ["ssv_date", Tue, 07 Dec 2004], ["updated_at", Thu, 13 Feb 2014 19:24:04 UTC +00:00], ["ust_money", 80000000], ["ustav_adr", "426065, Удмуртская Республика, г.Ижевск, ул.Петрова,39а"]]
66180
+  (0.5ms) commit transaction
66181
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000016 LIMIT 1
66182
+  (0.1ms) begin transaction
66183
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:24:04 UTC +00:00], ["date_kgr_registration", Fri, 23 Nov 1990], ["fact_adr", "427790, Удмуртская Республика, г.Можга, ул.Можгинская,62"], ["internal_code", 940000016], ["licences", "--- []\n"], ["main_date_reg", Thu, 24 Oct 2002], ["main_reg_number", "1021800001850"], ["org_full_name", "Общество с ограниченной ответственностью \"Удмуртский промышленно-строительный банк\""], ["org_name", "УДМУРТПРОМСТРОЙБАНК"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 928], ["updated_at", Thu, 13 Feb 2014 19:24:04 UTC +00:00], ["ust_money", 130000000], ["ustav_adr", "427790, Удмуртская Республика, г.Можга, ул.Можгинская,62"]]
66184
+  (0.4ms) commit transaction
66185
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000020 LIMIT 1
66186
+  (0.1ms) begin transaction
66187
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:24:04 UTC +00:00], ["date_kgr_registration", Tue, 17 Mar 1992], ["fact_adr", "426000, Удмуртская Республика, г.Ижевск, переулок Северный, 61"], ["internal_code", 940000020], ["licences", "--- []\n"], ["main_date_reg", Tue, 12 Nov 2002], ["main_reg_number", "1021800002400"], ["org_full_name", "закрытое акционерное общество \"Коммерческий банк \"С-БАНК\""], ["org_name", "С-БАНК"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 1857], ["ssv_date", Wed, 26 Jan 2005], ["updated_at", Thu, 13 Feb 2014 19:24:04 UTC +00:00], ["ust_money", 14329428], ["ustav_adr", "426000, Удмуртская Республика, г.Ижевск, ул.Пушкинская, 278"]]
66188
+  (0.5ms) commit transaction
66189
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000017 LIMIT 1
66190
+  (0.1ms) begin transaction
66191
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "049401863"], ["created_at", Thu, 13 Feb 2014 19:24:05 UTC +00:00], ["date_kgr_registration", Tue, 03 Aug 1993], ["fact_adr", "426008, Удмуртская Республика, г.Ижевск, ул.Пушкинская, д.268"], ["internal_code", 940000017], ["licences", "--- []\n"], ["main_date_reg", Wed, 11 Sep 2002], ["main_reg_number", "1021800000551"], ["org_full_name", "Акционерный коммерческий Удмуртский инвестиционно-строительный банк (открытое акционерное общество)"], ["org_name", "УДМУРТИНВЕСТСТРОЙБАНК"], ["org_status", "лицензия отозвана"], ["phones", "8(3412)51-02-44"], ["reg_code", 54], ["reg_number", 2447], ["ssv_date", Wed, 22 Dec 2004], ["updated_at", Thu, 13 Feb 2014 19:24:05 UTC +00:00], ["ust_money", 8880000], ["ustav_adr", "426008, Удмуртская Республика, г.Ижевск, ул.Пушкинская, д.268"]]
66192
+  (0.5ms) commit transaction
66193
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000019 LIMIT 1
66194
+  (0.1ms) begin transaction
66195
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "049401825"], ["created_at", Thu, 13 Feb 2014 19:24:05 UTC +00:00], ["date_kgr_registration", Fri, 19 Oct 1990], ["fact_adr", "426008, Удмуртская Республика, г.Ижевск, ул.Пушкинская, д. 268"], ["internal_code", 940000019], ["licences", "--- []\n"], ["main_date_reg", Wed, 21 Aug 2002], ["main_reg_number", "1021800000177"], ["org_full_name", "Открытое акционерное общество \"Мобилбанк\""], ["org_name", "МОБИЛБАНК"], ["org_status", "лицензия отозвана"], ["phones", "8(3412) 510-244, 8(3412) 908-911"], ["reg_code", 54], ["reg_number", 532], ["ssv_date", Wed, 12 Jan 2005], ["updated_at", Thu, 13 Feb 2014 19:24:05 UTC +00:00], ["ust_money", 176668000], ["ustav_adr", "426000, Удмуртская Республика, г.Ижевск, ул.Свободы, 173"]]
66196
+  (0.5ms) commit transaction
66197
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000021 LIMIT 1
66198
+  (0.1ms) begin transaction
66199
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "049401871"], ["created_at", Thu, 13 Feb 2014 19:24:05 UTC +00:00], ["date_kgr_registration", Tue, 30 Oct 1990], ["fact_adr", "426076, Удмуртская Республика, г.Ижевск, ул. Ленина, 30"], ["internal_code", 940000021], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mg==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC+0YHRg9GJ0LXRgdGC0LLQu9C10L3Q\n uNC1INCx0LDQvdC60L7QstGB0LrQuNGFINC+0L/QtdGA0LDRhtC40Lkg0YHQ\n viDRgdGA0LXQtNGB0YLQstCw0LzQuCDQsiDRgNGD0LHQu9GP0YUg0Lgg0LjQ\n vdC+0YHRgtGA0LDQvdC90L7QuSDQstCw0LvRjtGC0LUgKNCx0LXQtyDQv9GA\n 0LDQstCwINC/0YDQuNCy0LvQtdGH0LXQvdC40Y8g0LLQviDQstC60LvQsNC0\n 0Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB0YLQsiDRhNC40LfQuNGH\n 0LXRgdC60LjRhSDQu9C40YYp\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-10-31 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Ng==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB\n 0YLQsiDRhNC40LfQuNGH0LXRgdC60LjRhSDQu9C40YYg0LIg0YDRg9Cx0LvR\n j9GFINC4INC40L3QvtGB0YLRgNCw0L3QvdC+0Lkg0LLQsNC70Y7RgtC1\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-10-31 00:00:00.000000000 +04:00\n"], ["main_date_reg", Wed, 31 Jul 2002], ["main_reg_number", "1021800000090"], ["org_full_name", "Акционерный коммерческий банк \"Ижкомбанк\" (открытое акционерное общество)"], ["org_name", "ИЖКОМБАНК"], ["org_status", "норм."], ["phones", "91-91-00, 91-91-01"], ["reg_code", 54], ["reg_number", 646], ["ssv_date", Tue, 26 Oct 2004], ["updated_at", Thu, 13 Feb 2014 19:24:05 UTC +00:00], ["ust_money", 341615722], ["ustav_adr", "426076, Удмуртская Республика, г.Ижевск, ул. Ленина, 30"]]
66200
+  (0.5ms) commit transaction
66201
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000022 LIMIT 1
66202
+  (0.1ms) begin transaction
66203
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:24:05 UTC +00:00], ["date_kgr_registration", Wed, 31 Oct 1990], ["fact_adr", "426076, Удмуртская Республика, г. Ижевск, ул. Ленина, 44-a"], ["internal_code", 940000022], ["licences", "--- []\n"], ["main_date_reg", Thu, 17 Oct 2002], ["main_reg_number", "1021800001520"], ["org_full_name", "Общество с ограниченной ответственностью \"Коммерческий банк \"Первомайский\""], ["org_name", "ПЕРВОМАЙСКИЙ"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 652], ["updated_at", Thu, 13 Feb 2014 19:24:05 UTC +00:00], ["ust_money", 170650000], ["ustav_adr", "426076, Удмуртская Республика, г. Ижевск, ул. Ленина, 44-a"]]
66204
+  (0.5ms) commit transaction
66205
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000014 LIMIT 1
66206
+  (0.1ms) begin transaction
66207
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "049401869"], ["created_at", Thu, 13 Feb 2014 19:24:05 UTC +00:00], ["date_kgr_registration", Tue, 05 Oct 1993], ["fact_adr", "426008, Удмуртская Республика, г. Ижевск, ул. Пушкинская, 268"], ["internal_code", 940000014], ["licences", "--- []\n"], ["main_date_reg", Mon, 07 Oct 2002], ["main_reg_number", "1021800001190"], ["org_full_name", "Открытое акционерное общество \"УРАЛЬСКИЙ ТРАСТОВЫЙ БАНК\""], ["org_name", "УРАЛЬСКИЙ ТРАСТОВЫЙ БАНК"], ["org_status", "лицензия отозвана"], ["phones", "43-91-75, 51-02-44"], ["reg_code", 54], ["reg_number", 2523], ["ssv_date", Wed, 12 Jan 2005], ["updated_at", Thu, 13 Feb 2014 19:24:05 UTC +00:00], ["ust_money", 300000000], ["ustav_adr", "426008, Удмуртская Республика, г. Ижевск, ул. Пушкинская, 268"]]
66208
+  (0.5ms) commit transaction
66209
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000011 LIMIT 1
66210
+  (0.1ms) begin transaction
66211
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:24:05 UTC +00:00], ["date_kgr_registration", Thu, 04 Aug 1994], ["fact_adr", "426034, г. Ижевск, ул. Лихвинцева, 76"], ["internal_code", 940000011], ["licences", "--- []\n"], ["org_full_name", "ЗАКРЫТОЕ АКЦИОНЕРНОЕ ОБЩЕСТВО \"УДМУРТСКИЙ УНИВЕРСАЛЬНЫЙ КОММЕРЧЕСКИЙ БАНК\" (ЗАО \"УДМУРТУНИКОМБАНК\")"], ["org_name", "УДМУРТУНИКОМБАНК"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 3043], ["updated_at", Thu, 13 Feb 2014 19:24:05 UTC +00:00], ["ustav_adr", "426076, Удмуртская Республика, г.Ижевск, ул.Лихвинцева, 76"]]
66212
+  (1.1ms) commit transaction
66213
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000023 LIMIT 1
66214
+  (0.1ms) begin transaction
66215
+ SQL (0.3ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:24:05 UTC +00:00], ["date_kgr_registration", Fri, 11 Sep 1992], ["fact_adr", "426003, Удмуртская Республика, г.Ижевск, ул.К.Маркса,1"], ["internal_code", 940000023], ["licences", "--- []\n"], ["org_full_name", "Удмуртский народный коммерческий банк \"Азвесь\" (товарищество с ограниченной ответственностью)"], ["org_name", "АЗВЕСЬ"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2072], ["updated_at", Thu, 13 Feb 2014 19:24:05 UTC +00:00], ["ustav_adr", "426076, Удмуртская Республика, г.Ижевск, ул.Ленина, 29"]]
66216
+  (0.5ms) commit transaction
66217
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000024 LIMIT 1
66218
+  (0.1ms) begin transaction
66219
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:24:05 UTC +00:00], ["date_kgr_registration", Fri, 15 Jan 1993], ["fact_adr", "427410, Удмуртская Республика, г. Воткинск, ул. Ленина , 5"], ["internal_code", 940000024], ["licences", "--- []\n"], ["org_full_name", "Муниципальный коммерческий банк \"Воткинскинкомбанк\" (товарищество с ограниченной ответственностью)"], ["org_name", "ВОТКИНСКИНКОМБАНК"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2236], ["updated_at", Thu, 13 Feb 2014 19:24:05 UTC +00:00], ["ust_money", 600000], ["ustav_adr", "427410, Удмуртская ССР, г.Воткинск, ул.Ленина, 5"]]
66220
+  (0.5ms) commit transaction
66221
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000028 LIMIT 1
66222
+  (0.1ms) begin transaction
66223
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:24:05 UTC +00:00], ["date_kgr_registration", Thu, 12 Aug 1993], ["fact_adr", "426057, Удмуртская Республика, г.Ижевск, ул. Горького, 54"], ["internal_code", 940000028], ["licences", "--- []\n"], ["org_full_name", "Акционерный коммерческий банк \"Агрогражданстрой\""], ["org_name", "АГСБАНК"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2459], ["updated_at", Thu, 13 Feb 2014 19:24:05 UTC +00:00], ["ustav_adr", "426057, Удмуртская Республика, г.Ижевск, ул. Горького, 54"]]
66224
+  (0.5ms) commit transaction
66225
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000029 LIMIT 1
66226
+  (0.1ms) begin transaction
66227
+ SQL (0.3ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:24:06 UTC +00:00], ["date_kgr_registration", Mon, 17 Aug 1992], ["fact_adr", "426069, Удмуртская Республика, г. Ижевск, ул. Песочная, 9"], ["internal_code", 940000029], ["licences", "--- []\n"], ["org_full_name", "Коммерческий банк \"Аксион\""], ["org_name", "АКСИОН"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2007], ["updated_at", Thu, 13 Feb 2014 19:24:06 UTC +00:00], ["ustav_adr", "426069, Удмуртская Республика, г. Ижевск, ул. Песочная, 9"]]
66228
+  (0.4ms) commit transaction
66229
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000015 LIMIT 1
66230
+  (0.1ms) begin transaction
66231
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:24:06 UTC +00:00], ["date_kgr_registration", Fri, 10 Jun 1994], ["fact_adr", "427410, Удмуртская Республика, г. Воткинск, ул. Ленина , 5"], ["internal_code", 940000015], ["licences", "--- []\n"], ["org_full_name", "Коммерческий банк \"ИЖМАШБАНК\" (Товарищество с ограниченной ответственностью)"], ["org_name", "ИЖМАШБАНК"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2882], ["updated_at", Thu, 13 Feb 2014 19:24:06 UTC +00:00], ["ust_money", 6512000], ["ustav_adr", "426006, Удмуртская Республика, г.Ижевск, ул.Дерябина, 1"]]
66232
+  (0.5ms) commit transaction
66233
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000018 LIMIT 1
66234
+  (0.1ms) begin transaction
66235
+ SQL (0.3ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:24:06 UTC +00:00], ["date_kgr_registration", Fri, 08 Oct 1993], ["fact_adr", "426057, Удмуртская Республика, г. Ижевск, ул. Свободы, 173"], ["internal_code", 940000018], ["licences", "--- []\n"], ["org_full_name", "Ижевский коммерческий банк \"Почтовый\" - открытое акционерное общество"], ["org_name", "ПОЧТОВЫЙ"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2527], ["updated_at", Thu, 13 Feb 2014 19:24:06 UTC +00:00], ["ust_money", 7300000], ["ustav_adr", ", г.Ижевск, ул.Свободы, 173"]]
66236
+  (0.5ms) commit transaction
66237
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000031 LIMIT 1
66238
+  (0.1ms) begin transaction
66239
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:24:06 UTC +00:00], ["date_kgr_registration", Thu, 08 Jul 1993], ["fact_adr", "426011, Удмуртская Республика, г.Ижевск, ул.Пушкинская,373"], ["internal_code", 940000031], ["licences", "--- []\n"], ["org_full_name", "Акционерный банк \"Конверсия\" (открытое акционерное общество)"], ["org_name", "КОНВЕРСИЯ"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2413], ["updated_at", Thu, 13 Feb 2014 19:24:06 UTC +00:00], ["ust_money", 2315000], ["ustav_adr", "426000, Удмурдская Республика, г.Ижевск, ул.Пушкинская, 373"]]
66240
+  (0.5ms) commit transaction
66241
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000030 LIMIT 1
66242
+  (0.1ms) begin transaction
66243
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:24:06 UTC +00:00], ["date_kgr_registration", Thu, 04 Aug 1994], ["fact_adr", "426000, Удмуртская Республика, г.Ижевск, переулок Северный, 61"], ["internal_code", 940000030], ["licences", "--- []\n"], ["org_full_name", "акционерный коммерческий банк \"ЦЕНТ\" (акционерное общество закрытого типа)"], ["org_name", "ЦЕНТ"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 3020], ["updated_at", Thu, 13 Feb 2014 19:24:06 UTC +00:00], ["ustav_adr", "426000, Удмуртская Республика, г.Ижевск, переулок Северный, 61"]]
66244
+  (0.5ms) commit transaction
66245
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000025 LIMIT 1
66246
+  (0.1ms) begin transaction
66247
+ SQL (0.3ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:24:06 UTC +00:00], ["date_kgr_registration", Tue, 18 Aug 1992], ["fact_adr", "426033, Удмуртская Республика, г. Ижевск, ул.Береговая,11"], ["internal_code", 940000025], ["licences", "--- []\n"], ["org_full_name", "коммерческий банк \"ИГЕРМАН\""], ["org_name", "ИГЕРМАН"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2017], ["updated_at", Thu, 13 Feb 2014 19:24:06 UTC +00:00], ["ustav_adr", "426033, Удмуртская Республика, г. Ижевск, ул.Береговая,11"]]
66248
+  (0.5ms) commit transaction
66249
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000532 LIMIT 1
66250
+  (0.1ms) begin transaction
66251
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:24:06 UTC +00:00], ["date_kgr_registration", Wed, 28 Nov 1990], ["fact_adr", "Нет данных"], ["internal_code", 940000532], ["licences", "--- []\n"], ["org_full_name", "ШАРКАНСКИЙ КОММЕРЧЕСКИЙ БАНК"], ["org_name", "ШАРКАНСКИЙ"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 984], ["updated_at", Thu, 13 Feb 2014 19:24:06 UTC +00:00], ["ustav_adr", "427440, Удмуртская Республика, с.Шаркан, ул.Советская, 34"]]
66252
+  (0.4ms) commit transaction
66253
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000533 LIMIT 1
66254
+  (0.1ms) begin transaction
66255
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:24:06 UTC +00:00], ["date_kgr_registration", Thu, 27 Aug 1992], ["fact_adr", "Нет данных"], ["internal_code", 940000533], ["licences", "--- []\n"], ["org_full_name", "Коммерческий банк \"Соцкультбанк\""], ["org_name", "СОЦКУЛЬТБАНК"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 2031], ["updated_at", Thu, 13 Feb 2014 19:24:06 UTC +00:00], ["ustav_adr", "426024, Удмуртская Республика, г.Ижевск, ул.Бородина, 21"]]
66256
+  (0.5ms) commit transaction
66257
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 940000534 LIMIT 1
66258
+  (0.1ms) begin transaction
66259
+ SQL (0.3ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:24:06 UTC +00:00], ["date_kgr_registration", Wed, 24 Oct 1990], ["fact_adr", "Нет данных"], ["internal_code", 940000534], ["licences", "--- []\n"], ["org_full_name", "Удмуртский сельскохозяйственный коммерческий банк\"Удмуртсельхозбанк\""], ["org_name", "УДМУРТСЕЛЬХОЗБАНК"], ["org_status", "ликвидирована"], ["reg_code", 54], ["reg_number", 569], ["updated_at", Thu, 13 Feb 2014 19:24:06 UTC +00:00], ["ustav_adr", "426058, Удмуртская Республика, г.Ижевск, ул.Красноармейская,д.159"]]
66260
+  (0.5ms) commit transaction
66261
+  (0.5ms) DELETE FROM "banks";
66262
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66263
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'banks';
66264
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."reg_number" = 289375237580009 LIMIT 1
66265
+  (0.7ms) DELETE FROM "banks";
66266
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66267
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'banks';
66268
+  (0.1ms) SELECT COUNT(*) FROM "banks"
66269
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."reg_number" = 316 LIMIT 1
66270
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
66271
+  (0.1ms) begin transaction
66272
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:24:07 UTC +00:00], ["date_kgr_registration", Tue, 12 May 1992], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["internal_code", 450000650], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 04 Oct 2002], ["main_reg_number", "1027700280937"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["phones", "(495)785-82-25"], ["reg_code", 16], ["reg_number", 316], ["ssv_date", Wed, 10 Nov 2004], ["updated_at", Thu, 13 Feb 2014 19:24:07 UTC +00:00], ["ust_money", 4173000000], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"]]
66273
+  (0.4ms) commit transaction
66274
+  (0.1ms) SELECT COUNT(*) FROM "banks"
66275
+  (0.5ms) DELETE FROM "banks";
66276
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66277
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
66278
+  (0.0ms) begin transaction
66279
+ SQL (0.2ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:24:07 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 19:24:07 UTC +00:00]]
66280
+  (0.4ms) commit transaction
66281
+  (0.1ms) SELECT COUNT(*) FROM "banks"
66282
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."reg_number" = 316 LIMIT 1
66283
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
66284
+  (0.1ms) SELECT COUNT(*) FROM "banks"
66285
+  (0.5ms) DELETE FROM "banks";
66286
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66287
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
66288
+  (0.0ms) begin transaction
66289
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:24:07 UTC +00:00], ["internal_code", 450000650999999], ["licences", nil], ["org_name", "Bank in Database"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 19:24:07 UTC +00:00]]
66290
+  (0.3ms) commit transaction
66291
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."reg_number" = 316 LIMIT 1
66292
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
66293
+  (0.6ms) DELETE FROM "banks";
66294
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66295
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
66296
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."reg_number" = 316 LIMIT 1
66297
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
66298
+  (0.1ms) begin transaction
66299
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:24:08 UTC +00:00], ["date_kgr_registration", Tue, 12 May 1992], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["internal_code", 450000650], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 04 Oct 2002], ["main_reg_number", "1027700280937"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["phones", "(495)785-82-25"], ["reg_code", 16], ["reg_number", 316], ["ssv_date", Wed, 10 Nov 2004], ["updated_at", Thu, 13 Feb 2014 19:24:08 UTC +00:00], ["ust_money", 4173000000], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"]]
66300
+  (0.5ms) commit transaction
66301
+  (0.4ms) DELETE FROM "banks";
66302
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66303
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'banks';
66304
+  (0.0ms) begin transaction
66305
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:24:08 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "Old name"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Mon, 13 Jan 2014 19:24:08 UTC +00:00]]
66306
+  (0.4ms) commit transaction
66307
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."reg_number" = 316 LIMIT 1
66308
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
66309
+  (0.1ms) begin transaction
66310
+ SQL (0.3ms) UPDATE "banks" SET "org_name" = ?, "org_full_name" = ?, "phones" = ?, "date_kgr_registration" = ?, "main_reg_number" = ?, "main_date_reg" = ?, "ustav_adr" = ?, "fact_adr" = ?, "ust_money" = ?, "ssv_date" = ?, "licences" = ?, "updated_at" = ? WHERE "banks"."id" = 1 [["org_name", "ХКФ БАНК"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["phones", "(495)785-82-25"], ["date_kgr_registration", Tue, 12 May 1992], ["main_reg_number", "1027700280937"], ["main_date_reg", Fri, 04 Oct 2002], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["ust_money", 4173000000], ["ssv_date", Wed, 10 Nov 2004], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["updated_at", Thu, 13 Feb 2014 19:24:08 UTC +00:00]]
66311
+  (0.4ms) commit transaction
66312
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
66313
+  (0.5ms) DELETE FROM "banks";
66314
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66315
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
66316
+  (0.0ms) begin transaction
66317
+ SQL (0.2ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:24:08 UTC +00:00], ["internal_code", 450000650], ["licences", "--- []\n"], ["org_name", "Bank in Database"], ["org_status", "лицензия отозвана"], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 19:24:08 UTC +00:00]]
66318
+  (0.4ms) commit transaction
66319
+  (0.0ms) begin transaction
66320
+ SQL (0.2ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:24:08 UTC +00:00], ["internal_code", 450000650], ["licences", "---\n- :l_code: '3'\n :lt: Лицензия 4\n :l_date: '2007-12-20T00:00:00+04:00'\n"], ["org_name", "Bank in Database"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 19:24:08 UTC +00:00]]
66321
+  (0.4ms) commit transaction
66322
+  (0.5ms) DELETE FROM "banks";
66323
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66324
+  (4.2ms) DELETE FROM sqlite_sequence where name = 'banks';
66325
+  (0.0ms) begin transaction
66326
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:24:08 UTC +00:00], ["internal_code", 450000650], ["licences", "--- []\n"], ["org_name", "Bank in Database"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 19:24:08 UTC +00:00]]
66327
+  (0.3ms) commit transaction
66328
+  (0.4ms) DELETE FROM "banks";
66329
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66330
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
66331
+  (0.0ms) begin transaction
66332
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:24:08 UTC +00:00], ["internal_code", 450000650], ["licences", "---\n- :l_code: '3'\n :lt: Лицензия 2\n :l_date: '2007-12-20T00:00:00+04:00'\n- :l_code: '7'\n :lt: Лицензия 3\n :l_date: '2012-03-23T00:00:00+04:00'\n"], ["org_name", "Bank in Database"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 19:24:08 UTC +00:00]]
66333
+  (0.3ms) commit transaction
66334
+  (0.4ms) DELETE FROM "banks";
66335
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66336
+  (0.6ms) DELETE FROM sqlite_sequence where name = 'banks';
66337
+  (0.1ms) begin transaction
66338
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:24:08 UTC +00:00], ["internal_code", 450000650], ["licences", "---\n- :l_code: '7'\n :lt: Лицензия 1\n :l_date: '2012-09-10T00:00:00+04:00'\n"], ["org_name", "Bank in Database"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 19:24:08 UTC +00:00]]
66339
+  (0.3ms) commit transaction
66340
+  (0.5ms) DELETE FROM "banks";
66341
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66342
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
66343
+  (0.0ms) begin transaction
66344
+ SQL (0.2ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "111111111"], ["created_at", Thu, 13 Feb 2014 19:24:08 UTC +00:00], ["internal_code", 89899999], ["licences", nil], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Mon, 13 Jan 2014 19:24:08 UTC +00:00]]
66345
+  (0.3ms) commit transaction
66346
+  (0.1ms) SELECT COUNT(*) FROM "banks"
66347
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '111111111' LIMIT 1
66348
+ SQL (0.7ms) DELETE FROM "banks" WHERE "banks"."id" = 1
66349
+  (0.1ms) SELECT COUNT(*) FROM "banks"
66350
+  (0.5ms) DELETE FROM "banks";
66351
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66352
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'banks';
66353
+  (0.0ms) begin transaction
66354
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:24:08 UTC +00:00], ["internal_code", 450000650999999], ["licences", nil], ["org_name", "Bank in Database"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 19:24:08 UTC +00:00]]
66355
+  (0.4ms) commit transaction
66356
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
66357
+  (0.6ms) DELETE FROM "banks";
66358
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66359
+  (0.5ms) DELETE FROM sqlite_sequence where name = 'banks';
66360
+  (0.1ms) SELECT COUNT(*) FROM "banks"
66361
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
66362
+  (0.1ms) begin transaction
66363
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:24:09 UTC +00:00], ["date_kgr_registration", Tue, 12 May 1992], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["internal_code", 450000650], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 04 Oct 2002], ["main_reg_number", "1027700280937"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["phones", "(495)785-82-25"], ["reg_code", 16], ["reg_number", 316], ["ssv_date", Wed, 10 Nov 2004], ["updated_at", Thu, 13 Feb 2014 19:24:09 UTC +00:00], ["ust_money", 4173000000], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"]]
66364
+  (0.5ms) commit transaction
66365
+  (0.1ms) SELECT COUNT(*) FROM "banks"
66366
+  (0.5ms) DELETE FROM "banks";
66367
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66368
+  (3.2ms) DELETE FROM sqlite_sequence where name = 'banks';
66369
+  (0.0ms) begin transaction
66370
+ SQL (0.2ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:24:09 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "Old name"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Mon, 13 Jan 2014 19:24:09 UTC +00:00]]
66371
+  (0.4ms) commit transaction
66372
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
66373
+  (0.1ms) begin transaction
66374
+ SQL (0.3ms) UPDATE "banks" SET "org_name" = ?, "org_full_name" = ?, "phones" = ?, "date_kgr_registration" = ?, "main_reg_number" = ?, "main_date_reg" = ?, "ustav_adr" = ?, "fact_adr" = ?, "ust_money" = ?, "ssv_date" = ?, "licences" = ?, "updated_at" = ? WHERE "banks"."id" = 1 [["org_name", "ХКФ БАНК"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["phones", "(495)785-82-25"], ["date_kgr_registration", Tue, 12 May 1992], ["main_reg_number", "1027700280937"], ["main_date_reg", Fri, 04 Oct 2002], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["ust_money", 4173000000], ["ssv_date", Wed, 10 Nov 2004], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["updated_at", Thu, 13 Feb 2014 19:24:09 UTC +00:00]]
66375
+  (0.6ms) commit transaction
66376
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
66377
+  (0.4ms) DELETE FROM "banks";
66378
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66379
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
66380
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
66381
+  (0.1ms) begin transaction
66382
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:24:09 UTC +00:00], ["date_kgr_registration", Tue, 12 May 1992], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["internal_code", 450000650], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 04 Oct 2002], ["main_reg_number", "1027700280937"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["phones", "(495)785-82-25"], ["reg_code", 16], ["reg_number", 316], ["ssv_date", Wed, 10 Nov 2004], ["updated_at", Thu, 13 Feb 2014 19:24:09 UTC +00:00], ["ust_money", 4173000000], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"]]
66383
+  (0.4ms) commit transaction
66384
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
66385
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
66386
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
66387
+  (0.4ms) DELETE FROM "banks";
66388
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66389
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
66390
+  (0.0ms) begin transaction
66391
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:24:09 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 19:24:09 UTC +00:00]]
66392
+  (0.4ms) commit transaction
66393
+  (0.1ms) SELECT COUNT(*) FROM "banks"
66394
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
66395
+  (0.1ms) SELECT COUNT(*) FROM "banks"
66396
+  (0.6ms) DELETE FROM "banks";
66397
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66398
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
66399
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
66400
+  (0.1ms) begin transaction
66401
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:24:10 UTC +00:00], ["date_kgr_registration", Tue, 12 May 1992], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["internal_code", 450000650], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 04 Oct 2002], ["main_reg_number", "1027700280937"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["phones", "(495)785-82-25"], ["reg_code", 16], ["reg_number", 316], ["ssv_date", Wed, 10 Nov 2004], ["updated_at", Thu, 13 Feb 2014 19:24:10 UTC +00:00], ["ust_money", 4173000000], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"]]
66402
+  (0.4ms) commit transaction
66403
+  (0.5ms) DELETE FROM "banks";
66404
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66405
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
66406
+  (0.0ms) begin transaction
66407
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:24:10 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Mon, 13 Jan 2014 19:24:10 UTC +00:00]]
66408
+  (0.3ms) commit transaction
66409
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
66410
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
66411
+  (0.1ms) begin transaction
66412
+ SQL (0.4ms) UPDATE "banks" SET "org_full_name" = ?, "phones" = ?, "date_kgr_registration" = ?, "main_reg_number" = ?, "main_date_reg" = ?, "ustav_adr" = ?, "fact_adr" = ?, "ust_money" = ?, "ssv_date" = ?, "licences" = ?, "updated_at" = ? WHERE "banks"."id" = 1 [["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["phones", "(495)785-82-25"], ["date_kgr_registration", Tue, 12 May 1992], ["main_reg_number", "1027700280937"], ["main_date_reg", Fri, 04 Oct 2002], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["ust_money", 4173000000], ["ssv_date", Wed, 10 Nov 2004], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["updated_at", Thu, 13 Feb 2014 19:24:10 UTC +00:00]]
66413
+  (0.4ms) commit transaction
66414
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."bic" = '044585216' LIMIT 1
66415
+  (0.4ms) DELETE FROM "banks";
66416
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66417
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
66418
+  (0.0ms) begin transaction
66419
+ SQL (0.2ms) INSERT INTO "banks" ("bic", "created_at", "internal_code", "licences", "org_name", "org_status", "reg_code", "reg_number", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:24:10 UTC +00:00], ["internal_code", 450000650], ["licences", nil], ["org_name", "Bank in Database"], ["org_status", "норм."], ["reg_code", 16], ["reg_number", 316], ["updated_at", Thu, 13 Feb 2014 19:24:10 UTC +00:00]]
66420
+  (0.4ms) commit transaction
66421
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650 LIMIT 1
66422
+  (0.5ms) DELETE FROM "banks";
66423
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66424
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
66425
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000100 LIMIT 1
66426
+  (0.1ms) begin transaction
66427
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:24:11 UTC +00:00], ["date_kgr_registration", Thu, 10 Oct 1991], ["fact_adr", "125030, г. Москва, ул. Зои и Александра Космодемьянских, д.34, стр.6"], ["internal_code", 450000100], ["licences", "--- []\n"], ["org_full_name", "ЗАКРЫТОЕ АКЦИОНЕРНОЕ ОБЩЕСТВО КОММЕРЧЕСКИЙ БАНК \"МОСКОВСКИЙ МЕЖДУНАРОДНЫЙ ТОРГОВЫЙ БАНК\""], ["org_name", "МОСКОВСКИЙ МЕЖДУНАРОДНЫЙ ТОРГОВЫЙ БАНК"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 1584], ["updated_at", Thu, 13 Feb 2014 19:24:11 UTC +00:00], ["ust_money", 4000000], ["ustav_adr", "107076, г. Москва, Б.Матросский пер., д.1, к.1"]]
66428
+  (0.5ms) commit transaction
66429
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000226 LIMIT 1
66430
+  (0.1ms) begin transaction
66431
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585659"], ["created_at", Thu, 13 Feb 2014 19:24:11 UTC +00:00], ["date_kgr_registration", Wed, 05 Aug 1992], ["fact_adr", "107045, г. Москва, Луков переулок, д. 2, стр. 1"], ["internal_code", 450000226], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0Lgg0YDQsNC30LzQtdGJ0LXQvdC40LUg0LTR\n gNCw0LPQvtGG0LXQvdC90YvRhSDQvNC10YLQsNC70LvQvtCy\n attributes: {}\n :l_date: !ruby/object:DateTime 1999-08-18 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2013-01-21 00:00:00.000000000 +04:00\n"], ["main_date_reg", Mon, 18 Nov 2002], ["main_reg_number", "1027739555282"], ["org_full_name", "\"МОСКОВСКИЙ КРЕДИТНЫЙ БАНК\" (открытое акционерное общество)"], ["org_name", "МОСКОВСКИЙ КРЕДИТНЫЙ БАНК"], ["org_status", "норм."], ["phones", "(495)777-48-88"], ["reg_code", 16], ["reg_number", 1978], ["ssv_date", Tue, 30 Nov 2004], ["updated_at", Thu, 13 Feb 2014 19:24:11 UTC +00:00], ["ust_money", 14467761735], ["ustav_adr", "107045, г. Москва, Луков переулок, д. 2, стр. 1"]]
66432
+  (0.4ms) commit transaction
66433
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000573 LIMIT 1
66434
+  (0.1ms) begin transaction
66435
+ SQL (0.3ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585187"], ["created_at", Thu, 13 Feb 2014 19:24:11 UTC +00:00], ["date_kgr_registration", Wed, 16 Feb 1994], ["fact_adr", "127238, г. Москва, Ильменский проезд, д. 10, стр. 1"], ["internal_code", 450000573], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mg==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC+0YHRg9GJ0LXRgdGC0LLQu9C10L3Q\n uNC1INCx0LDQvdC60L7QstGB0LrQuNGFINC+0L/QtdGA0LDRhtC40Lkg0YHQ\n viDRgdGA0LXQtNGB0YLQstCw0LzQuCDQsiDRgNGD0LHQu9GP0YUg0Lgg0LjQ\n vdC+0YHRgtGA0LDQvdC90L7QuSDQstCw0LvRjtGC0LUgKNCx0LXQtyDQv9GA\n 0LDQstCwINC/0YDQuNCy0LvQtdGH0LXQvdC40Y8g0LLQviDQstC60LvQsNC0\n 0Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB0YLQsiDRhNC40LfQuNGH\n 0LXRgdC60LjRhSDQu9C40YYp\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-16 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Ng==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB\n 0YLQsiDRhNC40LfQuNGH0LXRgdC60LjRhSDQu9C40YYg0LIg0YDRg9Cx0LvR\n j9GFINC4INC40L3QvtGB0YLRgNCw0L3QvdC+0Lkg0LLQsNC70Y7RgtC1\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-16 00:00:00.000000000 +04:00\n"], ["main_date_reg", Wed, 30 Oct 2002], ["main_reg_number", "1027739481362"], ["org_full_name", "Акционерный Коммерческий Банк \"Московский Вексельный Банк\" (Закрытое Акционерное Общество)"], ["org_name", "МОСКОВСКИЙ ВЕКСЕЛЬНЫЙ БАНК"], ["org_status", "норм."], ["phones", "(495) 221-38-71"], ["reg_code", 16], ["reg_number", 2697], ["ssv_date", Thu, 17 Mar 2005], ["updated_at", Thu, 13 Feb 2014 19:24:11 UTC +00:00], ["ust_money", 227000000], ["ustav_adr", "127238, г. Москва, Ильменский проезд, д. 10, стр. 1"]]
66436
+  (0.5ms) commit transaction
66437
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 820000042 LIMIT 1
66438
+  (0.1ms) begin transaction
66439
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044525521"], ["created_at", Thu, 13 Feb 2014 19:24:11 UTC +00:00], ["date_kgr_registration", Thu, 09 Apr 1992], ["fact_adr", "107023, г. Москва, ул. Большая Семеновская, д. 32, стр. 1"], ["internal_code", 820000042], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-09-17 00:00:00.000000000 +04:00\n"], ["main_date_reg", Tue, 09 Feb 2010], ["main_reg_number", "1107711000022"], ["org_full_name", "Акционерный коммерческий банк МОСКОВСКИЙ ОБЛАСТНОЙ БАНК открытое акционерное общество"], ["org_name", "МОСКОВСКИЙ ОБЛАСТНОЙ БАНК"], ["org_status", "норм."], ["phones", "(495) 626-21-01"], ["reg_code", 16], ["reg_number", 1751], ["ssv_date", Wed, 31 Aug 2005], ["updated_at", Thu, 13 Feb 2014 19:24:11 UTC +00:00], ["ust_money", 3739141000], ["ustav_adr", "107023, г. Москва, ул. Большая Семеновская, д. 32, стр. 1"]]
66440
+  (0.5ms) commit transaction
66441
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000842 LIMIT 1
66442
+  (0.1ms) begin transaction
66443
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044579476"], ["created_at", Thu, 13 Feb 2014 19:24:11 UTC +00:00], ["date_kgr_registration", Mon, 05 Dec 1994], ["fact_adr", "119146, г. Москва, 1-я Фрунзенская ул., д.5"], ["internal_code", 450000842], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mg==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC+0YHRg9GJ0LXRgdGC0LLQu9C10L3Q\n uNC1INCx0LDQvdC60L7QstGB0LrQuNGFINC+0L/QtdGA0LDRhtC40Lkg0YHQ\n viDRgdGA0LXQtNGB0YLQstCw0LzQuCDQsiDRgNGD0LHQu9GP0YUg0Lgg0LjQ\n vdC+0YHRgtGA0LDQvdC90L7QuSDQstCw0LvRjtGC0LUgKNCx0LXQtyDQv9GA\n 0LDQstCwINC/0YDQuNCy0LvQtdGH0LXQvdC40Y8g0LLQviDQstC60LvQsNC0\n 0Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB0YLQsiDRhNC40LfQuNGH\n 0LXRgdC60LjRhSDQu9C40YYp\n attributes: {}\n :l_date: !ruby/object:DateTime 1999-10-26 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Ng==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB\n 0YLQsiDRhNC40LfQuNGH0LXRgdC60LjRhSDQu9C40YYg0LIg0YDRg9Cx0LvR\n j9GFINC4INC40L3QvtGB0YLRgNCw0L3QvdC+0Lkg0LLQsNC70Y7RgtC1\n attributes: {}\n :l_date: !ruby/object:DateTime 1999-10-26 00:00:00.000000000 +04:00\n"], ["main_date_reg", Thu, 19 Sep 2002], ["main_reg_number", "1027739223687"], ["org_full_name", "Открытое акционерное общество \"Московский Коммерческий Банк\""], ["org_name", "МОСКОВСКИЙ КОММЕРЧЕСКИЙ БАНК"], ["org_status", "норм."], ["phones", "(495) 609-19-19"], ["reg_code", 16], ["reg_number", 3172], ["ssv_date", Thu, 17 Mar 2005], ["updated_at", Thu, 13 Feb 2014 19:24:11 UTC +00:00], ["ust_money", 330000000], ["ustav_adr", "119146, г. Москва, 1-я Фрунзенская ул. д.5"]]
66444
+  (0.5ms) commit transaction
66445
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000053 LIMIT 1
66446
+  (0.1ms) begin transaction
66447
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044579629"], ["created_at", Thu, 13 Feb 2014 19:24:11 UTC +00:00], ["date_kgr_registration", Fri, 15 Mar 1991], ["fact_adr", "121069, г. Москва, ул. Большая Никитская, д.49"], ["internal_code", 450000053], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mg==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC+0YHRg9GJ0LXRgdGC0LLQu9C10L3Q\n uNC1INCx0LDQvdC60L7QstGB0LrQuNGFINC+0L/QtdGA0LDRhtC40Lkg0YHQ\n viDRgdGA0LXQtNGB0YLQstCw0LzQuCDQsiDRgNGD0LHQu9GP0YUg0Lgg0LjQ\n vdC+0YHRgtGA0LDQvdC90L7QuSDQstCw0LvRjtGC0LUgKNCx0LXQtyDQv9GA\n 0LDQstCwINC/0YDQuNCy0LvQtdGH0LXQvdC40Y8g0LLQviDQstC60LvQsNC0\n 0Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB0YLQsiDRhNC40LfQuNGH\n 0LXRgdC60LjRhSDQu9C40YYp\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-08-03 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Ng==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB\n 0YLQsiDRhNC40LfQuNGH0LXRgdC60LjRhSDQu9C40YYg0LIg0YDRg9Cx0LvR\n j9GFINC4INC40L3QvtGB0YLRgNCw0L3QvdC+0Lkg0LLQsNC70Y7RgtC1\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-08-03 00:00:00.000000000 +04:00\n"], ["main_date_reg", Tue, 08 Oct 2002], ["main_reg_number", "1027739337581"], ["org_full_name", "Открытое акционерное общество \"Московский Нефтехимический банк\""], ["org_name", "МОСКОВСКИЙ НЕФТЕХИМИЧЕСКИЙ БАНК"], ["org_status", "норм."], ["phones", "232-33-25"], ["reg_code", 16], ["reg_number", 1411], ["ssv_date", Wed, 02 Feb 2005], ["updated_at", Thu, 13 Feb 2014 19:24:11 UTC +00:00], ["ust_money", 105056100], ["ustav_adr", "121069, г. Москва, ул. Большая Никитская, д.49"]]
66448
+  (0.5ms) commit transaction
66449
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000741 LIMIT 1
66450
+  (0.1ms) begin transaction
66451
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044525600"], ["created_at", Thu, 13 Feb 2014 19:24:11 UTC +00:00], ["date_kgr_registration", Thu, 22 Nov 1990], ["fact_adr", "115419, г. Москва, ул.Орджоникидзе, д.5"], ["internal_code", 450000741], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0Lgg0YDQsNC30LzQtdGJ0LXQvdC40LUg0LTR\n gNCw0LPQvtGG0LXQvdC90YvRhSDQvNC10YLQsNC70LvQvtCy\n attributes: {}\n :l_date: !ruby/object:DateTime 2002-10-14 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2002-10-14 00:00:00.000000000 +04:00\n"], ["main_date_reg", Wed, 11 Sep 2002], ["main_reg_number", "1027739179160"], ["org_full_name", "акционерный коммерческий банк \"Московский Индустриальный банк\" (открытое акционерное общество)"], ["org_name", "МОСКОВСКИЙ ИНДУСТРИАЛЬНЫЙ БАНК"], ["org_status", "норм."], ["phones", "(495)740-00-74"], ["reg_code", 16], ["reg_number", 912], ["ssv_date", Wed, 29 Dec 2004], ["updated_at", Thu, 13 Feb 2014 19:24:11 UTC +00:00], ["ust_money", 1925002700], ["ustav_adr", "115419, г. Москва, ул.Орджоникидзе, д.5"]]
66452
+  (0.5ms) commit transaction
66453
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000039 LIMIT 1
66454
+  (0.1ms) begin transaction
66455
+ SQL (0.3ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:24:11 UTC +00:00], ["date_kgr_registration", Wed, 04 Mar 1992], ["fact_adr", "121019, г. Москва, ул.Ленивка, д.1"], ["internal_code", 450000039], ["licences", "--- []\n"], ["org_full_name", "МОСКОВСКИЙ ГОРОДСКОЙ КОММЕРЧЕСКИЙ БАНК ПРОМЫШЛЕННОСТИ СТРОИТЕЛЬНЫХ МАТЕРИАЛОВ"], ["org_name", "МОСКОВСКИЙ БАНК ПРОМСТРОЙМАТЕРИАЛОВ"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 133], ["updated_at", Thu, 13 Feb 2014 19:24:11 UTC +00:00], ["ust_money", 203000], ["ustav_adr", "119820, г.Москва, Кропоткинская наб., 45/1,почтовый - 121019,Москва, а/я 72"]]
66456
+  (0.4ms) commit transaction
66457
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 460000041 LIMIT 1
66458
+  (0.1ms) begin transaction
66459
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:24:11 UTC +00:00], ["date_kgr_registration", Tue, 23 Oct 1990], ["fact_adr", "103064,Москва, ул.Земляной вал, д.17,стр.5, а/я 340"], ["internal_code", 460000041], ["licences", "--- []\n"], ["org_full_name", "Московский межрегиональный коммерческий банк (Общество с ограниченной ответственностью)"], ["org_name", "МОСКОВСКИЙ МЕЖРЕГИОНАЛЬНЫЙ КОМБАНК"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 553], ["updated_at", Thu, 13 Feb 2014 19:24:11 UTC +00:00], ["ust_money", 90352000], ["ustav_adr", ", г.Москва, Саймоновский пр., 7"]]
66460
+  (0.5ms) commit transaction
66461
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 460000036 LIMIT 1
66462
+  (0.1ms) begin transaction
66463
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044583098"], ["created_at", Thu, 13 Feb 2014 19:24:12 UTC +00:00], ["date_kgr_registration", Wed, 10 Aug 1994], ["fact_adr", "105318, г. Москва, ул. Ткацкая, д.15, стр.1"], ["internal_code", 460000036], ["licences", "--- []\n"], ["main_date_reg", Thu, 05 Sep 2002], ["main_reg_number", "1027739154596"], ["org_full_name", "Коммерческий банк \"Московский Капитал\" (общество с ограниченной ответственностью)"], ["org_name", "МОСКОВСКИЙ КАПИТАЛ"], ["org_status", "лицензия отозвана"], ["phones", "166-90-36, 369-20-34"], ["reg_code", 16], ["reg_number", 3044], ["ssv_date", Wed, 09 Feb 2005], ["updated_at", Thu, 13 Feb 2014 19:24:12 UTC +00:00], ["ust_money", 1415000000], ["ustav_adr", "105318, г. Москва, ул. Ткацкая, д.15, стр.1"]]
66464
+  (0.5ms) commit transaction
66465
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000022 LIMIT 1
66466
+  (0.1ms) begin transaction
66467
+ SQL (0.3ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:24:12 UTC +00:00], ["date_kgr_registration", Fri, 14 Dec 1990], ["fact_adr", "103482, г. Москва, Центральный проспект, д.1, комн.246"], ["internal_code", 450000022], ["licences", "--- []\n"], ["org_full_name", "Московский коммерческий банк ипотечного кредита"], ["org_name", "МОСКОВСКИЙ БАНК ИПОТЕЧНОГО КРЕДИТА"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 1190], ["updated_at", Thu, 13 Feb 2014 19:24:12 UTC +00:00], ["ust_money", 20000], ["ustav_adr", "103482, г. Москва, Центральный проспект, д.1, комн.246"]]
66468
+  (0.5ms) commit transaction
66469
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000336 LIMIT 1
66470
+  (0.1ms) begin transaction
66471
+ SQL (0.3ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:24:12 UTC +00:00], ["date_kgr_registration", Fri, 29 Jan 1993], ["fact_adr", "107815, г. Москва, ул.Маши Порываевой, д.7"], ["internal_code", 450000336], ["licences", "--- []\n"], ["org_full_name", "АКЦИОНЕРНЫЙ КОММЕРЧЕСКИЙ БАНК \"МОСКОВСКИЙ НАЦИОНАЛЬНЫЙ БАНК\" (ЗАКРЫТОЕ АКЦИОНЕРНОЕ ОБЩЕСТВО) АКБ \"МОСНАЦБАНК\""], ["org_name", "МОСКОВСКИЙ НАЦИОНАЛЬНЫЙ БАНК"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 2255], ["updated_at", Thu, 13 Feb 2014 19:24:12 UTC +00:00], ["ustav_adr", "107815, г. Москва, ул.Маши Порываевой, д.7"]]
66472
+  (0.5ms) commit transaction
66473
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450001087 LIMIT 1
66474
+  (0.1ms) begin transaction
66475
+ SQL (0.6ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:24:12 UTC +00:00], ["date_kgr_registration", Fri, 10 Feb 1995], ["fact_adr", "103031, г. Москва, ул.Кузнецкий мост, д.19, офис 40"], ["internal_code", 450001087], ["licences", "--- []\n"], ["org_full_name", "КОММЕРЧЕСКИЙ БАНК \"МОСКОВСКИЙ БАНК РАЗВИТИЯ\" /Общество с ограниченной ответственностью/"], ["org_name", "МОСКОВСКИЙ БАНК РАЗВИТИЯ"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 3217], ["updated_at", Thu, 13 Feb 2014 19:24:12 UTC +00:00], ["ustav_adr", "125252, г. Москва, ул.Зорге, д.12"]]
66476
+  (11.6ms) commit transaction
66477
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000718 LIMIT 1
66478
+  (0.1ms) begin transaction
66479
+ SQL (0.5ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044583133"], ["created_at", Thu, 13 Feb 2014 19:24:12 UTC +00:00], ["date_kgr_registration", Tue, 30 Jun 1992], ["fact_adr", "123557, г. Москва, Электрический пер., д.3/10, стр.1"], ["internal_code", 450000718], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n MjQ4\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n dW5rbm93bg==\n attributes: {}\n :l_date: !ruby/object:DateTime 2013-03-12 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 26 Jul 2002], ["main_reg_number", "1027739020726"], ["org_full_name", "НЕБАНКОВСКАЯ КРЕДИТНАЯ ОРГАНИЗАЦИЯ \"МОСКОВСКИЙ КЛИРИНГОВЫЙ ЦЕНТР\" (ОТКРЫТОЕ АКЦИОНЕРНОЕ ОБЩЕСТВО)"], ["org_name", "МОСКОВСКИЙ КЛИРИНГОВЫЙ ЦЕНТР"], ["org_status", "норм."], ["phones", "(495)662-15-00"], ["reg_code", 16], ["reg_number", 3314], ["updated_at", Thu, 13 Feb 2014 19:24:12 UTC +00:00], ["ust_money", 8097000], ["ustav_adr", "123557, г. Москва, Электрический пер., д.3/10, стр.1"]]
66480
+  (4.2ms) commit transaction
66481
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000873 LIMIT 1
66482
+  (0.1ms) begin transaction
66483
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:24:12 UTC +00:00], ["date_kgr_registration", Mon, 05 Sep 1994], ["fact_adr", "129090, г. Москва, Проспект Мира, д.7, стр.3"], ["internal_code", 450000873], ["licences", "--- []\n"], ["main_date_reg", Tue, 28 Jan 2003], ["main_reg_number", "1037700079702"], ["org_full_name", "КОММЕРЧЕСКИЙ БАНК \"СИБИРСКО-МОСКОВСКИЙ КОММЕРЧЕСКИЙ БАНК\" (общество с ограниченной ответственностью)"], ["org_name", "СИБИРСКО-МОСКОВСКИЙ КОММЕРЧЕСКИЙ БАНК"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 3069], ["ssv_date", Thu, 17 Mar 2005], ["updated_at", Thu, 13 Feb 2014 19:24:12 UTC +00:00], ["ust_money", 35000000], ["ustav_adr", "103030, г.Москва, ул. Новосущевская, 37, корп. 4"]]
66484
+  (0.4ms) commit transaction
66485
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000962 LIMIT 1
66486
+  (0.1ms) begin transaction
66487
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044579852"], ["created_at", Thu, 13 Feb 2014 19:24:12 UTC +00:00], ["date_kgr_registration", Mon, 27 Jun 1994], ["fact_adr", "123100, г. Москва, Краснопресненская набережная, д.2/1, стр.1"], ["internal_code", 450000962], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mg==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC+0YHRg9GJ0LXRgdGC0LLQu9C10L3Q\n uNC1INCx0LDQvdC60L7QstGB0LrQuNGFINC+0L/QtdGA0LDRhtC40Lkg0YHQ\n viDRgdGA0LXQtNGB0YLQstCw0LzQuCDQsiDRgNGD0LHQu9GP0YUg0Lgg0LjQ\n vdC+0YHRgtGA0LDQvdC90L7QuSDQstCw0LvRjtGC0LUgKNCx0LXQtyDQv9GA\n 0LDQstCwINC/0YDQuNCy0LvQtdGH0LXQvdC40Y8g0LLQviDQstC60LvQsNC0\n 0Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB0YLQsiDRhNC40LfQuNGH\n 0LXRgdC60LjRhSDQu9C40YYp\n attributes: {}\n :l_date: !ruby/object:DateTime 1998-10-20 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Mw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0Lgg0YDQsNC30LzQtdGJ0LXQvdC40LUg0LTR\n gNCw0LPQvtGG0LXQvdC90YvRhSDQvNC10YLQsNC70LvQvtCy\n attributes: {}\n :l_date: !ruby/object:DateTime 1999-10-15 00:00:00.000000000 +04:00\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Ng==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JvQuNGG0LXQvdC30LjRjyDQvdCwINC/0YDQuNCy0LvQtdGH0LXQvdC40LUg\n 0LLQviDQstC60LvQsNC00Ysg0LTQtdC90LXQttC90YvRhSDRgdGA0LXQtNGB\n 0YLQsiDRhNC40LfQuNGH0LXRgdC60LjRhSDQu9C40YYg0LIg0YDRg9Cx0LvR\n j9GFINC4INC40L3QvtGB0YLRgNCw0L3QvdC+0Lkg0LLQsNC70Y7RgtC1\n attributes: {}\n :l_date: !ruby/object:DateTime 1998-10-20 00:00:00.000000000 +04:00\n"], ["main_date_reg", Wed, 14 Aug 2002], ["main_reg_number", "1027700128796"], ["org_full_name", "Коммерческий Банк \"Новый Московский Банк\" (Общество с ограниченной ответственностью)"], ["org_name", "НОВЫЙ МОСКОВСКИЙ БАНК"], ["org_status", "норм."], ["phones", "(495) 605-32-53, (495) 605-32-89, (495) 605-78-45"], ["reg_code", 16], ["reg_number", 2932], ["ssv_date", Wed, 02 Feb 2005], ["updated_at", Thu, 13 Feb 2014 19:24:12 UTC +00:00], ["ust_money", 237000000], ["ustav_adr", "123100, г. Москва, Краснопресненская набережная, д.2/1, стр.1"]]
66488
+  (0.5ms) commit transaction
66489
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000014 LIMIT 1
66490
+  (0.1ms) begin transaction
66491
+ SQL (0.3ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:24:12 UTC +00:00], ["date_kgr_registration", Wed, 05 Dec 1990], ["fact_adr", "0, г. Москва, Новоарбатский проспект, д.23"], ["internal_code", 450000014], ["licences", "--- []\n"], ["org_full_name", "АКЦИОНЕРНЫЙ БАНК РАЗВИТИЯ НАРОДНОГО ХОЗЯЙСТВА \"МОСКОВСКИЙ КРЕДИТ\" (АКЦИОНЕРНОЕ ОБЩЕСТВО ЗАКРЫТОГО ТИПА) - БАНК \"МОСКОВСКИЙ КРЕДИТ\""], ["org_name", "МОСКОВСКИЙ КРЕДИТ"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 1101], ["updated_at", Thu, 13 Feb 2014 19:24:12 UTC +00:00], ["ustav_adr", "117049, г. Москва, Ленинский проспект, д.6"]]
66492
+  (0.5ms) commit transaction
66493
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000284 LIMIT 1
66494
+  (0.1ms) begin transaction
66495
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:24:13 UTC +00:00], ["date_kgr_registration", Fri, 30 Oct 1992], ["fact_adr", "129110, г. Москва, ул.Щепкина, д.61/2"], ["internal_code", 450000284], ["licences", "--- []\n"], ["org_full_name", "Коммерческий банк \"МОСКОВСКИЙ ГОРОДСКОЙ БАНК\" акционерное общество закрытого типа"], ["org_name", "МОСКОВСКИЙ ГОРОДСКОЙ БАНК"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 2144], ["updated_at", Thu, 13 Feb 2014 19:24:13 UTC +00:00], ["ustav_adr", "111402, г. Москва, ул.Кетчерская, д.16"]]
66496
+  (0.4ms) commit transaction
66497
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450001014 LIMIT 1
66498
+  (0.1ms) begin transaction
66499
+ SQL (0.3ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:24:13 UTC +00:00], ["date_kgr_registration", Tue, 18 Apr 1995], ["fact_adr", "129348, г. Москва, Ярославское шоссе, д.13, корп.2"], ["internal_code", 450001014], ["licences", "--- []\n"], ["org_full_name", "коммерческий банк \"МОСКОВСКИЙ ИННОВАЦИОННЫЙ БАНК\" (общество с ограниченной ответственностью)"], ["org_name", "МОСКОВСКИЙ ИННОВАЦИОННЫЙ БАНК"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 3249], ["updated_at", Thu, 13 Feb 2014 19:24:13 UTC +00:00], ["ust_money", 100000], ["ustav_adr", "103101, г. Москва, ул.Садовая-Кудринская, д.24/27, стр.1"]]
66500
+  (0.5ms) commit transaction
66501
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000281 LIMIT 1
66502
+  (0.1ms) begin transaction
66503
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:24:13 UTC +00:00], ["date_kgr_registration", Wed, 04 Nov 1992], ["fact_adr", "107078, г. Москва, ул.Новая Басманная, д.14, стр.1"], ["internal_code", 450000281], ["licences", "--- []\n"], ["org_full_name", "Коммерческий Банк \"Московский Трастовый Банк\""], ["org_name", "МОСКОВСКИЙ ТРАСТОВЫЙ БАНК"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 2141], ["updated_at", Thu, 13 Feb 2014 19:24:13 UTC +00:00], ["ust_money", 8000000], ["ustav_adr", "107078, г. Москва, ул.Новая Басманная, д.14, стр.1"]]
66504
+  (0.4ms) commit transaction
66505
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000468 LIMIT 1
66506
+  (0.1ms) begin transaction
66507
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:24:13 UTC +00:00], ["date_kgr_registration", Tue, 21 Sep 1993], ["fact_adr", "117198, г. Москва, ул.Миклухо-Маклая, д.11а"], ["internal_code", 450000468], ["licences", "--- []\n"], ["org_full_name", "Коммерческий банк \"Московский\" товарищество с ограниченной ответственностью"], ["org_name", "МОСКОВСКИЙ"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 2502], ["updated_at", Thu, 13 Feb 2014 19:24:13 UTC +00:00], ["ust_money", 14500000], ["ustav_adr", "117198, г. Москва, ул.Миклухо-Маклая, д.11а"]]
66508
+  (0.4ms) commit transaction
66509
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450039307 LIMIT 1
66510
+  (0.1ms) begin transaction
66511
+ SQL (0.4ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:24:13 UTC +00:00], ["date_kgr_registration", Mon, 27 Dec 1993], ["fact_adr", "Нет данных"], ["internal_code", 450039307], ["licences", "--- []\n"], ["org_full_name", "Коммерческий банк \"Московский объединенный банк\" (товарищество с ограниченной ответственностью)"], ["org_name", "МОСКОВСКИЙ ОБЪЕДИНЕННЫЙ БАНК"], ["org_status", "ликвидирована"], ["reg_code", 16], ["reg_number", 2634], ["updated_at", Thu, 13 Feb 2014 19:24:13 UTC +00:00], ["ustav_adr", "107005, г.Москва, Плетешковский пер.. 22"]]
66512
+  (0.5ms) commit transaction
66513
+ Bank Load (0.1ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 460001027 LIMIT 1
66514
+  (0.1ms) begin transaction
66515
+ SQL (0.3ms) INSERT INTO "banks" ("created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "org_full_name", "org_name", "org_status", "reg_code", "reg_number", "updated_at", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Thu, 13 Feb 2014 19:24:13 UTC +00:00], ["date_kgr_registration", Mon, 17 Aug 1992], ["fact_adr", "Нет данных"], ["internal_code", 460001027], ["licences", "--- []\n"], ["org_full_name", "Акционерный коммерческий банк \"Московский купеческий банк\""], ["org_name", "МОСКОВСКИЙ КУПЕЧЕСКИЙ БАНК"], ["org_status", "ликвидирована"], ["reg_code", 17], ["reg_number", 2019], ["updated_at", Thu, 13 Feb 2014 19:24:13 UTC +00:00], ["ustav_adr", "103012, г.Москва, ул.Варварка, 8"]]
66516
+  (0.4ms) commit transaction
66517
+  (0.5ms) DELETE FROM "banks";
66518
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66519
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';
66520
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650 LIMIT 1
66521
+  (0.1ms) begin transaction
66522
+ SQL (0.4ms) INSERT INTO "banks" ("bic", "created_at", "date_kgr_registration", "fact_adr", "internal_code", "licences", "main_date_reg", "main_reg_number", "org_full_name", "org_name", "org_status", "phones", "reg_code", "reg_number", "ssv_date", "updated_at", "ust_money", "ustav_adr") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["bic", "044585216"], ["created_at", Thu, 13 Feb 2014 19:24:13 UTC +00:00], ["date_kgr_registration", Tue, 12 May 1992], ["fact_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"], ["internal_code", 450000650], ["licences", "---\n- :l_code: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n Nw==\n attributes: {}\n :lt: !ruby/string:Nori::StringWithAttributes\n str: !binary |-\n 0JPQtdC90LXRgNCw0LvRjNC90LDRjyDQu9C40YbQtdC90LfQuNGPINC90LAg\n 0L7RgdGD0YnQtdGB0YLQstC70LXQvdC40LUg0LHQsNC90LrQvtCy0YHQutC4\n 0YUg0L7Qv9C10YDQsNGG0LjQuQ==\n attributes: {}\n :l_date: !ruby/object:DateTime 2012-03-15 00:00:00.000000000 +04:00\n"], ["main_date_reg", Fri, 04 Oct 2002], ["main_reg_number", "1027700280937"], ["org_full_name", "Общество с ограниченной ответственностью \"Хоум Кредит энд Финанс Банк\""], ["org_name", "ХКФ БАНК"], ["org_status", "норм."], ["phones", "(495)785-82-25"], ["reg_code", 16], ["reg_number", 316], ["ssv_date", Wed, 10 Nov 2004], ["updated_at", Thu, 13 Feb 2014 19:24:13 UTC +00:00], ["ust_money", 4173000000], ["ustav_adr", "125040, г. Москва, ул. Правды, д. 8, корпус 1"]]
66523
+  (0.5ms) commit transaction
66524
+ Bank Load (0.2ms) SELECT "banks".* FROM "banks" WHERE "banks"."internal_code" = 450000650 LIMIT 1
66525
+  (0.5ms) DELETE FROM "banks";
66526
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
66527
+  (0.4ms) DELETE FROM sqlite_sequence where name = 'banks';