Eadesigndev_Romcity - Version 1.0.6

Version Notes

The final version for the live added.

Download this release

Release Info

Developer EaDesign
Extension Eadesigndev_Romcity
Version 1.0.6
Comparing to
See all releases


Version 1.0.6

Files changed (28) hide show
  1. app/code/local/Eadesigndev/Romcity/Block/Adminhtml/Block/Customer/Edit/Renderer/Region.php +103 -0
  2. app/code/local/Eadesigndev/Romcity/Block/Adminhtml/Block/Customer/Edit/Tab/Addresses.php +154 -0
  3. app/code/local/Eadesigndev/Romcity/Block/Adminhtml/Block/Sales/Order/Address/Form.php +93 -0
  4. app/code/local/Eadesigndev/Romcity/Block/Adminhtml/Block/Sales/Order/Create/Billing/Address.php +111 -0
  5. app/code/local/Eadesigndev/Romcity/Block/Adminhtml/Block/Sales/Order/Create/Shipping/Address.php +152 -0
  6. app/code/local/Eadesigndev/Romcity/Helper/Data.php +34 -0
  7. app/code/local/Eadesigndev/Romcity/Model/Adminhtml/Customer/Renderer/Region.php +123 -0
  8. app/code/local/Eadesigndev/Romcity/Model/Adminhtml/Render/City.php +84 -0
  9. app/code/local/Eadesigndev/Romcity/Model/Adminhtml/Render/Cityorder.php +88 -0
  10. app/code/local/Eadesigndev/Romcity/Model/Mysql4/Romcity.php +24 -0
  11. app/code/local/Eadesigndev/Romcity/Model/Mysql4/Romcity/Collection.php +22 -0
  12. app/code/local/Eadesigndev/Romcity/Model/Romcity.php +15 -0
  13. app/code/local/Eadesigndev/Romcity/controllers/Adminhtml/IndexController.php +26 -0
  14. app/code/local/Eadesigndev/Romcity/controllers/IndexController.php +27 -0
  15. app/code/local/Eadesigndev/Romcity/etc/config.xml +105 -0
  16. app/code/local/Eadesigndev/Romcity/sql/eadsign_romcity_setup/mysql4-install-1.0.1.php +12655 -0
  17. app/design/adminhtml/default/default/layout/romcity/romcity.xml +43 -0
  18. app/design/adminhtml/default/default/template/romcity/customer/tab/addresses.phtml +734 -0
  19. app/design/adminhtml/default/default/template/romcity/sales/order/address/form.phtml +94 -0
  20. app/design/adminhtml/default/default/template/romcity/sales/order/create/form/address.phtml +157 -0
  21. app/design/adminhtml/default/default/template/romcity/sales/order/create/form/ship_address.phtml +206 -0
  22. app/design/frontend/base/default/layout/romcity/romcity.xml +30 -0
  23. app/design/frontend/base/default/template/romcity/checkout/onepage/billing.phtml +351 -0
  24. app/design/frontend/base/default/template/romcity/checkout/onepage/shipping.phtml +188 -0
  25. app/design/frontend/base/default/template/romcity/customer/address/edit.phtml +191 -0
  26. app/etc/modules/Eadesigndev_Romcity.xml +9 -0
  27. js/eadesign/romcity/field.js +84 -0
  28. package.xml +18 -0
app/code/local/Eadesigndev/Romcity/Block/Adminhtml/Block/Customer/Edit/Renderer/Region.php ADDED
@@ -0,0 +1,103 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category Mage
22
+ * @package Mage_Adminhtml
23
+ * @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
+ */
26
+
27
+ /**
28
+ * Customer address region field renderer
29
+ *
30
+ * @author Magento Core Team <core@magentocommerce.com>
31
+ */
32
+ class Eadesigndev_Romcity_Block_Adminhtml_Block_Customer_Edit_Renderer_Region
33
+ extends Mage_Adminhtml_Block_Abstract
34
+ implements Varien_Data_Form_Element_Renderer_Interface
35
+ {
36
+ /**
37
+ * Factory instance
38
+ *
39
+ * @var Mage_Core_Model_Abstract
40
+ */
41
+ protected $_factory;
42
+
43
+ /**
44
+ * Constructor for Mage_Adminhtml_Block_Customer_Edit_Renderer_Region class
45
+ *
46
+ * @param array $args
47
+ */
48
+ // public function __construct(array $args = array())
49
+ // {
50
+ // $this->_factory = !empty($args['factory']) ? $args['factory'] : Mage::getSingleton('core/factory');
51
+ // }
52
+
53
+ /**
54
+ * Output the region element and javasctipt that makes it dependent from country element
55
+ *
56
+ * @param Varien_Data_Form_Element_Abstract $element
57
+ * @return string
58
+ */
59
+ public function render(Varien_Data_Form_Element_Abstract $element)
60
+ {
61
+ $country = $element->getForm()->getElement('country_id');
62
+ if (!is_null($country)) {
63
+ $countryId = $country->getValue();
64
+ } else {
65
+ return $element->getDefaultHtml();
66
+ }
67
+ $regionHelper=$this->helper('directory');
68
+ if(method_exists($regionHelper,'getRegionJsonByStore')){
69
+ $getRegionJs= $regionHelper->getRegionJsonByStore($quoteStoreId);
70
+ }
71
+ else{
72
+ $getRegionJs= $regionHelper->getRegionJson($quoteStoreId);
73
+ }
74
+
75
+
76
+ $regionId = $element->getForm()->getElement('region_id')->getValue();
77
+ $quoteStoreId = $element->getEntityAttribute()->getStoreId();
78
+
79
+ $html = '<tr>';
80
+ $element->setClass('input-text');
81
+ $element->setRequired(true);
82
+ $html .= '<td class="label">' . $element->getLabelHtml() . '</td><td class="value">';
83
+ $html .= $element->getElementHtml();
84
+
85
+ $selectName = str_replace('region', 'region_id', $element->getName());
86
+ $selectId = $element->getHtmlId() . '_id';
87
+ $nameOk = str_replace('-','_',$selectId);
88
+ $html .= '<select onchange="'."optchange_{$nameOk}(this,'".$this->getUrl('citydropdownadmin/adminhtml_index/cities')."');".'" id="' . $selectId . '" name="' . $selectName
89
+ . '" class="select required-entry" style="display:none">';
90
+ $html .= '<option value="">' . Mage::helper('customer')->__('Please select') . '</option>';
91
+ $html .= '</select>';
92
+
93
+ $html .= '<script type="text/javascript">' . "\n";
94
+ $html .= '$("' . $selectId . '").setAttribute("defaultValue", "' . $regionId.'");' . "\n";
95
+ $html .= 'new regionUpdater("' . $country->getHtmlId() . '", "' . $element->getHtmlId() . '", "' .
96
+ $selectId . '", ' . $getRegionJs.');' . "\n";
97
+ $html .= '</script>' . "\n";
98
+
99
+ $html .= '</td></tr>' . "\n";
100
+
101
+ return $html;
102
+ }
103
+ }
app/code/local/Eadesigndev/Romcity/Block/Adminhtml/Block/Customer/Edit/Tab/Addresses.php ADDED
@@ -0,0 +1,154 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category Mage
22
+ * @package Mage_Adminhtml
23
+ * @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
+ */
26
+
27
+ /**
28
+ * Customer addresses forms
29
+ *
30
+ * @category Mage
31
+ * @package Mage_Adminhtml
32
+ * @author Magento Core Team <core@magentocommerce.com>
33
+ */
34
+ class Eadesigndev_Romcity_Block_Adminhtml_Block_Customer_Edit_Tab_Addresses extends Mage_Adminhtml_Block_Customer_Edit_Tab_Addresses
35
+ {
36
+ public function __construct()
37
+ {
38
+ parent::__construct();
39
+ $this->setTemplate('romcity/customer/tab/addresses.phtml');
40
+ }
41
+
42
+
43
+ /**
44
+ * Initialize form object
45
+ *
46
+ * @return Mage_Adminhtml_Block_Customer_Edit_Tab_Addresses
47
+ */
48
+ public function initForm()
49
+ {
50
+ /* @var $customer Mage_Customer_Model_Customer */
51
+ $customer = Mage::registry('current_customer');
52
+
53
+ $form = new Varien_Data_Form();
54
+ $fieldset = $form->addFieldset('address_fieldset', array(
55
+ 'legend' => Mage::helper('customer')->__("Edit Customer's Address"))
56
+ );
57
+
58
+ $addressModel = Mage::getModel('customer/address');
59
+ $addressModel->setCountryId(Mage::helper('core')->getDefaultCountry($customer->getStore()));
60
+ /** @var $addressForm Mage_Customer_Model_Form */
61
+ $addressForm = Mage::getModel('customer/form');
62
+ $addressForm->setFormCode('adminhtml_customer_address')
63
+ ->setEntity($addressModel)
64
+ ->initDefaultValues();
65
+
66
+ $attributes = $addressForm->getAttributes();
67
+ if (isset($attributes['street'])) {
68
+ Mage::helper('adminhtml/addresses')
69
+ ->processStreetAttribute($attributes['street']);
70
+ }
71
+ foreach ($attributes as $attribute) {
72
+ /* @var $attribute Mage_Eav_Model_Entity_Attribute */
73
+ $attribute->setFrontendLabel(Mage::helper('customer')->__($attribute->getFrontend()->getLabel()));
74
+ $attribute->unsIsVisible();
75
+ }
76
+ $this->_setFieldset($attributes, $fieldset);
77
+
78
+ $regionElement = $form->getElement('region');
79
+ if ($regionElement) {
80
+ $isRequired = Mage::helper('directory')->isRegionRequired($addressModel->getCountryId());
81
+ $regionElement->setRequired($isRequired);
82
+ $regionElement->setRenderer(Mage::getModel('adminhtml/customer_renderer_region'));
83
+ }
84
+
85
+ $regionElement = $form->getElement('region_id');
86
+ if ($regionElement) {
87
+ $regionElement->setNoDisplay(true);
88
+ $regionElement->addClass('rom-region-id');
89
+ }
90
+
91
+ $country = $form->getElement('country_id');
92
+ if ($country) {
93
+ $country->addClass('countries rom-countries');
94
+ }
95
+
96
+
97
+ $city = $form->getElement('city');
98
+ if ($city) {
99
+ $city->addClass('rom-city');
100
+ $city->setRenderer(Mage::getModel('eadesigndev/adminhtml_render_city'));
101
+ }
102
+
103
+ if ($this->isReadonly()) {
104
+ foreach ($addressModel->getAttributes() as $attribute) {
105
+ $element = $form->getElement($attribute->getAttributeCode());
106
+ if ($element) {
107
+ $element->setReadonly(true, true);
108
+ }
109
+ }
110
+ }
111
+
112
+ $customerStoreId = null;
113
+ if ($customer->getId()) {
114
+ $customerStoreId = Mage::app()->getWebsite($customer->getWebsiteId())->getDefaultStore()->getId();
115
+ }
116
+
117
+ $prefixElement = $form->getElement('prefix');
118
+ if ($prefixElement) {
119
+ $prefixOptions = $this->helper('customer')->getNamePrefixOptions($customerStoreId);
120
+ if (!empty($prefixOptions)) {
121
+ $fieldset->removeField($prefixElement->getId());
122
+ $prefixField = $fieldset->addField($prefixElement->getId(),
123
+ 'select',
124
+ $prefixElement->getData(),
125
+ '^'
126
+ );
127
+ $prefixField->setValues($prefixOptions);
128
+ }
129
+ }
130
+
131
+ $suffixElement = $form->getElement('suffix');
132
+ if ($suffixElement) {
133
+ $suffixOptions = $this->helper('customer')->getNameSuffixOptions($customerStoreId);
134
+ if (!empty($suffixOptions)) {
135
+ $fieldset->removeField($suffixElement->getId());
136
+ $suffixField = $fieldset->addField($suffixElement->getId(),
137
+ 'select',
138
+ $suffixElement->getData(),
139
+ $form->getElement('lastname')->getId()
140
+ );
141
+ $suffixField->setValues($suffixOptions);
142
+ }
143
+ }
144
+
145
+ $addressCollection = $customer->getAddresses();
146
+ $this->assign('customer', $customer);
147
+ $this->assign('addressCollection', $addressCollection);
148
+ $form->setValues($addressModel->getData());
149
+ $this->setForm($form);
150
+
151
+ return $this;
152
+ }
153
+
154
+ }
app/code/local/Eadesigndev/Romcity/Block/Adminhtml/Block/Sales/Order/Address/Form.php ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category Mage
22
+ * @package Mage_Adminhtml
23
+ * @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
+ */
26
+
27
+
28
+ /**
29
+ * Adminhtml sales order edit address block
30
+ *
31
+ * @category Mage
32
+ * @package Mage_Adminhtml
33
+ * @author Magento Core Team <core@magentocommerce.com>
34
+ */
35
+ class Eadesigndev_Romcity_Block_Adminhtml_Block_Sales_Order_Address_Form
36
+ extends Mage_Adminhtml_Block_Sales_Order_Create_Form_Address
37
+ {
38
+ protected function _construct()
39
+ {
40
+ parent::_construct();
41
+ $this->setTemplate('romcity/sales/order/address/form.phtml');
42
+ }
43
+
44
+ /**
45
+ * Order address getter
46
+ *
47
+ * @return Mage_Sales_Model_Order_Address
48
+ */
49
+ protected function _getAddress()
50
+ {
51
+ return Mage::registry('order_address');
52
+ }
53
+
54
+ /**
55
+ * Define form attributes (id, method, action)
56
+ *
57
+ * @return Mage_Adminhtml_Block_Sales_Order_Create_Billing_Address
58
+ */
59
+ protected function _prepareForm()
60
+ {
61
+ parent::_prepareForm();
62
+ $city = $this->_form->getElement('city');
63
+ if ($city) {
64
+ $city->addClass('rom-city');
65
+ $city->setRenderer(Mage::getModel('eadesigndev/adminhtml_render_city'));
66
+ }
67
+ $this->_form->setId('edit_form');
68
+ $this->_form->setMethod('post');
69
+ $this->_form->setAction($this->getUrl('*/*/addressSave', array('address_id'=>$this->_getAddress()->getId())));
70
+ $this->_form->setUseContainer(true);
71
+ return $this;
72
+ }
73
+
74
+ /**
75
+ * Form header text getter
76
+ *
77
+ * @return string
78
+ */
79
+ public function getHeaderText()
80
+ {
81
+ return Mage::helper('sales')->__('Order Address Information');
82
+ }
83
+
84
+ /**
85
+ * Return Form Elements values
86
+ *
87
+ * @return array
88
+ */
89
+ public function getFormValues()
90
+ {
91
+ return $this->_getAddress()->getData();
92
+ }
93
+ }
app/code/local/Eadesigndev/Romcity/Block/Adminhtml/Block/Sales/Order/Create/Billing/Address.php ADDED
@@ -0,0 +1,111 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category Mage
22
+ * @package Mage_Adminhtml
23
+ * @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
+ */
26
+
27
+
28
+ /**
29
+ * Adminhtml sales order create billing address block
30
+ *
31
+ * @category Mage
32
+ * @package Mage_Adminhtml
33
+ * @author Magento Core Team <core@magentocommerce.com>
34
+ */
35
+ class Eadesigndev_Romcity_Block_Adminhtml_Block_Sales_Order_Create_Billing_Address
36
+ extends Mage_Adminhtml_Block_Sales_Order_Create_Form_Address
37
+ {
38
+ /**
39
+ * Return header text
40
+ *
41
+ * @return string
42
+ */
43
+ public function getHeaderText()
44
+ {
45
+ return Mage::helper('sales')->__('Billing Address');
46
+ }
47
+
48
+ /**
49
+ * Return Header CSS Class
50
+ *
51
+ * @return string
52
+ */
53
+ public function getHeaderCssClass()
54
+ {
55
+ return 'head-billing-address';
56
+ }
57
+
58
+
59
+ /**
60
+ * Prepare Form and add elements to form
61
+ *
62
+ * @return Mage_Adminhtml_Block_Sales_Order_Create_Billing_Address
63
+ */
64
+ protected function _prepareForm()
65
+ {
66
+ $this->setJsVariablePrefix('billingAddress');
67
+ parent::_prepareForm();
68
+
69
+ // $city = $this->_form->getElement('city');
70
+ if ($city) {
71
+ $city->addClass('rom-city');
72
+ $city->setRenderer(Mage::getModel('eadesigndev/adminhtml_render_cityorder'));
73
+ }
74
+
75
+ $this->_form->addFieldNameSuffix('order[billing_address]');
76
+ $this->_form->setHtmlNamePrefix('order[billing_address]');
77
+ $this->_form->setHtmlIdPrefix('order-billing_address_');
78
+
79
+ return $this;
80
+ }
81
+
82
+ /**
83
+ * Return Form Elements values
84
+ *
85
+ * @return array
86
+ */
87
+ public function getFormValues()
88
+ {
89
+ return $this->getCreateOrderModel()->getBillingAddress()->getData();
90
+ }
91
+
92
+ /**
93
+ * Return customer address id
94
+ *
95
+ * @return int|boolean
96
+ */
97
+ public function getAddressId()
98
+ {
99
+ return $this->getCreateOrderModel()->getBillingAddress()->getCustomerAddressId();
100
+ }
101
+
102
+ /**
103
+ * Return billing address object
104
+ *
105
+ * @return Mage_Customer_Model_Address
106
+ */
107
+ public function getAddress()
108
+ {
109
+ return $this->getCreateOrderModel()->getBillingAddress();
110
+ }
111
+ }
app/code/local/Eadesigndev/Romcity/Block/Adminhtml/Block/Sales/Order/Create/Shipping/Address.php ADDED
@@ -0,0 +1,152 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category Mage
22
+ * @package Mage_Adminhtml
23
+ * @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
+ */
26
+
27
+
28
+ /**
29
+ * Adminhtml sales order create shipping address block
30
+ *
31
+ * @category Mage
32
+ * @package Mage_Adminhtml
33
+ * @author Magento Core Team <core@magentocommerce.com>
34
+ */
35
+ class Eadesigndev_Romcity_Block_Adminhtml_Block_Sales_Order_Create_Shipping_Address
36
+ extends Mage_Adminhtml_Block_Sales_Order_Create_Shipping_Address
37
+ {
38
+ /**
39
+ * Return header text
40
+ *
41
+ * @return string
42
+ */
43
+ public function getHeaderText()
44
+ {
45
+ return Mage::helper('sales')->__('Shipping Address');
46
+ }
47
+
48
+ /**
49
+ * Return Header CSS Class
50
+ *
51
+ * @return string
52
+ */
53
+ public function getHeaderCssClass()
54
+ {
55
+ return 'head-shipping-address';
56
+ }
57
+
58
+ /**
59
+ * Prepare Form and add elements to form
60
+ *
61
+ * @return Mage_Adminhtml_Block_Sales_Order_Create_Shipping_Address
62
+ */
63
+ protected function _prepareForm()
64
+ {
65
+ $this->setJsVariablePrefix('shippingAddress');
66
+ parent::_prepareForm();
67
+
68
+ $city = $this->_form->getElement('city');
69
+ if ($city) {
70
+ $city->addClass('rom-city');
71
+ $city->setRenderer(Mage::getModel('eadesigndev/adminhtml_render_cityorder'));
72
+ }
73
+
74
+ return $this;
75
+ }
76
+
77
+ /**
78
+ * Return is shipping address flag
79
+ *
80
+ * @return boolean
81
+ */
82
+ public function getIsShipping()
83
+ {
84
+ return true;
85
+ }
86
+
87
+ /**
88
+ * Same as billing address flag
89
+ *
90
+ * @return boolean
91
+ */
92
+ public function getIsAsBilling()
93
+ {
94
+ return $this->getCreateOrderModel()->getShippingAddress()->getSameAsBilling();
95
+ }
96
+
97
+ /**
98
+ * Saving shipping address must be turned off, when it is the same as billing
99
+ *
100
+ * @return bool
101
+ */
102
+ public function getDontSaveInAddressBook()
103
+ {
104
+ return $this->getIsAsBilling();
105
+ }
106
+
107
+ /**
108
+ * Return Form Elements values
109
+ *
110
+ * @return array
111
+ */
112
+ public function getFormValues()
113
+ {
114
+ return $this->getAddress()->getData();
115
+ }
116
+
117
+ /**
118
+ * Return customer address id
119
+ *
120
+ * @return int|boolean
121
+ */
122
+ public function getAddressId()
123
+ {
124
+ return $this->getAddress()->getCustomerAddressId();
125
+ }
126
+
127
+ /**
128
+ * Return address object
129
+ *
130
+ * @return Mage_Customer_Model_Address
131
+ */
132
+ public function getAddress()
133
+ {
134
+ if ($this->getIsAsBilling()) {
135
+ $address = $this->getCreateOrderModel()->getBillingAddress();
136
+ } else {
137
+ $address = $this->getCreateOrderModel()->getShippingAddress();
138
+ }
139
+ return $address;
140
+ }
141
+
142
+ /**
143
+ * Return is address disabled flag
144
+ * Return true is the quote is virtual
145
+ *
146
+ * @return boolean
147
+ */
148
+ public function getIsDisabled()
149
+ {
150
+ return $this->getQuote()->isVirtual();
151
+ }
152
+ }
app/code/local/Eadesigndev/Romcity/Helper/Data.php ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Created by IntelliJ IDEA.
5
+ * User: eadesignpc
6
+ * Date: 5/5/2015
7
+ * Time: 10:16 AM
8
+ */
9
+ class Eadesigndev_Romcity_Helper_Data extends Mage_Core_Helper_Abstract
10
+ {
11
+
12
+ public function getCities($countryId, $regionId)
13
+ {
14
+ $cityCollection = Mage::getModel('eadesigndev/romcity')->getCollection();
15
+ $cityCollection->addFieldToSelect('cityname')
16
+ ->addFieldToFilter('country_id', $countryId)
17
+ ->addFieldToFilter('region_id', $regionId);
18
+
19
+ $jsonData = Mage::helper('core')->jsonEncode($cityCollection->getData());
20
+
21
+ return $jsonData;
22
+ }
23
+
24
+ public function getCitiesAsOptions($countryId, $regionId)
25
+ {
26
+ $cityCollection = Mage::getModel('eadesigndev/romcity')->getCollection();
27
+ $cityCollection->addFieldToSelect('cityname')
28
+ ->addFieldToFilter('country_id', $countryId)
29
+ ->addFieldToFilter('region_id', $regionId);
30
+
31
+ return $cityCollection;
32
+ }
33
+
34
+ }
app/code/local/Eadesigndev/Romcity/Model/Adminhtml/Customer/Renderer/Region.php ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Open Software License (OSL 3.0)
8
+ * that is bundled with this package in the file LICENSE.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/osl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category Mage
22
+ * @package Mage_Adminhtml
23
+ * @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
25
+ */
26
+
27
+ /**
28
+ * REgion field renderer
29
+ *
30
+ * @category Mage
31
+ * @package Mage_Adminhtml
32
+ * @author Magento Core Team <core@magentocommerce.com>
33
+ */
34
+ class Eadesigndev_Romcity_Model_Adminhtml_Customer_Renderer_Region implements Varien_Data_Form_Element_Renderer_Interface
35
+ {
36
+ /**
37
+ * Country region collections
38
+ *
39
+ * array(
40
+ * [$countryId] => Varien_Data_Collection_Db
41
+ * )
42
+ *
43
+ * @var array
44
+ */
45
+ static protected $_regionCollections;
46
+
47
+ public function render(Varien_Data_Form_Element_Abstract $element)
48
+ {
49
+ $html = '<tr>'."\n";
50
+
51
+ $countryId = false;
52
+ if ($country = $element->getForm()->getElement('country_id')) {
53
+ $countryId = $country->getValue();
54
+ }
55
+
56
+ $regionCollection = false;
57
+ if ($countryId) {
58
+ if (!isset(self::$_regionCollections[$countryId])) {
59
+ self::$_regionCollections[$countryId] = Mage::getModel('directory/country')
60
+ ->setId($countryId)
61
+ ->getLoadedRegionCollection()
62
+ ->toOptionArray();
63
+ }
64
+ $regionCollection = self::$_regionCollections[$countryId];
65
+ }
66
+
67
+ $regionId = intval($element->getForm()->getElement('region_id')->getValue());
68
+
69
+ $htmlAttributes = $element->getHtmlAttributes();
70
+ foreach ($htmlAttributes as $key => $attribute) {
71
+ if ('type' === $attribute) {
72
+ unset($htmlAttributes[$key]);
73
+ break;
74
+ }
75
+ }
76
+
77
+ // Output two elements - for 'region' and for 'region_id'.
78
+ // Two elements are needed later upon form post - to properly set data to address model,
79
+ // otherwise old value can be left in region_id attribute and saved to DB.
80
+ // Depending on country selected either 'region' (input text) or 'region_id' (selectbox) is visible to user
81
+ $regionHtmlName = $element->getName();
82
+ $regionIdHtmlName = str_replace('region', 'region_id', $regionHtmlName);
83
+ $regionHtmlId = $element->getHtmlId();
84
+ $regionIdHtmlId = str_replace('region', 'region_id', $regionHtmlId);
85
+
86
+ if ($regionCollection && count($regionCollection) > 0) {
87
+ $elementClass = $element->getClass();
88
+ $html.= '<td class="label">'.$element->getLabelHtml().'</td>';
89
+ $html.= '<td class="value">';
90
+
91
+ $html .= '<select class="regions-select-city" id="' . $regionIdHtmlId . '" name="' . $regionIdHtmlName . '" '
92
+ . $element->serialize($htmlAttributes) .'>' . "\n";
93
+ foreach ($regionCollection as $region) {
94
+ $selected = ($regionId==$region['value']) ? ' selected="selected"' : '';
95
+ $value = is_numeric($region['value'])?(int)$region['value']:"";
96
+ $html.= '<option value="'.$value.'"' . $selected . '>'
97
+ . Mage::helper('adminhtml')->escapeHtml(Mage::helper('directory')->__($region['label']))
98
+ . '</option>';
99
+ }
100
+ $html.= '</select>' . "\n";
101
+
102
+ $html .= '<input type="hidden" name="' . $regionHtmlName . '" id="' . $regionHtmlId . '" value=""/>';
103
+
104
+ $html.= '</td>';
105
+ $element->setClass($elementClass);
106
+ } else {
107
+ $element->setClass('input-text');
108
+ $html.= '<td class="label"><label for="'.$element->getHtmlId().'">'
109
+ . $element->getLabel()
110
+ . ' <span class="required" style="display:none">*</span></label></td>';
111
+
112
+ $element->setRequired(false);
113
+ $html.= '<td class="value">';
114
+ $html .= '<input id="' . $regionHtmlId . '" name="' . $regionHtmlName
115
+ . '" value="' . $element->getEscapedValue() . '" '
116
+ . $element->serialize($htmlAttributes) . "/>" . "\n";
117
+ $html .= '<input type="hidden" name="' . $regionIdHtmlName . '" id="' . $regionIdHtmlId . '" value=""/>';
118
+ $html .= '</td>'."\n";
119
+ }
120
+ $html.= '</tr>'."\n";
121
+ return $html;
122
+ }
123
+ }
app/code/local/Eadesigndev/Romcity/Model/Adminhtml/Render/City.php ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Created by IntelliJ IDEA.
5
+ * User: eadesignpc
6
+ * Date: 5/7/2015
7
+ * Time: 3:07 PM
8
+ */
9
+ class Eadesigndev_Romcity_Model_Adminhtml_Render_City implements Varien_Data_Form_Element_Renderer_Interface
10
+ {
11
+ public function render(Varien_Data_Form_Element_Abstract $element)
12
+ {
13
+
14
+ $countryId = false;
15
+ if ($country = $element->getForm()->getElement('country_id')) {
16
+ $countryId = $country->getValue();
17
+ }
18
+
19
+ $regionId = false;
20
+ if ($region = $element->getForm()->getElement('region_id')) {
21
+ $regionId = $region->getValue();
22
+ }
23
+
24
+ $city = false;
25
+ if ($cityData = $element->getForm()->getElement('city')) {
26
+ $city = $cityData->getValue();
27
+ }
28
+
29
+ $cities = Mage::helper('romcity')->getCitiesAsOptions($countryId, $regionId);
30
+ $cityData = $cities->getData();
31
+
32
+ // echo '<pre>';
33
+ // print_r($cityData);
34
+ // echo '</pre>';
35
+
36
+ $htmlAttributes = $element->getHtmlAttributes();
37
+ foreach ($htmlAttributes as $key => $attribute) {
38
+ if ('type' === $attribute) {
39
+ unset($htmlAttributes[$key]);
40
+ break;
41
+ }
42
+ }
43
+
44
+ $regionHtmlName = $element->getName();
45
+ $regionIdHtmlName = str_replace('region', 'region_id', $regionHtmlName);
46
+ $regionHtmlId = $element->getHtmlId();
47
+ $regionIdHtmlId = str_replace('region', 'region_id', $regionHtmlId);
48
+
49
+ $html = '<tr>' . "\n";
50
+ $html .= '<td class="label">' . $element->getLabelHtml() . '</td>';
51
+ $html .= '<td class="value">';
52
+
53
+ if (!empty($cityData)) {
54
+ $html .= '<select id="' . $regionIdHtmlId . '" name="' . $regionIdHtmlName . '" '
55
+ . $element->serialize($htmlAttributes) . '>' . "\n";
56
+ foreach ($cityData as $myCity) {
57
+
58
+ $selected = ($myCity['cityname'] == $city) ? ' selected="selected"' : '';
59
+ $html .= '<option value="' . $myCity['cityname'] . '"' . $selected . '>'
60
+ . Mage::helper('adminhtml')->escapeHtml(Mage::helper('directory')->__($myCity['cityname']))
61
+ . '</option>';
62
+ }
63
+ $html .= '</select>' . "\n";
64
+ } else {
65
+ $html = '<tr>' . "\n";
66
+ $html .= '<td class="label">' . $element->getLabelHtml() . '</td>';
67
+ $html .= '<td class="value">';
68
+ $html .= '<input id="' . $regionHtmlId . '" name="' . $regionHtmlName
69
+ . '" value="' . $element->getEscapedValue() . '" '
70
+ . $element->serialize($htmlAttributes) . "/>" . "\n";
71
+
72
+ $html .= '</td>' . "\n";
73
+ $html .= '</tr>' . "\n";
74
+ }
75
+
76
+
77
+ $html .= '</td>' . "\n";
78
+ $html .= '</tr>' . "\n";
79
+ return $html;
80
+
81
+
82
+ }
83
+
84
+ }
app/code/local/Eadesigndev/Romcity/Model/Adminhtml/Render/Cityorder.php ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Created by IntelliJ IDEA.
5
+ * User: eadesignpc
6
+ * Date: 5/7/2015
7
+ * Time: 3:07 PM
8
+ */
9
+ class Eadesigndev_Romcity_Model_Adminhtml_Render_Cityorder implements Varien_Data_Form_Element_Renderer_Interface
10
+ {
11
+ public function render(Varien_Data_Form_Element_Abstract $element)
12
+ {
13
+
14
+ $countryId = false;
15
+ if ($country = $element->getForm()->getElement('country_id')) {
16
+ $countryId = $country->getValue();
17
+ }
18
+
19
+ $regionId = false;
20
+ if ($region = $element->getForm()->getElement('region_id')) {
21
+ $regionId = $region->getValue();
22
+ }
23
+
24
+ $city = false;
25
+ if ($cityData = $element->getForm()->getElement('city')) {
26
+ $city = $cityData->getValue();
27
+ }
28
+
29
+ $cities = Mage::helper('romcity')->getCitiesAsOptions($countryId, $regionId);
30
+ $cityData = $cities->getData();
31
+
32
+ // echo '<pre>';
33
+ // print_r($cityData);
34
+ // echo '</pre>';
35
+
36
+ $htmlAttributes = $element->getHtmlAttributes();
37
+ foreach ($htmlAttributes as $key => $attribute) {
38
+ if ('type' === $attribute) {
39
+ unset($htmlAttributes[$key]);
40
+ break;
41
+ }
42
+ }
43
+
44
+ $regionHtmlName = $element->getName();
45
+ $changeJs = '';
46
+ if($regionHtmlName=='order[billing_address][city]'){
47
+ $changeJs = 'onchange="syncCity(this)"';
48
+ }
49
+ $regionIdHtmlName = str_replace('region', 'region_id', $regionHtmlName);
50
+ $regionHtmlId = $element->getHtmlId();
51
+ $regionIdHtmlId = str_replace('region', 'region_id', $regionHtmlId);
52
+
53
+ $html = '<tr>' . "\n";
54
+ $html .= '<td class="label">' . $element->getLabelHtml() . '</td>';
55
+ $html .= '<td class="value">';
56
+
57
+ if (!empty($cityData)) {
58
+ $html .= '<select id="' . $element->getHtmlId(). '" '.$changeJs.' name="' . $element->getName() . '" '
59
+ . $element->serialize($htmlAttributes) . '>' . "\n";
60
+ foreach ($cityData as $myCity) {
61
+
62
+ $selected = ($myCity['cityname'] == $city) ? ' selected="selected"' : '';
63
+ $html .= '<option value="' . $myCity['cityname'] . '"' . $selected . '>'
64
+ . Mage::helper('adminhtml')->escapeHtml(Mage::helper('directory')->__($myCity['cityname']))
65
+ . '</option>';
66
+ }
67
+ $html .= '</select>' . "\n";
68
+ } else {
69
+ $html = '<tr>' . "\n";
70
+ $html .= '<td class="label">' . $element->getLabelHtml() . '</td>';
71
+ $html .= '<td class="value">';
72
+ $html .= '<input id="' . $regionHtmlId . '" '.$changeJs.' name="' . $regionHtmlName
73
+ . '" value="' . $element->getEscapedValue() . '" '
74
+ . $element->serialize($htmlAttributes) . "/>" . "\n";
75
+
76
+ $html .= '</td>' . "\n";
77
+ $html .= '</tr>' . "\n";
78
+ }
79
+
80
+
81
+ $html .= '</td>' . "\n";
82
+ $html .= '</tr>' . "\n";
83
+ return $html;
84
+
85
+
86
+ }
87
+
88
+ }
app/code/local/Eadesigndev/Romcity/Model/Mysql4/Romcity.php ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /*
4
+ * To change this template, choose Tools | Templates
5
+ * and open the template in the editor.
6
+ */
7
+
8
+ /**
9
+ * Description of PdfGenerator
10
+ *
11
+ * @author Ea Design
12
+ *
13
+ *
14
+ */
15
+ class Eadesigndev_Romcity_Model_Mysql4_Romcity extends Mage_Core_Model_Mysql4_Abstract
16
+ {
17
+ /**
18
+ * Intitialize the collection
19
+ */
20
+ public function _construct()
21
+ {
22
+ $this->_init('eadesigndev/romcity', 'city_id');
23
+ }
24
+ }
app/code/local/Eadesigndev/Romcity/Model/Mysql4/Romcity/Collection.php ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /*
4
+ * To change this template, choose Tools | Templates
5
+ * and open the template in the editor.
6
+ */
7
+
8
+ /**
9
+ * Description of Collection
10
+ *
11
+ * @author Ea Design
12
+ */
13
+ class Eadesigndev_Romcity_Model_Mysql4_Romcity_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
14
+ {
15
+ /**
16
+ * Retrive the product collection.
17
+ */
18
+ public function _construct()
19
+ {
20
+ $this->_init('eadesigndev/romcity');
21
+ }
22
+ }
app/code/local/Eadesigndev/Romcity/Model/Romcity.php ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Description of PdfGenerator
5
+ *
6
+ * @author Ea Design
7
+ */
8
+ class Eadesigndev_Romcity_Model_Romcity extends Mage_Core_Model_Abstract
9
+ {
10
+
11
+ public function _construct()
12
+ {
13
+ $this->_init('eadesigndev/romcity');
14
+ }
15
+ }
app/code/local/Eadesigndev/Romcity/controllers/Adminhtml/IndexController.php ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ *
5
+ * @author Ea Design
6
+ */
7
+ class Eadesigndev_Romcity_Adminhtml_IndexController extends Mage_Adminhtml_Controller_Action
8
+ {
9
+ public function citiesAction()
10
+ {
11
+ if (!$this->getRequest()->isXmlHttpRequest()) {
12
+ return;
13
+ }
14
+
15
+ $cityId = (int)$this->getRequest()->getParam('city_id');
16
+ $countryId = $this->getRequest()->getParam('country_id');
17
+
18
+ if (!$cityId || !$countryId) {
19
+ return;
20
+ }
21
+
22
+ echo Mage::helper('romcity')->getCities($countryId, $cityId);
23
+
24
+ return;
25
+ }
26
+ }
app/code/local/Eadesigndev/Romcity/controllers/IndexController.php ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * We need to chege this one to the front. We will see!!!
5
+ *
6
+ * @author Ea Design
7
+ */
8
+ class Eadesigndev_Romcity_IndexController extends Mage_Core_Controller_Front_Action
9
+ {
10
+ public function citiesAction()
11
+ {
12
+ if (!$this->getRequest()->isXmlHttpRequest()) {
13
+ return;
14
+ }
15
+
16
+ $cityId = (int)$this->getRequest()->getParam('city_id');
17
+ $countryId = $this->getRequest()->getParam('country_id');
18
+
19
+ if (!$cityId || !$countryId) {
20
+ return;
21
+ }
22
+
23
+ echo Mage::helper('romcity')->getCities($countryId, $cityId);
24
+
25
+ return;
26
+ }
27
+ }
app/code/local/Eadesigndev/Romcity/etc/config.xml ADDED
@@ -0,0 +1,105 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <config>
3
+ <modules>
4
+ <Eadesigndev_Romcity>
5
+ <version>1.0.6</version>
6
+ </Eadesigndev_Romcity>
7
+ </modules>
8
+ <global>
9
+ <helpers>
10
+ <romcity>
11
+ <class>Eadesigndev_Romcity_Helper</class>
12
+ </romcity>
13
+ </helpers>
14
+ <blocks>
15
+ <pdfgenerator>
16
+ <class>Eadesigndev_Romcity_Block</class>
17
+ </pdfgenerator>
18
+ <adminhtml>
19
+ <rewrite>
20
+ <customer_edit_renderer_region>Eadesigndev_Romcity_Block_Adminhtml_Block_Customer_Edit_Renderer_Region</customer_edit_renderer_region>
21
+ <customer_edit_tab_addresses>Eadesigndev_Romcity_Block_Adminhtml_Block_Customer_Edit_Tab_Addresses</customer_edit_tab_addresses>
22
+ <sales_order_address_form>Eadesigndev_Romcity_Block_Adminhtml_Block_Sales_Order_Address_Form</sales_order_address_form>
23
+ <!--<sales_order_create_form_address>Eadesigndev_Romcity_Block_Adminhtml_Block_Sales_Order_Create_Form_Address</sales_order_create_form_address>-->
24
+ <sales_order_create_billing_address>Eadesigndev_Romcity_Block_Adminhtml_Block_Sales_Order_Create_Billing_Address</sales_order_create_billing_address>
25
+ <sales_order_create_shipping_address>Eadesigndev_Romcity_Block_Adminhtml_Block_Sales_Order_Create_Shipping_Address</sales_order_create_shipping_address>
26
+ </rewrite>
27
+ </adminhtml>
28
+ </blocks>
29
+ <models>
30
+ <adminhtml>
31
+ <rewrite>
32
+ <customer_renderer_region>Eadesigndev_Romcity_Model_Adminhtml_Customer_Renderer_Region</customer_renderer_region>
33
+ </rewrite>
34
+ </adminhtml>
35
+ <eadesigndev>
36
+ <class>Eadesigndev_Romcity_Model</class>
37
+ <resourceModel>romcity_mysql4</resourceModel>
38
+ </eadesigndev>
39
+ <romcity_mysql4>
40
+ <class>Eadesigndev_Romcity_Model_Mysql4</class>
41
+ <entities>
42
+ <romcity>
43
+ <table>directory_country_region_city</table>
44
+ </romcity>
45
+ </entities>
46
+ </romcity_mysql4>
47
+ </models>
48
+ <resources>
49
+ <eadsign_romcity_setup>
50
+ <setup>
51
+ <module>Eadesigndev_Romcity</module>
52
+ <class>Mage_Customer_Model_Entity_Setup</class>
53
+ </setup>
54
+ </eadsign_romcity_setup>
55
+ <romcity_write>
56
+ <connection>
57
+ <use>core_write</use>
58
+ </connection>
59
+ </romcity_write>
60
+ <romcity_read>
61
+ <connection>
62
+ <use>core_read</use>
63
+ </connection>
64
+ </romcity_read>
65
+ </resources>
66
+ </global>
67
+ <frontend>
68
+ <layout>
69
+ <updates>
70
+ <romcitys module="Eadesigndev_Romcity">
71
+ <file>romcity/romcity.xml</file>
72
+ </romcitys>
73
+ </updates>
74
+ </layout>
75
+ <routers>
76
+ <citydropdown>
77
+ <use>standard</use>
78
+ <args>
79
+ <module>Eadesigndev_Romcity</module>
80
+ <frontName>citydropdownadmin</frontName>
81
+ </args>
82
+ </citydropdown>
83
+ </routers>
84
+ </frontend>
85
+ <adminhtml>
86
+ <layout>
87
+ <updates>
88
+ <romcitys module="Eadesigndev_Romcity">
89
+ <file>romcity/romcity.xml</file>
90
+ </romcitys>
91
+ </updates>
92
+ </layout>
93
+ </adminhtml>
94
+ <admin>
95
+ <routers>
96
+ <citydropdownadmin>
97
+ <use>admin</use>
98
+ <args>
99
+ <module>Eadesigndev_Romcity</module>
100
+ <frontName>citydropdownadmin</frontName>
101
+ </args>
102
+ </citydropdownadmin>
103
+ </routers>
104
+ </admin>
105
+ </config>
app/code/local/Eadesigndev/Romcity/sql/eadsign_romcity_setup/mysql4-install-1.0.1.php ADDED
@@ -0,0 +1,12655 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /*
3
+ * To change this template, choose Tools | Templates
4
+ * and open the template in the editor.
5
+ */
6
+
7
+ /**
8
+ * Description of mysql4-install-1
9
+ *
10
+ * @author Ea Design
11
+ */
12
+ $installer = $this;
13
+
14
+ $installer->startSetup();
15
+
16
+ $installer->run("
17
+ DROP TABLE IF EXISTS {$this->getTable('eadesigndev/romcity')};
18
+ CREATE TABLE {$this->getTable('eadesigndev/romcity')} (
19
+ `city_id` mediumint(8) unsigned NOT NULL auto_increment,
20
+ `country_id` varchar(4) NOT NULL default '0',
21
+ `region_id` varchar(4) NOT NULL default '0',
22
+ `cityname` varchar(255) default NULL,
23
+ PRIMARY KEY (`city_id`),
24
+ KEY `FK_CITY_REGION` (`region_id`))
25
+ ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Region Cities';
26
+
27
+
28
+ INSERT INTO `directory_country_region_city` (`city_id`, `country_id`, `region_id`, `cityname`) VALUES
29
+ (1, 'RO ', '278', 'Abrud'),
30
+ (2, 'RO ', '278', 'Abrud-Sat'),
31
+ (3, 'RO ', '278', 'Achimetesti'),
32
+ (4, 'RO ', '278', 'Acmariu'),
33
+ (5, 'RO ', '278', 'Aiud'),
34
+ (6, 'RO ', '278', 'Aiudul de Sus'),
35
+ (7, 'RO ', '278', 'Alba Iulia'),
36
+ (8, 'RO ', '278', 'Albac'),
37
+ (9, 'RO ', '278', 'Alecus'),
38
+ (10, 'RO ', '278', 'Almasu de Mijloc'),
39
+ (11, 'RO ', '278', 'Almasu Mare'),
40
+ (12, 'RO ', '278', 'Ampoita'),
41
+ (13, 'RO ', '278', 'Arieseni'),
42
+ (14, 'RO ', '278', 'Asinip'),
43
+ (15, 'RO ', '278', 'Avram Iancu'),
44
+ (16, 'RO ', '278', 'Avramesti (Arieseni)'),
45
+ (17, 'RO ', '278', 'Avramesti (Avram Iancu)'),
46
+ (18, 'RO ', '278', 'Bacainti'),
47
+ (19, 'RO ', '278', 'Badai'),
48
+ (20, 'RO ', '278', 'Bagau'),
49
+ (21, 'RO ', '278', 'Baia de Aries'),
50
+ (22, 'RO ', '278', 'Balcaciu'),
51
+ (23, 'RO ', '278', 'Balesti'),
52
+ (24, 'RO ', '278', 'Balesti-Catun'),
53
+ (25, 'RO ', '278', 'BALOMIRU DE CAMP'),
54
+ (26, 'RO ', '278', 'Barabant'),
55
+ (27, 'RO ', '278', 'Barasti'),
56
+ (28, 'RO ', '278', 'Barlesti (Bistra)'),
57
+ (29, 'RO ', '278', 'Barlesti (Mogos)'),
58
+ (30, 'RO ', '278', 'Barlesti (Scarisoara)'),
59
+ (31, 'RO ', '278', 'Barzogani'),
60
+ (32, 'RO ', '278', 'Beldiu'),
61
+ (33, 'RO ', '278', 'Benic'),
62
+ (34, 'RO ', '278', 'Berghin'),
63
+ (35, 'RO ', '278', 'Beta'),
64
+ (36, 'RO ', '278', 'Biharia'),
65
+ (37, 'RO ', '278', 'Biia'),
66
+ (38, 'RO ', '278', 'Bilanesti'),
67
+ (39, 'RO ', '278', 'Bistra'),
68
+ (40, 'RO ', '278', 'Blaj'),
69
+ (41, 'RO ', '278', 'Blandiana'),
70
+ (42, 'RO ', '278', 'Blidesti'),
71
+ (43, 'RO ', '278', 'Bobaresti (Sohodol)'),
72
+ (44, 'RO ', '278', 'Bobaresti (Vidra)'),
73
+ (45, 'RO ', '278', 'Bodesti'),
74
+ (46, 'RO ', '278', 'Bogdanesti (Mogos)'),
75
+ (47, 'RO ', '278', 'Bogdanesti (Vidra)'),
76
+ (48, 'RO ', '278', 'Boncesti'),
77
+ (49, 'RO ', '278', 'Botesti (Campeni)'),
78
+ (50, 'RO ', '278', 'Botesti (Scarisoara)'),
79
+ (51, 'RO ', '278', 'Botesti (Zlatna)'),
80
+ (52, 'RO ', '278', 'Boz'),
81
+ (53, 'RO ', '278', 'Bradeana'),
82
+ (54, 'RO ', '278', 'Bradesti'),
83
+ (55, 'RO ', '278', 'Brazesti'),
84
+ (56, 'RO ', '278', 'Bubesti'),
85
+ (57, 'RO ', '278', 'Bucerdea granoasa'),
86
+ (58, 'RO ', '278', 'Bucerdea Vinoasa'),
87
+ (59, 'RO ', '278', 'Bucium'),
88
+ (60, 'RO ', '278', 'Bucium-Sat'),
89
+ (61, 'RO ', '278', 'Budaiesti'),
90
+ (62, 'RO ', '278', 'Budeni'),
91
+ (63, 'RO ', '278', 'Buninginea'),
92
+ (64, 'RO ', '278', 'Burzesti'),
93
+ (65, 'RO ', '278', 'Burzonesti'),
94
+ (66, 'RO ', '278', 'Butesti (Horea)'),
95
+ (67, 'RO ', '278', 'Butesti (Mogos)'),
96
+ (68, 'RO ', '278', 'Calnic'),
97
+ (69, 'RO ', '278', 'Calugaresti'),
98
+ (70, 'RO ', '278', 'Campeni'),
99
+ (71, 'RO ', '278', 'Candesti'),
100
+ (72, 'RO ', '278', 'CAPALNA'),
101
+ (73, 'RO ', '278', 'Capalna de Jos'),
102
+ (74, 'RO ', '278', 'Captalan'),
103
+ (75, 'RO ', '278', 'Capud'),
104
+ (76, 'RO ', '278', 'Carasti'),
105
+ (77, 'RO ', '278', 'Carpinis (Garbova)'),
106
+ (78, 'RO ', '278', 'Carpinis (Rosia Montana)'),
107
+ (79, 'RO ', '278', 'Casoaia'),
108
+ (80, 'RO ', '278', 'Cenade'),
109
+ (81, 'RO ', '278', 'Cerbu'),
110
+ (82, 'RO ', '278', 'Cergau'),
111
+ (83, 'RO ', '278', 'Cergau Mare'),
112
+ (84, 'RO ', '278', 'Cergau Mic'),
113
+ (85, 'RO ', '278', 'Certege'),
114
+ (86, 'RO ', '278', 'Ceru-Bacainti'),
115
+ (87, 'RO ', '278', 'Cetatea de Balta'),
116
+ (88, 'RO ', '278', 'Cetea'),
117
+ (89, 'RO ', '278', 'Cheile Cibului'),
118
+ (90, 'RO ', '278', 'Cib'),
119
+ (91, 'RO ', '278', 'Cicau'),
120
+ (92, 'RO ', '278', 'Cioara de Sus'),
121
+ (93, 'RO ', '278', 'Cistei'),
122
+ (94, 'RO ', '278', 'Cisteiu de Mures'),
123
+ (95, 'RO ', '278', 'Ciugud'),
124
+ (96, 'RO ', '278', 'Ciugudu de Jos'),
125
+ (97, 'RO ', '278', 'Ciugudu de Sus'),
126
+ (98, 'RO ', '278', 'Ciuguzel'),
127
+ (99, 'RO ', '278', 'Ciuldesti'),
128
+ (100, 'RO ', '278', 'Ciumbrud'),
129
+ (101, 'RO ', '278', 'Ciuruleasa'),
130
+ (102, 'RO ', '278', 'Coasta Hentii'),
131
+ (103, 'RO ', '278', 'Cocesti'),
132
+ (104, 'RO ', '278', 'Cocosesti'),
133
+ (105, 'RO ', '278', 'Cojocani'),
134
+ (106, 'RO ', '278', 'Coleseni'),
135
+ (107, 'RO ', '278', 'Coltesti'),
136
+ (108, 'RO ', '278', 'Copand'),
137
+ (109, 'RO ', '278', 'Corna'),
138
+ (110, 'RO ', '278', 'Coroiesti'),
139
+ (111, 'RO ', '278', 'Coslariu'),
140
+ (112, 'RO ', '278', 'Coslariu Nou'),
141
+ (113, 'RO ', '278', 'Costesti (Albac)'),
142
+ (114, 'RO ', '278', 'Costesti (Poiana Vadului)'),
143
+ (115, 'RO ', '278', 'Craciunelu de Jos'),
144
+ (116, 'RO ', '278', 'Craiva'),
145
+ (117, 'RO ', '278', 'Cretesti'),
146
+ (118, 'RO ', '278', 'Cricau'),
147
+ (119, 'RO ', '278', 'Cugir'),
148
+ (120, 'RO ', '278', 'Culdesti'),
149
+ (121, 'RO ', '278', 'Cunta'),
150
+ (122, 'RO ', '278', 'Curaturi'),
151
+ (123, 'RO ', '278', 'Curmatura'),
152
+ (124, 'RO ', '278', 'Cut'),
153
+ (125, 'RO ', '278', 'Daia Romana'),
154
+ (126, 'RO ', '278', 'Dambureni'),
155
+ (127, 'RO ', '278', 'Daroaia'),
156
+ (128, 'RO ', '278', 'Deal'),
157
+ (129, 'RO ', '278', 'Dealu Bajului'),
158
+ (130, 'RO ', '278', 'Dealu Bistrii'),
159
+ (131, 'RO ', '278', 'Dealu Caselor'),
160
+ (132, 'RO ', '278', 'Dealu Frumos (Garda de Sus)'),
161
+ (133, 'RO ', '278', 'Dealu Frumos (Vadu Motilor)'),
162
+ (134, 'RO ', '278', 'Dealu Geoagiului'),
163
+ (135, 'RO ', '278', 'Dealu Goiesti'),
164
+ (136, 'RO ', '278', 'Dealu Muntelui'),
165
+ (137, 'RO ', '278', 'Dealu Ordancusii'),
166
+ (138, 'RO ', '278', 'Dealu Roatei'),
167
+ (139, 'RO ', '278', 'Decea'),
168
+ (140, 'RO ', '278', 'Deoncesti'),
169
+ (141, 'RO ', '278', 'Deve'),
170
+ (142, 'RO ', '278', 'Dilimani'),
171
+ (143, 'RO ', '278', 'Dobra'),
172
+ (144, 'RO ', '278', 'Dogaresti'),
173
+ (145, 'RO ', '278', 'Dolesti'),
174
+ (146, 'RO ', '278', 'Doptau'),
175
+ (147, 'RO ', '278', 'Dos'),
176
+ (148, 'RO ', '278', 'Dostat'),
177
+ (149, 'RO ', '278', 'Dosu Luncii'),
178
+ (150, 'RO ', '278', 'Dosu Vasesti'),
179
+ (151, 'RO ', '278', 'Dragoiesti-Lunca'),
180
+ (152, 'RO ', '278', 'Drambar'),
181
+ (153, 'RO ', '278', 'Drasov'),
182
+ (154, 'RO ', '278', 'Duduieni'),
183
+ (155, 'RO ', '278', 'Dumacesti'),
184
+ (156, 'RO ', '278', 'Dumbrava (Sasciori)'),
185
+ (157, 'RO ', '278', 'Dumbrava (Unirea)'),
186
+ (158, 'RO ', '278', 'Dumbrava (Zlatna)'),
187
+ (159, 'RO ', '278', 'Dumitra'),
188
+ (160, 'RO ', '278', 'Dupa Deal (Lupsa)'),
189
+ (161, 'RO ', '278', 'Dupa Plese'),
190
+ (162, 'RO ', '278', 'Durasti'),
191
+ (163, 'RO ', '278', 'Faget'),
192
+ (164, 'RO ', '278', 'Fagetu de Jos'),
193
+ (165, 'RO ', '278', 'Fagetu de Sus'),
194
+ (166, 'RO ', '278', 'Farau'),
195
+ (167, 'RO ', '278', 'Fata'),
196
+ (168, 'RO ', '278', 'Fata Abrudului'),
197
+ (169, 'RO ', '278', 'Fata Cristesei'),
198
+ (170, 'RO ', '278', 'Fata Lapusului'),
199
+ (171, 'RO ', '278', 'Fata-Lazesti'),
200
+ (172, 'RO ', '278', 'Feisa'),
201
+ (173, 'RO ', '278', 'Fenes'),
202
+ (174, 'RO ', '278', 'Ficaresti'),
203
+ (175, 'RO ', '278', 'Floresti (Bucium)'),
204
+ (176, 'RO ', '278', 'Floresti (Campeni)'),
205
+ (177, 'RO ', '278', 'Floresti (Ramet)'),
206
+ (178, 'RO ', '278', 'Floresti (Scarisoara)'),
207
+ (179, 'RO ', '278', 'Furduiesti (Campeni)'),
208
+ (180, 'RO ', '278', 'Furduiesti (Sohodol)'),
209
+ (181, 'RO ', '278', 'Galati'),
210
+ (182, 'RO ', '278', 'Galbena'),
211
+ (183, 'RO ', '278', 'Galda de Jos'),
212
+ (184, 'RO ', '278', 'Galda de Sus'),
213
+ (185, 'RO ', '278', 'Galtiu'),
214
+ (186, 'RO ', '278', 'GAMBAS'),
215
+ (187, 'RO ', '278', 'Ganesti'),
216
+ (188, 'RO ', '278', 'Garbova'),
217
+ (189, 'RO ', '278', 'Garbova de Jos'),
218
+ (190, 'RO ', '278', 'Garbova de Sus'),
219
+ (191, 'RO ', '278', 'Garbovita'),
220
+ (192, 'RO ', '278', 'Garda de Sus'),
221
+ (193, 'RO ', '278', 'Garda Seaca'),
222
+ (194, 'RO ', '278', 'Garda-Barbulesti'),
223
+ (195, 'RO ', '278', 'Garde'),
224
+ (196, 'RO ', '278', 'Geamana'),
225
+ (197, 'RO ', '278', 'Geoagiu de Sus'),
226
+ (198, 'RO ', '278', 'Geogel'),
227
+ (199, 'RO ', '278', 'Geomal'),
228
+ (200, 'RO ', '278', 'Ghetari'),
229
+ (201, 'RO ', '278', 'Ghioncani'),
230
+ (202, 'RO ', '278', 'Ghirbom'),
231
+ (203, 'RO ', '278', 'Glogovet'),
232
+ (204, 'RO ', '278', 'Goiesti'),
233
+ (205, 'RO ', '278', 'Gojeiesti'),
234
+ (206, 'RO ', '278', 'Gura Ariesului'),
235
+ (207, 'RO ', '278', 'Gura Cornei'),
236
+ (208, 'RO ', '278', 'Gura Rosiei'),
237
+ (209, 'RO ', '278', 'Gura Sohodol'),
238
+ (210, 'RO ', '278', 'Hadarau'),
239
+ (211, 'RO ', '278', 'Hanasesti (Garda de Sus)'),
240
+ (212, 'RO ', '278', 'Hanasesti (Poiana Vadului)'),
241
+ (213, 'RO ', '278', 'Hanes Mina'),
242
+ (214, 'RO ', '278', 'Hapria'),
243
+ (215, 'RO ', '278', 'Henig'),
244
+ (216, 'RO ', '278', 'Heria'),
245
+ (217, 'RO ', '278', 'Hoanca (Sohodol)'),
246
+ (218, 'RO ', '278', 'Hoanca (Vidra)'),
247
+ (219, 'RO ', '278', 'Hodisesti'),
248
+ (220, 'RO ', '278', 'Hodobana'),
249
+ (221, 'RO ', '278', 'Hoparta'),
250
+ (222, 'RO ', '278', 'Horea'),
251
+ (223, 'RO ', '278', 'Hudricesti'),
252
+ (224, 'RO ', '278', 'Huzaresti'),
253
+ (225, 'RO ', '278', 'Iacobesti'),
254
+ (226, 'RO ', '278', 'Iclod'),
255
+ (227, 'RO ', '278', 'Ighiel'),
256
+ (228, 'RO ', '278', 'Ighiu'),
257
+ (229, 'RO ', '278', 'Ignatesti'),
258
+ (230, 'RO ', '278', 'Incesti (Avram Iancu)'),
259
+ (231, 'RO ', '278', 'Incesti (Posaga)'),
260
+ (232, 'RO ', '278', 'Inoc'),
261
+ (233, 'RO ', '278', 'Intregalde'),
262
+ (234, 'RO ', '278', 'Ivanis'),
263
+ (235, 'RO ', '278', 'Izbicioara'),
264
+ (236, 'RO ', '278', 'Izbita'),
265
+ (237, 'RO ', '278', 'Izlaz'),
266
+ (238, 'RO ', '278', 'Izvoarele (Blaj)'),
267
+ (239, 'RO ', '278', 'Izvoarele (Garda de Sus)'),
268
+ (240, 'RO ', '278', 'Izvoarele (Livezile)'),
269
+ (241, 'RO ', '278', 'Izvoru Ampoiului'),
270
+ (242, 'RO ', '278', 'Jidvei'),
271
+ (243, 'RO ', '278', 'Jojei'),
272
+ (244, 'RO ', '278', 'Lancram'),
273
+ (245, 'RO ', '278', 'Laz (Sasciori)'),
274
+ (246, 'RO ', '278', 'Laz (Vintu de Jos)'),
275
+ (247, 'RO ', '278', 'Lazesti (Scarisoara)'),
276
+ (248, 'RO ', '278', 'Lazesti (Vadu Motilor)'),
277
+ (249, 'RO ', '278', 'Lazuri (Lupsa)'),
278
+ (250, 'RO ', '278', 'Lazuri (Sohodol)'),
279
+ (251, 'RO ', '278', 'Lehesti'),
280
+ (252, 'RO ', '278', 'Leorint'),
281
+ (253, 'RO ', '278', 'Lespezea'),
282
+ (254, 'RO ', '278', 'Limba'),
283
+ (255, 'RO ', '278', 'Lipaia'),
284
+ (256, 'RO ', '278', 'Livezile'),
285
+ (257, 'RO ', '278', 'Lodroman'),
286
+ (258, 'RO ', '278', 'Loman'),
287
+ (259, 'RO ', '278', 'Lopadea Noua'),
288
+ (260, 'RO ', '278', 'Lopadea Veche'),
289
+ (261, 'RO ', '278', 'Luminesti'),
290
+ (262, 'RO ', '278', 'Lunca (Lupsa)'),
291
+ (263, 'RO ', '278', 'Lunca (Posaga)'),
292
+ (264, 'RO ', '278', 'Lunca (Valea Lunga)'),
293
+ (265, 'RO ', '278', 'Lunca (Vidra)'),
294
+ (266, 'RO ', '278', 'Lunca Ampoitei'),
295
+ (267, 'RO ', '278', 'Lunca Bisericii'),
296
+ (268, 'RO ', '278', 'Lunca de Jos'),
297
+ (269, 'RO ', '278', 'Lunca Goiesti'),
298
+ (270, 'RO ', '278', 'Lunca Larga (Bistra)'),
299
+ (271, 'RO ', '278', 'Lunca Larga (Ocolis)'),
300
+ (272, 'RO ', '278', 'Lunca Merilor'),
301
+ (273, 'RO ', '278', 'Lunca Metesului'),
302
+ (274, 'RO ', '278', 'Lunca Muresului'),
303
+ (275, 'RO ', '278', 'Lunca Tarnavei'),
304
+ (276, 'RO ', '278', 'Lunca Vesesti'),
305
+ (277, 'RO ', '278', 'Lupaiesti'),
306
+ (278, 'RO ', '278', 'Lupsa'),
307
+ (279, 'RO ', '278', 'Lupu'),
308
+ (280, 'RO ', '278', 'Lupulesti'),
309
+ (281, 'RO ', '278', 'Macaresti'),
310
+ (282, 'RO ', '278', 'Magina'),
311
+ (283, 'RO ', '278', 'Magura (Bucium)'),
312
+ (284, 'RO ', '278', 'Magura (Galda de Jos)'),
313
+ (285, 'RO ', '278', 'Mahaceni'),
314
+ (286, 'RO ', '278', 'Mamaligani'),
315
+ (287, 'RO ', '278', 'Manarade'),
316
+ (288, 'RO ', '278', 'Manastire'),
317
+ (289, 'RO ', '278', 'Martesti'),
318
+ (290, 'RO ', '278', 'Martinie'),
319
+ (291, 'RO ', '278', 'Matisesti (Ciuruleasa)'),
320
+ (292, 'RO ', '278', 'Matisesti (Horea)'),
321
+ (293, 'RO ', '278', 'Medves'),
322
+ (294, 'RO ', '278', 'Mereteu'),
323
+ (295, 'RO ', '278', 'Mescreac'),
324
+ (296, 'RO ', '278', 'Mesentea'),
325
+ (297, 'RO ', '278', 'Metes'),
326
+ (298, 'RO ', '278', 'Micesti'),
327
+ (299, 'RO ', '278', 'Micoslaca'),
328
+ (300, 'RO ', '278', 'Mihaiesti'),
329
+ (301, 'RO ', '278', 'Mihalt'),
330
+ (302, 'RO ', '278', 'Mihoesti'),
331
+ (303, 'RO ', '278', 'Miraslau'),
332
+ (304, 'RO ', '278', 'Modolesti (Intregalde)'),
333
+ (305, 'RO ', '278', 'Modolesti (Vidra)'),
334
+ (306, 'RO ', '278', 'Mogos'),
335
+ (307, 'RO ', '278', 'Moraresti (Ciuruleasa)'),
336
+ (308, 'RO ', '278', 'Moraresti (Sohodol)'),
337
+ (309, 'RO ', '278', 'Morcanesti'),
338
+ (310, 'RO ', '278', 'Motorasti'),
339
+ (311, 'RO ', '278', 'Muncelu'),
340
+ (312, 'RO ', '278', 'Munesti'),
341
+ (313, 'RO ', '278', 'Muntari'),
342
+ (314, 'RO ', '278', 'Mununa'),
343
+ (315, 'RO ', '278', 'Musca'),
344
+ (316, 'RO ', '278', 'Nadastia'),
345
+ (317, 'RO ', '278', 'Namas'),
346
+ (318, 'RO ', '278', 'Napaiesti'),
347
+ (319, 'RO ', '278', 'Necrilesti'),
348
+ (320, 'RO ', '278', 'Necsesti'),
349
+ (321, 'RO ', '278', 'Negesti'),
350
+ (322, 'RO ', '278', 'Negresti'),
351
+ (323, 'RO ', '278', 'Nelegesti'),
352
+ (324, 'RO ', '278', 'Nemesi'),
353
+ (325, 'RO ', '278', 'Nicoresti'),
354
+ (326, 'RO ', '278', 'Niculesti'),
355
+ (327, 'RO ', '278', 'Noslac'),
356
+ (328, 'RO ', '278', 'Novacesti'),
357
+ (329, 'RO ', '278', 'Oarda'),
358
+ (330, 'RO ', '278', 'Obreja'),
359
+ (331, 'RO ', '278', 'Ocna Mures'),
360
+ (332, 'RO ', '278', 'Ocoale'),
361
+ (333, 'RO ', '278', 'Ocolis'),
362
+ (334, 'RO ', '278', 'Odverem'),
363
+ (335, 'RO ', '278', 'Ohaba'),
364
+ (336, 'RO ', '278', 'Oiejdea'),
365
+ (337, 'RO ', '278', 'Olteni'),
366
+ (338, 'RO ', '278', 'Oncesti'),
367
+ (339, 'RO ', '278', 'Orgesti'),
368
+ (340, 'RO ', '278', 'Ormenis'),
369
+ (341, 'RO ', '278', 'Paclisa'),
370
+ (342, 'RO ', '278', 'Pagida'),
371
+ (343, 'RO ', '278', 'Panade'),
372
+ (344, 'RO ', '278', 'Pantesti'),
373
+ (345, 'RO ', '278', 'Parau Gruiului'),
374
+ (346, 'RO ', '278', 'Parau lui Mihai'),
375
+ (347, 'RO ', '278', 'Pastesti'),
376
+ (348, 'RO ', '278', 'Patrahaitesti'),
377
+ (349, 'RO ', '278', 'Patrangeni'),
378
+ (350, 'RO ', '278', 'Patrusesti'),
379
+ (351, 'RO ', '278', 'Peles'),
380
+ (352, 'RO ', '278', 'Perjesti'),
381
+ (353, 'RO ', '278', 'Peste Valea Bistrii'),
382
+ (354, 'RO ', '278', 'Petelca'),
383
+ (355, 'RO ', '278', 'Petelei'),
384
+ (356, 'RO ', '278', 'Petresti'),
385
+ (357, 'RO ', '278', 'Petrisat'),
386
+ (358, 'RO ', '278', 'Pianu'),
387
+ (359, 'RO ', '278', 'Pianu de Jos'),
388
+ (360, 'RO ', '278', 'Pianu de Sus'),
389
+ (361, 'RO ', '278', 'Pirita'),
390
+ (362, 'RO ', '278', 'Pitarcesti'),
391
+ (363, 'RO ', '278', 'Pitiga'),
392
+ (364, 'RO ', '278', 'Plai (Avram Iancu)'),
393
+ (365, 'RO ', '278', 'Plai (Garda de Sus)'),
394
+ (366, 'RO ', '278', 'Plescuta'),
395
+ (367, 'RO ', '278', 'Plesesti'),
396
+ (368, 'RO ', '278', 'Plisti'),
397
+ (369, 'RO ', '278', 'Podu lui Paul'),
398
+ (370, 'RO ', '278', 'Poduri-Bricesti'),
399
+ (371, 'RO ', '278', 'Poiana (Bistra)'),
400
+ (372, 'RO ', '278', 'Poiana (Bucium)'),
401
+ (373, 'RO ', '278', 'Poiana (Sohodol)'),
402
+ (374, 'RO ', '278', 'Poiana Aiudului'),
403
+ (375, 'RO ', '278', 'Poiana Ampoiului'),
404
+ (376, 'RO ', '278', 'Poiana Galdei'),
405
+ (377, 'RO ', '278', 'Poiana Vadului'),
406
+ (378, 'RO ', '278', 'Poieni (Blandiana)'),
407
+ (379, 'RO ', '278', 'Poieni (Bucium)'),
408
+ (380, 'RO ', '278', 'Poieni (Vidra)'),
409
+ (381, 'RO ', '278', 'Poienile-Mogos'),
410
+ (382, 'RO ', '278', 'Poienita (Arieseni)'),
411
+ (383, 'RO ', '278', 'Poienita (Vintu de Jos)'),
412
+ (384, 'RO ', '278', 'Poiu'),
413
+ (385, 'RO ', '278', 'Ponor'),
414
+ (386, 'RO ', '278', 'Ponorel'),
415
+ (387, 'RO ', '278', 'Popesti'),
416
+ (388, 'RO ', '278', 'Popestii de Jos'),
417
+ (389, 'RO ', '278', 'Popestii de Sus'),
418
+ (390, 'RO ', '278', 'Posaga'),
419
+ (391, 'RO ', '278', 'Posaga de Jos'),
420
+ (392, 'RO ', '278', 'Posaga de Sus'),
421
+ (393, 'RO ', '278', 'Potionci'),
422
+ (394, 'RO ', '278', 'Preluca'),
423
+ (395, 'RO ', '278', 'Presaca Ampoiului'),
424
+ (396, 'RO ', '278', 'Purcareti'),
425
+ (397, 'RO ', '278', 'Puselesti'),
426
+ (398, 'RO ', '278', 'Rachita'),
427
+ (399, 'RO ', '278', 'Radesti'),
428
+ (400, 'RO ', '278', 'Rahau'),
429
+ (401, 'RO ', '278', 'Ramet'),
430
+ (402, 'RO ', '278', 'Ratitis'),
431
+ (403, 'RO ', '278', 'Razboieni-Cetate'),
432
+ (404, 'RO ', '278', 'Reciu'),
433
+ (405, 'RO ', '278', 'Remetea'),
434
+ (406, 'RO ', '278', 'Rimetea'),
435
+ (407, 'RO ', '278', 'Rogoz'),
436
+ (408, 'RO ', '278', 'Rosesti'),
437
+ (409, 'RO ', '278', 'Rosia de Secas'),
438
+ (410, 'RO ', '278', 'Rosia Montana'),
439
+ (411, 'RO ', '278', 'Runc (Scarisoara)'),
440
+ (412, 'RO ', '278', 'Runc (Vidra)'),
441
+ (413, 'RO ', '278', 'Runc (Zlatna)'),
442
+ (414, 'RO ', '278', 'Rusesti'),
443
+ (415, 'RO ', '278', 'Rusi'),
444
+ (416, 'RO ', '278', 'Sagagea'),
445
+ (417, 'RO ', '278', 'Salciua'),
446
+ (418, 'RO ', '278', 'Salciua de Jos'),
447
+ (419, 'RO ', '278', 'Salciua de Sus'),
448
+ (420, 'RO ', '278', 'Salistea'),
449
+ (421, 'RO ', '278', 'Sanbenedic'),
450
+ (422, 'RO ', '278', 'Sancel'),
451
+ (423, 'RO ', '278', 'Sancrai'),
452
+ (424, 'RO ', '278', 'Sanmiclaus'),
453
+ (425, 'RO ', '278', 'Santamarie'),
454
+ (426, 'RO ', '278', 'Santimbru'),
455
+ (427, 'RO ', '278', 'SARACSAU'),
456
+ (428, 'RO ', '278', 'Sard'),
457
+ (429, 'RO ', '278', 'Sartas'),
458
+ (430, 'RO ', '278', 'Sasciori'),
459
+ (431, 'RO ', '278', 'Scarisoara'),
460
+ (432, 'RO ', '278', 'Scoarta'),
461
+ (433, 'RO ', '278', 'Sebes'),
462
+ (434, 'RO ', '278', 'Sebesel'),
463
+ (435, 'RO ', '278', 'Sebisesti'),
464
+ (436, 'RO ', '278', 'SECASEL'),
465
+ (437, 'RO ', '278', 'Seusa'),
466
+ (438, 'RO ', '278', 'Sfarcea'),
467
+ (439, 'RO ', '278', 'Sibot'),
468
+ (440, 'RO ', '278', 'Sicoiesti'),
469
+ (441, 'RO ', '278', 'Silea'),
470
+ (442, 'RO ', '278', 'Silivas'),
471
+ (443, 'RO ', '278', 'Snide'),
472
+ (444, 'RO ', '278', 'Soal'),
473
+ (445, 'RO ', '278', 'Soharu'),
474
+ (446, 'RO ', '278', 'Sohodol'),
475
+ (447, 'RO ', '278', 'Sohodol (Albac)'),
476
+ (448, 'RO ', '278', 'Soicesti'),
477
+ (449, 'RO ', '278', 'Sona'),
478
+ (450, 'RO ', '278', 'Sorlita'),
479
+ (451, 'RO ', '278', 'Spalnaca'),
480
+ (452, 'RO ', '278', 'Spatac'),
481
+ (453, 'RO ', '278', 'Spring'),
482
+ (454, 'RO ', '278', 'Stana de Mures'),
483
+ (455, 'RO ', '278', 'Stefanca'),
484
+ (456, 'RO ', '278', 'Stei-Arieseni'),
485
+ (457, 'RO ', '278', 'Stiuleti'),
486
+ (458, 'RO ', '278', 'Straja'),
487
+ (459, 'RO ', '278', 'Stremt'),
488
+ (460, 'RO ', '278', 'Strungari'),
489
+ (461, 'RO ', '278', 'Sub Piatra'),
490
+ (462, 'RO ', '278', 'SUGAG'),
491
+ (463, 'RO ', '278', 'Surdesti'),
492
+ (464, 'RO ', '278', 'Tamboresti'),
493
+ (465, 'RO ', '278', 'Taranesti'),
494
+ (466, 'RO ', '278', 'Tarsa'),
495
+ (467, 'RO ', '278', 'Tarsa-Plai'),
496
+ (468, 'RO ', '278', 'Tartaria'),
497
+ (469, 'RO ', '278', 'Tatarlaua'),
498
+ (470, 'RO ', '278', 'Tau Bistra'),
499
+ (471, 'RO ', '278', 'Tauni'),
500
+ (472, 'RO ', '278', 'Tauti'),
501
+ (473, 'RO ', '278', 'Tecsesti'),
502
+ (474, 'RO ', '278', 'Teius'),
503
+ (475, 'RO ', '278', 'Teleac'),
504
+ (476, 'RO ', '278', 'Telna'),
505
+ (477, 'RO ', '278', 'Tibru'),
506
+ (478, 'RO ', '278', 'Tiur'),
507
+ (479, 'RO ', '278', 'Tomesti'),
508
+ (480, 'RO ', '278', 'Tomnatec'),
509
+ (481, 'RO ', '278', 'Tomutesti'),
510
+ (482, 'RO ', '278', 'Totesti'),
511
+ (483, 'RO ', '278', 'Totoi'),
512
+ (484, 'RO ', '278', 'Trampoiele'),
513
+ (485, 'RO ', '278', 'Trancesti'),
514
+ (486, 'RO ', '278', 'Trifesti (Horea)'),
515
+ (487, 'RO ', '278', 'Trifesti (Lupsa)'),
516
+ (488, 'RO ', '278', 'Trisoresti'),
517
+ (489, 'RO ', '278', 'Turdas'),
518
+ (490, 'RO ', '278', 'Ungurei'),
519
+ (491, 'RO ', '278', 'Unirea'),
520
+ (492, 'RO ', '278', 'Urdes'),
521
+ (493, 'RO ', '278', 'Vadu Motilor'),
522
+ (494, 'RO ', '278', 'Valcea'),
523
+ (495, 'RO ', '278', 'Valea Abruzel'),
524
+ (496, 'RO ', '278', 'Valea Alba'),
525
+ (497, 'RO ', '278', 'Valea Barlutesti'),
526
+ (498, 'RO ', '278', 'Valea Barnii'),
527
+ (499, 'RO ', '278', 'valea bistrii'),
528
+ (500, 'RO ', '278', 'Valea Bucurului'),
529
+ (501, 'RO ', '278', 'Valea Caselor'),
530
+ (502, 'RO ', '278', 'Valea Cocesti'),
531
+ (503, 'RO ', '278', 'Valea Fagetului'),
532
+ (504, 'RO ', '278', 'Valea Inzelului'),
533
+ (505, 'RO ', '278', 'Valea lui Mihai'),
534
+ (506, 'RO ', '278', 'Valea Lunga'),
535
+ (507, 'RO ', '278', 'Valea Lupsii'),
536
+ (508, 'RO ', '278', 'Valea Manastirii'),
537
+ (509, 'RO ', '278', 'Valea Mare'),
538
+ (510, 'RO ', '278', 'Valea Mica'),
539
+ (511, 'RO ', '278', 'Valea Mlacii'),
540
+ (512, 'RO ', '278', 'Valea Morii'),
541
+ (513, 'RO ', '278', 'Valea Negrilesii'),
542
+ (514, 'RO ', '278', 'Valea Poienii (Bucium)'),
543
+ (515, 'RO ', '278', 'Valea Poienii (Ramet)'),
544
+ (516, 'RO ', '278', 'Valea sesii (Bucium)'),
545
+ (517, 'RO ', '278', 'Valea sesii (Lupsa)'),
546
+ (518, 'RO ', '278', 'Valea Utului'),
547
+ (519, 'RO ', '278', 'Valea Uzei'),
548
+ (520, 'RO ', '278', 'Valea Vintului'),
549
+ (521, 'RO ', '278', 'Valeni (Bucium)'),
550
+ (522, 'RO ', '278', 'Valeni (Metes)'),
551
+ (523, 'RO ', '278', 'Valisoara'),
552
+ (524, 'RO ', '278', 'Valtori (Vadu Motilor)'),
553
+ (525, 'RO ', '278', 'Valtori (Zlatna)'),
554
+ (526, 'RO ', '278', 'Vama Seaca'),
555
+ (527, 'RO ', '278', 'Varsi'),
556
+ (528, 'RO ', '278', 'Varsii Mari'),
557
+ (529, 'RO ', '278', 'Varsii Mici'),
558
+ (530, 'RO ', '278', 'Vartop'),
559
+ (531, 'RO ', '278', 'Vasesti'),
560
+ (532, 'RO ', '278', 'Verdesti'),
561
+ (533, 'RO ', '278', 'Veseus'),
562
+ (534, 'RO ', '278', 'Vidolm'),
563
+ (535, 'RO ', '278', 'Vidra'),
564
+ (536, 'RO ', '278', 'Vidrisoara'),
565
+ (537, 'RO ', '278', 'Vinerea'),
566
+ (538, 'RO ', '278', 'Vingard'),
567
+ (539, 'RO ', '278', 'Vintu de Jos'),
568
+ (540, 'RO ', '278', 'Vladesti'),
569
+ (541, 'RO ', '278', 'Vurpar'),
570
+ (542, 'RO ', '278', 'Zlatna'),
571
+ (543, 'RO ', '279', 'Aciuta'),
572
+ (544, 'RO ', '279', 'Adea'),
573
+ (545, 'RO ', '279', 'Agrisu Mare'),
574
+ (546, 'RO ', '279', 'Agrisu Mic'),
575
+ (547, 'RO ', '279', 'Aldesti'),
576
+ (548, 'RO ', '279', 'Almas'),
577
+ (549, 'RO ', '279', 'Alunis'),
578
+ (550, 'RO ', '279', 'Andrei Saguna'),
579
+ (551, 'RO ', '279', 'Apateu'),
580
+ (552, 'RO ', '279', 'Arad'),
581
+ (553, 'RO ', '279', 'Araneag'),
582
+ (554, 'RO ', '279', 'Archis'),
583
+ (555, 'RO ', '279', 'Avram Iancu (Cermei)'),
584
+ (556, 'RO ', '279', 'Avram Iancu (Varfurile)'),
585
+ (557, 'RO ', '279', 'Bacau de Mijloc'),
586
+ (558, 'RO ', '279', 'Baia'),
587
+ (559, 'RO ', '279', 'Banesti'),
588
+ (560, 'RO ', '279', 'Baratca'),
589
+ (561, 'RO ', '279', 'Barsa'),
590
+ (562, 'RO ', '279', 'Barzava'),
591
+ (563, 'RO ', '279', 'Barzesti'),
592
+ (564, 'RO ', '279', 'Bata'),
593
+ (565, 'RO ', '279', 'Batuta'),
594
+ (566, 'RO ', '279', 'Beliu'),
595
+ (567, 'RO ', '279', 'Belotint'),
596
+ (568, 'RO ', '279', 'Benesti'),
597
+ (569, 'RO ', '279', 'Berechiu'),
598
+ (570, 'RO ', '279', 'Berindia'),
599
+ (571, 'RO ', '279', 'Birchis'),
600
+ (572, 'RO ', '279', 'Bochia'),
601
+ (573, 'RO ', '279', 'Bocsig'),
602
+ (574, 'RO ', '279', 'Bodesti '),
603
+ (575, 'RO ', '279', 'Bodrogu Nou'),
604
+ (576, 'RO ', '279', 'Bodrogu Vechi'),
605
+ (577, 'RO ', '279', 'Bontesti'),
606
+ (578, 'RO ', '279', 'Botfei'),
607
+ (579, 'RO ', '279', 'Brazii'),
608
+ (580, 'RO ', '279', 'Brusturi'),
609
+ (581, 'RO ', '279', 'Bruznic'),
610
+ (582, 'RO ', '279', 'Buceava-soimus'),
611
+ (583, 'RO ', '279', 'Budesti'),
612
+ (584, 'RO ', '279', 'Buhani'),
613
+ (585, 'RO ', '279', 'Bulci'),
614
+ (586, 'RO ', '279', 'Buteni'),
615
+ (587, 'RO ', '279', 'Calugareni'),
616
+ (588, 'RO ', '279', 'Camna'),
617
+ (589, 'RO ', '279', 'Capalnas'),
618
+ (590, 'RO ', '279', 'Caporal Alexa'),
619
+ (591, 'RO ', '279', 'Caprioara'),
620
+ (592, 'RO ', '279', 'Capruta'),
621
+ (593, 'RO ', '279', 'Carand'),
622
+ (594, 'RO ', '279', 'Cermei'),
623
+ (595, 'RO ', '279', 'Chelmac'),
624
+ (596, 'RO ', '279', 'Cherelus'),
625
+ (597, 'RO ', '279', 'Chesint'),
626
+ (598, 'RO ', '279', 'Chier'),
627
+ (599, 'RO ', '279', 'Chisindia'),
628
+ (600, 'RO ', '279', 'Chisineu-Cris'),
629
+ (601, 'RO ', '279', 'Chislaca'),
630
+ (602, 'RO ', '279', 'Cicir'),
631
+ (603, 'RO ', '279', 'Cil'),
632
+ (604, 'RO ', '279', 'Cintei'),
633
+ (605, 'RO ', '279', 'Ciuntesti'),
634
+ (606, 'RO ', '279', 'Cladova'),
635
+ (607, 'RO ', '279', 'Clit'),
636
+ (608, 'RO ', '279', 'Cociuba'),
637
+ (609, 'RO ', '279', 'Comanesti'),
638
+ (610, 'RO ', '279', 'Conop'),
639
+ (611, 'RO ', '279', 'Corbesti'),
640
+ (612, 'RO ', '279', 'Coroi'),
641
+ (613, 'RO ', '279', 'Covasint'),
642
+ (614, 'RO ', '279', 'Craiva'),
643
+ (615, 'RO ', '279', 'Cristesti'),
644
+ (616, 'RO ', '279', 'Crocna'),
645
+ (617, 'RO ', '279', 'Cruceni'),
646
+ (618, 'RO ', '279', 'Cuias'),
647
+ (619, 'RO ', '279', 'Cuied'),
648
+ (620, 'RO ', '279', 'Curtici'),
649
+ (621, 'RO ', '279', 'Cuvesdia'),
650
+ (622, 'RO ', '279', 'Cuvin'),
651
+ (623, 'RO ', '279', 'Dezna'),
652
+ (624, 'RO ', '279', 'Dieci'),
653
+ (625, 'RO ', '279', 'Donceni'),
654
+ (626, 'RO ', '279', 'Dorgos'),
655
+ (627, 'RO ', '279', 'Dorobanti'),
656
+ (628, 'RO ', '279', 'Draut'),
657
+ (629, 'RO ', '279', 'Dud'),
658
+ (630, 'RO ', '279', 'Dulcele'),
659
+ (631, 'RO ', '279', 'Dumbrava'),
660
+ (632, 'RO ', '279', 'Dumbravita'),
661
+ (633, 'RO ', '279', 'Fantanele'),
662
+ (634, 'RO ', '279', 'Felnac'),
663
+ (635, 'RO ', '279', 'Fenis'),
664
+ (636, 'RO ', '279', 'Firiteaz'),
665
+ (637, 'RO ', '279', 'Fiscut'),
666
+ (638, 'RO ', '279', 'Frumuseni'),
667
+ (639, 'RO ', '279', 'Galsa'),
668
+ (640, 'RO ', '279', 'Ghioroc'),
669
+ (641, 'RO ', '279', 'Graniceri'),
670
+ (642, 'RO ', '279', 'Groseni'),
671
+ (643, 'RO ', '279', 'Grosi'),
672
+ (644, 'RO ', '279', 'Grosii Noi'),
673
+ (645, 'RO ', '279', 'Gura Vaii'),
674
+ (646, 'RO ', '279', 'Gurahont'),
675
+ (647, 'RO ', '279', 'Gurba'),
676
+ (648, 'RO ', '279', 'Halalis'),
677
+ (649, 'RO ', '279', 'Halmagel'),
678
+ (650, 'RO ', '279', 'Halmagiu'),
679
+ (651, 'RO ', '279', 'Hasmas'),
680
+ (652, 'RO ', '279', 'Hodis'),
681
+ (653, 'RO ', '279', 'Hontisor'),
682
+ (654, 'RO ', '279', 'Horia'),
683
+ (655, 'RO ', '279', 'Hunedoara Timisana'),
684
+ (656, 'RO ', '279', 'Iacobini'),
685
+ (657, 'RO ', '279', 'Iercoseni'),
686
+ (658, 'RO ', '279', 'Iermata'),
687
+ (659, 'RO ', '279', 'Iermata Neagra'),
688
+ (660, 'RO ', '279', 'Ignesti'),
689
+ (661, 'RO ', '279', 'Ilteu'),
690
+ (662, 'RO ', '279', 'Ineu'),
691
+ (663, 'RO ', '279', 'Ionesti'),
692
+ (664, 'RO ', '279', 'Iosas'),
693
+ (665, 'RO ', '279', 'Iratosu'),
694
+ (666, 'RO ', '279', 'Joia Mare'),
695
+ (667, 'RO ', '279', 'Julita'),
696
+ (668, 'RO ', '279', 'Labasint'),
697
+ (669, 'RO ', '279', 'Lalasint'),
698
+ (670, 'RO ', '279', 'Laz'),
699
+ (671, 'RO ', '279', 'Lazuri'),
700
+ (672, 'RO ', '279', 'Leasa'),
701
+ (673, 'RO ', '279', 'Lestioara'),
702
+ (674, 'RO ', '279', 'Lipova'),
703
+ (675, 'RO ', '279', 'Livada'),
704
+ (676, 'RO ', '279', 'Luguzau'),
705
+ (677, 'RO ', '279', 'Luncsoara'),
706
+ (678, 'RO ', '279', 'Lupesti'),
707
+ (679, 'RO ', '279', 'Macea'),
708
+ (680, 'RO ', '279', 'Maderat'),
709
+ (681, 'RO ', '279', 'Madrigesti'),
710
+ (682, 'RO ', '279', 'Magulicea'),
711
+ (683, 'RO ', '279', 'Mailat'),
712
+ (684, 'RO ', '279', 'Manastur'),
713
+ (685, 'RO ', '279', 'Mandruloc'),
714
+ (686, 'RO ', '279', 'Manerau'),
715
+ (687, 'RO ', '279', 'Maraus'),
716
+ (688, 'RO ', '279', 'Masca'),
717
+ (689, 'RO ', '279', 'Mermesti'),
718
+ (690, 'RO ', '279', 'Milova'),
719
+ (691, 'RO ', '279', 'Minead'),
720
+ (692, 'RO ', '279', 'Minis'),
721
+ (693, 'RO ', '279', 'Minisel'),
722
+ (694, 'RO ', '279', 'Minisu de Sus'),
723
+ (695, 'RO ', '279', 'Misca'),
724
+ (696, 'RO ', '279', 'Mocrea'),
725
+ (697, 'RO ', '279', 'Moneasa'),
726
+ (698, 'RO ', '279', 'Monorostia'),
727
+ (699, 'RO ', '279', 'Moroda'),
728
+ (700, 'RO ', '279', 'Motiori'),
729
+ (701, 'RO ', '279', 'Munar'),
730
+ (702, 'RO ', '279', 'Mustesti'),
731
+ (703, 'RO ', '279', 'Nadab'),
732
+ (704, 'RO ', '279', 'Nadalbesti'),
733
+ (705, 'RO ', '279', 'Nadas'),
734
+ (706, 'RO ', '279', 'Nadlac'),
735
+ (707, 'RO ', '279', 'Neagra'),
736
+ (708, 'RO ', '279', 'Nermis'),
737
+ (709, 'RO ', '279', 'Neudorf'),
738
+ (710, 'RO ', '279', 'Nicolae Balcescu'),
739
+ (711, 'RO ', '279', 'Obarsia'),
740
+ (712, 'RO ', '279', 'Odvos'),
741
+ (713, 'RO ', '279', 'Olari'),
742
+ (714, 'RO ', '279', 'Ostrov'),
743
+ (715, 'RO ', '279', 'Paiuseni'),
744
+ (716, 'RO ', '279', 'Pancota'),
745
+ (717, 'RO ', '279', 'Parnesti'),
746
+ (718, 'RO ', '279', 'Patars'),
747
+ (719, 'RO ', '279', 'Paulian'),
748
+ (720, 'RO ', '279', 'Paulis'),
749
+ (721, 'RO ', '279', 'Pecica'),
750
+ (722, 'RO ', '279', 'Peregu Mare'),
751
+ (723, 'RO ', '279', 'Peregu Mic'),
752
+ (724, 'RO ', '279', 'Pescari'),
753
+ (725, 'RO ', '279', 'Petris'),
754
+ (726, 'RO ', '279', 'Pilu'),
755
+ (727, 'RO ', '279', 'Plescuta'),
756
+ (728, 'RO ', '279', 'Poiana'),
757
+ (729, 'RO ', '279', 'Poienari'),
758
+ (730, 'RO ', '279', 'Prunisor'),
759
+ (731, 'RO ', '279', 'Radesti'),
760
+ (732, 'RO ', '279', 'Radna'),
761
+ (733, 'RO ', '279', 'Ranusa'),
762
+ (734, 'RO ', '279', 'Rapsig'),
763
+ (735, 'RO ', '279', 'Revetis'),
764
+ (736, 'RO ', '279', 'Rogoz de Beliu'),
765
+ (737, 'RO ', '279', 'Rosia'),
766
+ (738, 'RO ', '279', 'Rosia Noua'),
767
+ (739, 'RO ', '279', 'Rostoci'),
768
+ (740, 'RO ', '279', 'Sagu'),
769
+ (741, 'RO ', '279', 'Salajeni'),
770
+ (742, 'RO ', '279', 'Sambateni'),
771
+ (743, 'RO ', '279', 'Sanleani'),
772
+ (744, 'RO ', '279', 'Sanmartin'),
773
+ (745, 'RO ', '279', 'Sanpaul'),
774
+ (746, 'RO ', '279', 'Sanpetru German'),
775
+ (747, 'RO ', '279', 'Santana'),
776
+ (748, 'RO ', '279', 'Sarbi'),
777
+ (749, 'RO ', '279', 'Satu Mare'),
778
+ (750, 'RO ', '279', 'Satu Mic'),
779
+ (751, 'RO ', '279', 'Satu Nou'),
780
+ (752, 'RO ', '279', 'Savarsin'),
781
+ (753, 'RO ', '279', 'Sebis'),
782
+ (754, 'RO ', '279', 'Secaci'),
783
+ (755, 'RO ', '279', 'Secas'),
784
+ (756, 'RO ', '279', 'Secusigiu'),
785
+ (757, 'RO ', '279', 'Sederhat'),
786
+ (758, 'RO ', '279', 'Seitin'),
787
+ (759, 'RO ', '279', 'Seleus'),
788
+ (760, 'RO ', '279', 'Seliste'),
789
+ (761, 'RO ', '279', 'Selistea'),
790
+ (762, 'RO ', '279', 'Semlac'),
791
+ (763, 'RO ', '279', 'Sepreus'),
792
+ (764, 'RO ', '279', 'Siad'),
793
+ (765, 'RO ', '279', 'Siclau'),
794
+ (766, 'RO ', '279', 'Sicula'),
795
+ (767, 'RO ', '279', 'Silindia'),
796
+ (768, 'RO ', '279', 'Simand'),
797
+ (769, 'RO ', '279', 'Sintea Mare'),
798
+ (770, 'RO ', '279', 'Sintea Mica'),
799
+ (771, 'RO ', '279', 'Siria'),
800
+ (772, 'RO ', '279', 'Sistarovat'),
801
+ (773, 'RO ', '279', 'Slatina de Cris'),
802
+ (774, 'RO ', '279', 'Slatina de Mures'),
803
+ (775, 'RO ', '279', 'Socodor'),
804
+ (776, 'RO ', '279', 'Sofronea'),
805
+ (777, 'RO ', '279', 'Soimos'),
806
+ (778, 'RO ', '279', 'Somosches'),
807
+ (779, 'RO ', '279', 'Stejar'),
808
+ (780, 'RO ', '279', 'Stoinesti'),
809
+ (781, 'RO ', '279', 'Susag'),
810
+ (782, 'RO ', '279', 'Susani'),
811
+ (783, 'RO ', '279', 'Tagadau'),
812
+ (784, 'RO ', '279', 'Talagiu'),
813
+ (785, 'RO ', '279', 'Talmaci'),
814
+ (786, 'RO ', '279', 'Tarmure'),
815
+ (787, 'RO ', '279', 'Tarnavita'),
816
+ (788, 'RO ', '279', 'Tarnova'),
817
+ (789, 'RO ', '279', 'Taut'),
818
+ (790, 'RO ', '279', 'Tela'),
819
+ (791, 'RO ', '279', 'Temesesti'),
820
+ (792, 'RO ', '279', 'Tipar'),
821
+ (793, 'RO ', '279', 'Tisa'),
822
+ (794, 'RO ', '279', 'Tisa Noua'),
823
+ (795, 'RO ', '279', 'Toc'),
824
+ (796, 'RO ', '279', 'Tohesti'),
825
+ (797, 'RO ', '279', 'Troas'),
826
+ (798, 'RO ', '279', 'Turnu'),
827
+ (799, 'RO ', '279', 'Urvisu de Beliu'),
828
+ (800, 'RO ', '279', 'Ususau'),
829
+ (801, 'RO ', '279', 'Valea Mare (Gurahont)'),
830
+ (802, 'RO ', '279', 'Valea Mare (Savarsin)'),
831
+ (803, 'RO ', '279', 'Vanatori'),
832
+ (804, 'RO ', '279', 'Varadia de Mures'),
833
+ (805, 'RO ', '279', 'Varfurile'),
834
+ (806, 'RO ', '279', 'Variasu Mare'),
835
+ (807, 'RO ', '279', 'Variasu Mic'),
836
+ (808, 'RO ', '279', 'Varnita'),
837
+ (809, 'RO ', '279', 'Varsand'),
838
+ (810, 'RO ', '279', 'Vasile Goldis'),
839
+ (811, 'RO ', '279', 'Vasoaia'),
840
+ (812, 'RO ', '279', 'Vidra'),
841
+ (813, 'RO ', '279', 'Vinga'),
842
+ (814, 'RO ', '279', 'Virismort'),
843
+ (815, 'RO ', '279', 'Vladimirescu'),
844
+ (816, 'RO ', '279', 'Voivodeni'),
845
+ (817, 'RO ', '279', 'Zabalt'),
846
+ (818, 'RO ', '279', 'Zabrani'),
847
+ (819, 'RO ', '279', 'Zadareni'),
848
+ (820, 'RO ', '279', 'Zarand'),
849
+ (821, 'RO ', '279', 'Zerind'),
850
+ (822, 'RO ', '279', 'Zerindu Mic'),
851
+ (823, 'RO ', '279', 'Zimandcuz'),
852
+ (824, 'RO ', '279', 'Zimandu Nou'),
853
+ (825, 'RO ', '279', 'Zimbru'),
854
+ (826, 'RO ', '280', 'Albesti'),
855
+ (827, 'RO ', '280', 'Albestii de Arges'),
856
+ (828, 'RO ', '280', 'Albestii de Muscel'),
857
+ (829, 'RO ', '280', 'Albestii Pamanteni'),
858
+ (830, 'RO ', '280', 'Albestii Ungureni'),
859
+ (831, 'RO ', '280', 'Albota'),
860
+ (832, 'RO ', '280', 'Alunis'),
861
+ (833, 'RO ', '280', 'Aninoasa'),
862
+ (834, 'RO ', '280', 'Arefu'),
863
+ (835, 'RO ', '280', 'Argesani'),
864
+ (836, 'RO ', '280', 'Argeselu'),
865
+ (837, 'RO ', '280', 'Babana'),
866
+ (838, 'RO ', '280', 'Babaroaga'),
867
+ (839, 'RO ', '280', 'Badeni'),
868
+ (840, 'RO ', '280', 'Badesti (Barla)'),
869
+ (841, 'RO ', '280', 'Badesti (Pietrosani)'),
870
+ (842, 'RO ', '280', 'Baiculesti'),
871
+ (843, 'RO ', '280', 'Bajesti'),
872
+ (844, 'RO ', '280', 'Balabani'),
873
+ (845, 'RO ', '280', 'Balilesti'),
874
+ (846, 'RO ', '280', 'Banaresti'),
875
+ (847, 'RO ', '280', 'Baranesti'),
876
+ (848, 'RO ', '280', 'Barasti'),
877
+ (849, 'RO ', '280', 'Barla'),
878
+ (850, 'RO ', '280', 'Barlogu'),
879
+ (851, 'RO ', '280', 'Barsestii de Jos'),
880
+ (852, 'RO ', '280', 'Barzesti'),
881
+ (853, 'RO ', '280', 'Bascov'),
882
+ (854, 'RO ', '280', 'Bascovele'),
883
+ (855, 'RO ', '280', 'Batrani'),
884
+ (856, 'RO ', '280', 'Beleti'),
885
+ (857, 'RO ', '280', 'Beleti-Negresti'),
886
+ (858, 'RO ', '280', 'Berevoesti'),
887
+ (859, 'RO ', '280', 'Berindesti'),
888
+ (860, 'RO ', '280', 'Bilcesti'),
889
+ (861, 'RO ', '280', 'Blejani'),
890
+ (862, 'RO ', '280', 'Bogati'),
891
+ (863, 'RO ', '280', 'Bordeieni'),
892
+ (864, 'RO ', '280', 'Borlesti'),
893
+ (865, 'RO ', '280', 'Borobanesti'),
894
+ (866, 'RO ', '280', 'Boteni'),
895
+ (867, 'RO ', '280', 'Botesti'),
896
+ (868, 'RO ', '280', 'Bradetu'),
897
+ (869, 'RO ', '280', 'Bradu'),
898
+ (870, 'RO ', '280', 'Bradulet'),
899
+ (871, 'RO ', '280', 'Braileni'),
900
+ (872, 'RO ', '280', 'Bratesti'),
901
+ (873, 'RO ', '280', 'Bratia (Berevoesti)'),
902
+ (874, 'RO ', '280', 'Brosteni (Aninoasa)'),
903
+ (875, 'RO ', '280', 'Brosteni (Costesti)'),
904
+ (876, 'RO ', '280', 'Bucsenesti'),
905
+ (877, 'RO ', '280', 'Bucsenesti-Lotasi'),
906
+ (878, 'RO ', '280', 'Budeasa'),
907
+ (879, 'RO ', '280', 'Budeasa Mare'),
908
+ (880, 'RO ', '280', 'Budeasa Mica'),
909
+ (881, 'RO ', '280', 'Budisteni'),
910
+ (882, 'RO ', '280', 'Bughea de Jos'),
911
+ (883, 'RO ', '280', 'Bughea de Sus'),
912
+ (884, 'RO ', '280', 'Bunesti (Cotmeana)'),
913
+ (885, 'RO ', '280', 'Burdea'),
914
+ (886, 'RO ', '280', 'Burdesti'),
915
+ (887, 'RO ', '280', 'Burlusi'),
916
+ (888, 'RO ', '280', 'Buzoesti'),
917
+ (889, 'RO ', '280', 'Caldararu'),
918
+ (890, 'RO ', '280', 'Calinesti'),
919
+ (891, 'RO ', '280', 'Calotesti'),
920
+ (892, 'RO ', '280', 'Campulung'),
921
+ (893, 'RO ', '280', 'Candesti'),
922
+ (894, 'RO ', '280', 'Capatanenii Pamanteni'),
923
+ (895, 'RO ', '280', 'Capu Piscului (Godeni)'),
924
+ (896, 'RO ', '280', 'Capu Piscului (Merisani)'),
925
+ (897, 'RO ', '280', 'Carcesti'),
926
+ (898, 'RO ', '280', 'Carciumaresti'),
927
+ (899, 'RO ', '280', 'Carpenis'),
928
+ (900, 'RO ', '280', 'Carstieni'),
929
+ (901, 'RO ', '280', 'Catanele'),
930
+ (902, 'RO ', '280', 'Cateasca'),
931
+ (903, 'RO ', '280', 'Ceauresti'),
932
+ (904, 'RO ', '280', 'Ceausesti'),
933
+ (905, 'RO ', '280', 'Cepari'),
934
+ (906, 'RO ', '280', 'Cepari (Poiana Lacului)'),
935
+ (907, 'RO ', '280', 'Ceparii Pamanteni'),
936
+ (908, 'RO ', '280', 'Cerbu'),
937
+ (909, 'RO ', '280', 'Cerbureni'),
938
+ (910, 'RO ', '280', 'Cersani'),
939
+ (911, 'RO ', '280', 'Cetateni'),
940
+ (912, 'RO ', '280', 'Chilii'),
941
+ (913, 'RO ', '280', 'Chiritesti (Suseni)'),
942
+ (914, 'RO ', '280', 'Chiritesti (Uda)'),
943
+ (915, 'RO ', '280', 'Chiritesti (Vedea)'),
944
+ (916, 'RO ', '280', 'Chitani'),
945
+ (917, 'RO ', '280', 'Chitesti'),
946
+ (918, 'RO ', '280', 'Cicanesti'),
947
+ (919, 'RO ', '280', 'Ciobanesti'),
948
+ (920, 'RO ', '280', 'Ciobani'),
949
+ (921, 'RO ', '280', 'Ciocanai'),
950
+ (922, 'RO ', '280', 'Ciocanesti'),
951
+ (923, 'RO ', '280', 'Ciocanu'),
952
+ (924, 'RO ', '280', 'Ciocesti'),
953
+ (925, 'RO ', '280', 'Ciofrangeni'),
954
+ (926, 'RO ', '280', 'Ciolcesti'),
955
+ (927, 'RO ', '280', 'Ciomagesti'),
956
+ (928, 'RO ', '280', 'Ciresu'),
957
+ (929, 'RO ', '280', 'Ciulnita'),
958
+ (930, 'RO ', '280', 'Ciupa-Manciulescu'),
959
+ (931, 'RO ', '280', 'Clucereasa'),
960
+ (932, 'RO ', '280', 'Cocenesti'),
961
+ (933, 'RO ', '280', 'Cochinesti'),
962
+ (934, 'RO ', '280', 'Cocu'),
963
+ (935, 'RO ', '280', 'Colibasi'),
964
+ (936, 'RO ', '280', 'Coltu'),
965
+ (937, 'RO ', '280', 'Contesti'),
966
+ (938, 'RO ', '280', 'Corbeni'),
967
+ (939, 'RO ', '280', 'Corbi'),
968
+ (940, 'RO ', '280', 'Corbsori'),
969
+ (941, 'RO ', '280', 'Cornatel'),
970
+ (942, 'RO ', '280', 'Coseri'),
971
+ (943, 'RO ', '280', 'Cosesti'),
972
+ (944, 'RO ', '280', 'Costesti'),
973
+ (945, 'RO ', '280', 'Costesti (Cotmeana)'),
974
+ (946, 'RO ', '280', 'Costesti-Valsan'),
975
+ (947, 'RO ', '280', 'Coteasca'),
976
+ (948, 'RO ', '280', 'Cotenesti'),
977
+ (949, 'RO ', '280', 'Cotesti'),
978
+ (950, 'RO ', '280', 'Cotmeana'),
979
+ (951, 'RO ', '280', 'Cotu (Cuca)'),
980
+ (952, 'RO ', '280', 'Cotu (Uda)'),
981
+ (953, 'RO ', '280', 'Cotu Malului'),
982
+ (954, 'RO ', '280', 'Crucisoara'),
983
+ (955, 'RO ', '280', 'Cuca'),
984
+ (956, 'RO ', '280', 'Curtea de Arges'),
985
+ (957, 'RO ', '280', 'Dambovicioara'),
986
+ (958, 'RO ', '280', 'Darmanesti'),
987
+ (959, 'RO ', '280', 'Davidesti'),
988
+ (960, 'RO ', '280', 'Deagu de Jos'),
989
+ (961, 'RO ', '280', 'Deagu de Sus'),
990
+ (962, 'RO ', '280', 'Dealu'),
991
+ (963, 'RO ', '280', 'Dealu Bisericii'),
992
+ (964, 'RO ', '280', 'Dealu Bradului'),
993
+ (965, 'RO ', '280', 'Dealu Frumos'),
994
+ (966, 'RO ', '280', 'Dealu Obejdeanului'),
995
+ (967, 'RO ', '280', 'Dealu Padurii'),
996
+ (968, 'RO ', '280', 'Dealu Tolcesii'),
997
+ (969, 'RO ', '280', 'Dealu Viilor (Mosoaia)'),
998
+ (970, 'RO ', '280', 'Dealu Viilor (Poiana Lacului)'),
999
+ (971, 'RO ', '280', 'Dedulesti'),
1000
+ (972, 'RO ', '280', 'Dobresti'),
1001
+ (973, 'RO ', '280', 'Dobrogostea'),
1002
+ (974, 'RO ', '280', 'Dobrotu'),
1003
+ (975, 'RO ', '280', 'Domnesti'),
1004
+ (976, 'RO ', '280', 'Draganu'),
1005
+ (977, 'RO ', '280', 'Draganu-Olteni'),
1006
+ (978, 'RO ', '280', 'Draghicesti'),
1007
+ (979, 'RO ', '280', 'Draghici'),
1008
+ (980, 'RO ', '280', 'Dragoslavele'),
1009
+ (981, 'RO ', '280', 'Dumbravesti'),
1010
+ (982, 'RO ', '280', 'Falfani'),
1011
+ (983, 'RO ', '280', 'Fedelesoiu'),
1012
+ (984, 'RO ', '280', 'Fratici'),
1013
+ (985, 'RO ', '280', 'Furduesti'),
1014
+ (986, 'RO ', '280', 'Furesti'),
1015
+ (987, 'RO ', '280', 'Furnicosi'),
1016
+ (988, 'RO ', '280', 'Gainusa'),
1017
+ (989, 'RO ', '280', 'Galasesti (Budeasa)'),
1018
+ (990, 'RO ', '280', 'Galasesti (Suseni)'),
1019
+ (991, 'RO ', '280', 'Galesu'),
1020
+ (992, 'RO ', '280', 'Gamacesti'),
1021
+ (993, 'RO ', '280', 'Ganesti'),
1022
+ (994, 'RO ', '280', 'Gardinesti'),
1023
+ (995, 'RO ', '280', 'Gaujani'),
1024
+ (996, 'RO ', '280', 'Geamana'),
1025
+ (997, 'RO ', '280', 'Glambocata'),
1026
+ (998, 'RO ', '280', 'Glambocata-Deal'),
1027
+ (999, 'RO ', '280', 'Glambocelu'),
1028
+ (1000, 'RO ', '280', 'Glavacioc'),
1029
+ (1001, 'RO ', '280', 'Gliganu de Jos'),
1030
+ (1002, 'RO ', '280', 'Gliganu de Sus'),
1031
+ (1003, 'RO ', '280', 'Glodu (Calinesti)'),
1032
+ (1004, 'RO ', '280', 'Glodu (Leordeni)'),
1033
+ (1005, 'RO ', '280', 'Godeni'),
1034
+ (1006, 'RO ', '280', 'Goia'),
1035
+ (1007, 'RO ', '280', 'Golesti (stefanesti)'),
1036
+ (1008, 'RO ', '280', 'Gorani'),
1037
+ (1009, 'RO ', '280', 'Gorganu'),
1038
+ (1010, 'RO ', '280', 'Greaban'),
1039
+ (1011, 'RO ', '280', 'Greabanu'),
1040
+ (1012, 'RO ', '280', 'Grosani'),
1041
+ (1013, 'RO ', '280', 'Grosi'),
1042
+ (1014, 'RO ', '280', 'Gruiu (Cateasca)'),
1043
+ (1015, 'RO ', '280', 'Gura Pravat'),
1044
+ (1016, 'RO ', '280', 'Gura Vaii'),
1045
+ (1017, 'RO ', '280', 'Harsesti'),
1046
+ (1018, 'RO ', '280', 'Hartiesti'),
1047
+ (1019, 'RO ', '280', 'Hintesti'),
1048
+ (1020, 'RO ', '280', 'Humele'),
1049
+ (1021, 'RO ', '280', 'Ianculesti'),
1050
+ (1022, 'RO ', '280', 'Ioanicesti'),
1051
+ (1023, 'RO ', '280', 'Ionesti'),
1052
+ (1024, 'RO ', '280', 'Izvorani'),
1053
+ (1025, 'RO ', '280', 'Izvoru'),
1054
+ (1026, 'RO ', '280', 'Izvoru de Jos'),
1055
+ (1027, 'RO ', '280', 'Izvoru de Sus'),
1056
+ (1028, 'RO ', '280', 'Jgheaburi'),
1057
+ (1029, 'RO ', '280', 'Jugur'),
1058
+ (1030, 'RO ', '280', 'Jupanesti'),
1059
+ (1031, 'RO ', '280', 'Laceni'),
1060
+ (1032, 'RO ', '280', 'Lacurile'),
1061
+ (1033, 'RO ', '280', 'Laicai'),
1062
+ (1034, 'RO ', '280', 'Langesti'),
1063
+ (1035, 'RO ', '280', 'Lapusani'),
1064
+ (1036, 'RO ', '280', 'Launele de Sus'),
1065
+ (1037, 'RO ', '280', 'Lazaresti (Mosoaia)'),
1066
+ (1038, 'RO ', '280', 'Lazaresti (Schitu Golesti)'),
1067
+ (1039, 'RO ', '280', 'Leicesti'),
1068
+ (1040, 'RO ', '280', 'Lentea'),
1069
+ (1041, 'RO ', '280', 'Leordeni'),
1070
+ (1042, 'RO ', '280', 'Leresti'),
1071
+ (1043, 'RO ', '280', 'Lintesti'),
1072
+ (1044, 'RO ', '280', 'Livezeni'),
1073
+ (1045, 'RO ', '280', 'Loturi'),
1074
+ (1046, 'RO ', '280', 'Lunca'),
1075
+ (1047, 'RO ', '280', 'Lunca Corbului'),
1076
+ (1048, 'RO ', '280', 'Lunca Gartii'),
1077
+ (1049, 'RO ', '280', 'Malu (Barla)'),
1078
+ (1050, 'RO ', '280', 'Malu (Godeni)'),
1079
+ (1051, 'RO ', '280', 'Malu Vanat'),
1080
+ (1052, 'RO ', '280', 'Malureni'),
1081
+ (1053, 'RO ', '280', 'Manesti'),
1082
+ (1054, 'RO ', '280', 'Manicesti'),
1083
+ (1055, 'RO ', '280', 'Maracineni'),
1084
+ (1056, 'RO ', '280', 'Mares'),
1085
+ (1057, 'RO ', '280', 'Marghia de Jos'),
1086
+ (1058, 'RO ', '280', 'Marghia de Sus'),
1087
+ (1059, 'RO ', '280', 'Martalogi'),
1088
+ (1060, 'RO ', '280', 'Matau'),
1089
+ (1061, 'RO ', '280', 'Merisani'),
1090
+ (1062, 'RO ', '280', 'Micesti'),
1091
+ (1063, 'RO ', '280', 'Mihaesti'),
1092
+ (1064, 'RO ', '280', 'Mioarele'),
1093
+ (1065, 'RO ', '280', 'Mioarele (Cicanesti)'),
1094
+ (1066, 'RO ', '280', 'Mioveni'),
1095
+ (1067, 'RO ', '280', 'Mirosi'),
1096
+ (1068, 'RO ', '280', 'Moara Mocanului'),
1097
+ (1069, 'RO ', '280', 'Moraresti'),
1098
+ (1070, 'RO ', '280', 'Mosoaia'),
1099
+ (1071, 'RO ', '280', 'Mosteni-Greci'),
1100
+ (1072, 'RO ', '280', 'Mozaceni'),
1101
+ (1073, 'RO ', '280', 'Mozacenii-Vale'),
1102
+ (1074, 'RO ', '280', 'Musatesti'),
1103
+ (1075, 'RO ', '280', 'Namaesti'),
1104
+ (1076, 'RO ', '280', 'Negrasi'),
1105
+ (1077, 'RO ', '280', 'Negreni'),
1106
+ (1078, 'RO ', '280', 'Negresti'),
1107
+ (1079, 'RO ', '280', 'Nucsoara'),
1108
+ (1080, 'RO ', '280', 'Oarja'),
1109
+ (1081, 'RO ', '280', 'Oestii Pamanteni'),
1110
+ (1082, 'RO ', '280', 'Oestii Ungureni'),
1111
+ (1083, 'RO ', '280', 'Ogrezea'),
1112
+ (1084, 'RO ', '280', 'Opresti'),
1113
+ (1085, 'RO ', '280', 'Orodel'),
1114
+ (1086, 'RO ', '280', 'Otelu'),
1115
+ (1087, 'RO ', '280', 'Padureni'),
1116
+ (1088, 'RO ', '280', 'Padureti'),
1117
+ (1089, 'RO ', '280', 'Paduroiu din Vale'),
1118
+ (1090, 'RO ', '280', 'Paltenu'),
1119
+ (1091, 'RO ', '280', 'Paraschivesti'),
1120
+ (1092, 'RO ', '280', 'Patuleni'),
1121
+ (1093, 'RO ', '280', 'Pauleasca (Malureni)'),
1122
+ (1094, 'RO ', '280', 'Pauleasca (Micesti)'),
1123
+ (1095, 'RO ', '280', 'Petresti'),
1124
+ (1096, 'RO ', '280', 'Piatra (Stoenesti)'),
1125
+ (1097, 'RO ', '280', 'Pietrosani'),
1126
+ (1098, 'RO ', '280', 'Piscani'),
1127
+ (1099, 'RO ', '280', 'Pitesti'),
1128
+ (1100, 'RO ', '280', 'Pitoi'),
1129
+ (1101, 'RO ', '280', 'Podeni'),
1130
+ (1102, 'RO ', '280', 'Podu Brosteni'),
1131
+ (1103, 'RO ', '280', 'Podu Dambovitei'),
1132
+ (1104, 'RO ', '280', 'Poduri'),
1133
+ (1105, 'RO ', '280', 'Poiana Lacului'),
1134
+ (1106, 'RO ', '280', 'Poienari (Corbeni)'),
1135
+ (1107, 'RO ', '280', 'Poienari (Poienarii de Muscel)'),
1136
+ (1108, 'RO ', '280', 'Poienarii de Arges'),
1137
+ (1109, 'RO ', '280', 'Poienarii de Muscel'),
1138
+ (1110, 'RO ', '280', 'Poienita'),
1139
+ (1111, 'RO ', '280', 'Pojorata'),
1140
+ (1112, 'RO ', '280', 'Popesti'),
1141
+ (1113, 'RO ', '280', 'Popesti (Cocu)'),
1142
+ (1114, 'RO ', '280', 'Popesti (Sapata)'),
1143
+ (1115, 'RO ', '280', 'Priboaia'),
1144
+ (1116, 'RO ', '280', 'Priboieni'),
1145
+ (1117, 'RO ', '280', 'Priseaca'),
1146
+ (1118, 'RO ', '280', 'Prislopu Mare'),
1147
+ (1119, 'RO ', '280', 'Prislopu Mic'),
1148
+ (1120, 'RO ', '280', 'Purcareni (Micesti)'),
1149
+ (1121, 'RO ', '280', 'Purcareni (Popesti)'),
1150
+ (1122, 'RO ', '280', 'Raca'),
1151
+ (1123, 'RO ', '280', 'Rachitele de Jos'),
1152
+ (1124, 'RO ', '280', 'Rachitele de Sus'),
1153
+ (1125, 'RO ', '280', 'Racovita'),
1154
+ (1126, 'RO ', '280', 'Radesti'),
1155
+ (1127, 'RO ', '280', 'Rancaciov'),
1156
+ (1128, 'RO ', '280', 'Ratesti'),
1157
+ (1129, 'RO ', '280', 'Recea'),
1158
+ (1130, 'RO ', '280', 'Recea (Cateasca)'),
1159
+ (1131, 'RO ', '280', 'Retevoiesti'),
1160
+ (1132, 'RO ', '280', 'Robaia'),
1161
+ (1133, 'RO ', '280', 'Rociu'),
1162
+ (1134, 'RO ', '280', 'Rogojina'),
1163
+ (1135, 'RO ', '280', 'Rotunda'),
1164
+ (1136, 'RO ', '280', 'Rucar'),
1165
+ (1137, 'RO ', '280', 'Rudeni (Mihaesti)'),
1166
+ (1138, 'RO ', '280', 'Rudeni (suici)'),
1167
+ (1139, 'RO ', '280', 'Salatrucu'),
1168
+ (1140, 'RO ', '280', 'Samara'),
1169
+ (1141, 'RO ', '280', 'Sapata'),
1170
+ (1142, 'RO ', '280', 'Sapunari'),
1171
+ (1143, 'RO ', '280', 'Satic'),
1172
+ (1144, 'RO ', '280', 'Sboghitesti'),
1173
+ (1145, 'RO ', '280', 'Schitu Golesti'),
1174
+ (1146, 'RO ', '280', 'Schitu Scoicesti'),
1175
+ (1147, 'RO ', '280', 'Schitu-Matei'),
1176
+ (1148, 'RO ', '280', 'Selari'),
1177
+ (1149, 'RO ', '280', 'Serbanesti (Poienarii de Muscel)'),
1178
+ (1150, 'RO ', '280', 'Serbanesti (Rociu)'),
1179
+ (1151, 'RO ', '280', 'Serboeni'),
1180
+ (1152, 'RO ', '280', 'Silistea'),
1181
+ (1153, 'RO ', '280', 'Silisteni'),
1182
+ (1154, 'RO ', '280', 'Sinesti'),
1183
+ (1155, 'RO ', '280', 'Slanic'),
1184
+ (1156, 'RO ', '280', 'Slatina'),
1185
+ (1157, 'RO ', '280', 'Slatioarele'),
1186
+ (1158, 'RO ', '280', 'Slobozia'),
1187
+ (1159, 'RO ', '280', 'Slobozia (Stoenesti)'),
1188
+ (1160, 'RO ', '280', 'Smeura'),
1189
+ (1161, 'RO ', '280', 'Spiridoni'),
1190
+ (1162, 'RO ', '280', 'Stalpeni'),
1191
+ (1163, 'RO ', '280', 'Stanesti'),
1192
+ (1164, 'RO ', '280', 'Stanicei'),
1193
+ (1165, 'RO ', '280', 'Starci'),
1194
+ (1166, 'RO ', '280', 'Stefan cel Mare'),
1195
+ (1167, 'RO ', '280', 'Stefanesti'),
1196
+ (1168, 'RO ', '280', 'Stefanesti (Suseni)'),
1197
+ (1169, 'RO ', '280', 'Stefanestii Noi'),
1198
+ (1170, 'RO ', '280', 'Stoenesti'),
1199
+ (1171, 'RO ', '280', 'Stolnici'),
1200
+ (1172, 'RO ', '280', 'Strambeni (Caldararu)'),
1201
+ (1173, 'RO ', '280', 'Strambeni (Suseni)'),
1202
+ (1174, 'RO ', '280', 'Stroesti'),
1203
+ (1175, 'RO ', '280', 'Suici'),
1204
+ (1176, 'RO ', '280', 'Surdulesti'),
1205
+ (1177, 'RO ', '280', 'Suseni'),
1206
+ (1178, 'RO ', '280', 'Suseni (Bogati)'),
1207
+ (1179, 'RO ', '280', 'Suslanesti'),
1208
+ (1180, 'RO ', '280', 'Teiu'),
1209
+ (1181, 'RO ', '280', 'Tiganesti'),
1210
+ (1182, 'RO ', '280', 'Tigveni'),
1211
+ (1183, 'RO ', '280', 'Tigveni (Ratesti)'),
1212
+ (1184, 'RO ', '280', 'Titesti'),
1213
+ (1185, 'RO ', '280', 'Toplita'),
1214
+ (1186, 'RO ', '280', 'Topoloveni'),
1215
+ (1187, 'RO ', '280', 'Turburea'),
1216
+ (1188, 'RO ', '280', 'Tutana'),
1217
+ (1189, 'RO ', '280', 'Tutulesti'),
1218
+ (1190, 'RO ', '280', 'Uda'),
1219
+ (1191, 'RO ', '280', 'Udeni-Zavoi'),
1220
+ (1192, 'RO ', '280', 'Uiasca'),
1221
+ (1193, 'RO ', '280', 'Ulita'),
1222
+ (1194, 'RO ', '280', 'Ungheni'),
1223
+ (1195, 'RO ', '280', 'Urechesti'),
1224
+ (1196, 'RO ', '280', 'Urlucea'),
1225
+ (1197, 'RO ', '280', 'Urlueni'),
1226
+ (1198, 'RO ', '280', 'Ursoaia'),
1227
+ (1199, 'RO ', '280', 'Vacarea'),
1228
+ (1200, 'RO ', '280', 'Valcelele'),
1229
+ (1201, 'RO ', '280', 'Valea Badenilor'),
1230
+ (1202, 'RO ', '280', 'Valea Bradului'),
1231
+ (1203, 'RO ', '280', 'Valea Brazilor'),
1232
+ (1204, 'RO ', '280', 'Valea Cetatuia'),
1233
+ (1205, 'RO ', '280', 'Valea Corbului'),
1234
+ (1206, 'RO ', '280', 'Valea Danului'),
1235
+ (1207, 'RO ', '280', 'Valea Faurului'),
1236
+ (1208, 'RO ', '280', 'Valea Hotarului'),
1237
+ (1209, 'RO ', '280', 'Valea Iasului'),
1238
+ (1210, 'RO ', '280', 'Valea Indarat'),
1239
+ (1211, 'RO ', '280', 'Valea lui Enache'),
1240
+ (1212, 'RO ', '280', 'Valea Manastirii'),
1241
+ (1213, 'RO ', '280', 'Valea Mare'),
1242
+ (1214, 'RO ', '280', 'Valea Mare-Bratia'),
1243
+ (1215, 'RO ', '280', 'Valea Mare-Podgoria'),
1244
+ (1216, 'RO ', '280', 'Valea Mare-Pravat'),
1245
+ (1217, 'RO ', '280', 'Valea Marului'),
1246
+ (1218, 'RO ', '280', 'Valea Nandrii'),
1247
+ (1219, 'RO ', '280', 'Valea Nenii'),
1248
+ (1220, 'RO ', '280', 'Valea Pechii'),
1249
+ (1221, 'RO ', '280', 'Valea Popii (Mihaesti)'),
1250
+ (1222, 'RO ', '280', 'Valea Popii (Priboieni)'),
1251
+ (1223, 'RO ', '280', 'Valea Rizii'),
1252
+ (1224, 'RO ', '280', 'Valea Rumanestilor'),
1253
+ (1225, 'RO ', '280', 'Valea Silistii'),
1254
+ (1226, 'RO ', '280', 'Valea Stanii'),
1255
+ (1227, 'RO ', '280', 'Valea Ursului'),
1256
+ (1228, 'RO ', '280', 'Valeni'),
1257
+ (1229, 'RO ', '280', 'Valeni-Podgoria'),
1258
+ (1230, 'RO ', '280', 'Valsanesti'),
1259
+ (1231, 'RO ', '280', 'Varzaroaia'),
1260
+ (1232, 'RO ', '280', 'Vata'),
1261
+ (1233, 'RO ', '280', 'Vedea'),
1262
+ (1234, 'RO ', '280', 'Vernesti'),
1263
+ (1235, 'RO ', '280', 'Viisoara'),
1264
+ (1236, 'RO ', '280', 'Vladesti'),
1265
+ (1237, 'RO ', '280', 'Vladuta'),
1266
+ (1238, 'RO ', '280', 'Voinesti'),
1267
+ (1239, 'RO ', '280', 'Voroveni'),
1268
+ (1240, 'RO ', '280', 'Vranesti'),
1269
+ (1241, 'RO ', '280', 'Vulpesti'),
1270
+ (1242, 'RO ', '280', 'Vulturesti'),
1271
+ (1243, 'RO ', '280', 'Zarnesti'),
1272
+ (1244, 'RO ', '280', 'Zavoi'),
1273
+ (1245, 'RO ', '280', 'Zigoneni'),
1274
+ (1246, 'RO ', '281', 'Agas'),
1275
+ (1247, 'RO ', '281', 'Albele'),
1276
+ (1248, 'RO ', '281', 'Antohesti'),
1277
+ (1249, 'RO ', '281', 'Apa Asau'),
1278
+ (1250, 'RO ', '281', 'Ardeoani'),
1279
+ (1251, 'RO ', '281', 'Arini'),
1280
+ (1252, 'RO ', '281', 'Asau'),
1281
+ (1253, 'RO ', '281', 'Bacau'),
1282
+ (1254, 'RO ', '281', 'Bacioiu'),
1283
+ (1255, 'RO ', '281', 'Bahna'),
1284
+ (1256, 'RO ', '281', 'Bahnaseni'),
1285
+ (1257, 'RO ', '281', 'Baimac'),
1286
+ (1258, 'RO ', '281', 'Balaneasa'),
1287
+ (1259, 'RO ', '281', 'Balanesti (Dealu Morii)'),
1288
+ (1260, 'RO ', '281', 'Balanesti (Podu Turcului)'),
1289
+ (1261, 'RO ', '281', 'Balca'),
1290
+ (1262, 'RO ', '281', 'Balcani'),
1291
+ (1263, 'RO ', '281', 'Baltata'),
1292
+ (1264, 'RO ', '281', 'Barati'),
1293
+ (1265, 'RO ', '281', 'Barboasa'),
1294
+ (1266, 'RO ', '281', 'Barcana'),
1295
+ (1267, 'RO ', '281', 'Barsanesti'),
1296
+ (1268, 'RO ', '281', 'Barzulesti'),
1297
+ (1269, 'RO ', '281', 'Basasti'),
1298
+ (1270, 'RO ', '281', 'Bazga'),
1299
+ (1271, 'RO ', '281', 'Beresti'),
1300
+ (1272, 'RO ', '281', 'Beresti-Bistrita'),
1301
+ (1273, 'RO ', '281', 'Beresti-Tazlau'),
1302
+ (1274, 'RO ', '281', 'Berzunti'),
1303
+ (1275, 'RO ', '281', 'Bibiresti'),
1304
+ (1276, 'RO ', '281', 'Bijghir'),
1305
+ (1277, 'RO ', '281', 'Blagesti'),
1306
+ (1278, 'RO ', '281', 'Blidari'),
1307
+ (1279, 'RO ', '281', 'Boanta'),
1308
+ (1280, 'RO ', '281', 'Bogata'),
1309
+ (1281, 'RO ', '281', 'Bogdan Voda'),
1310
+ (1282, 'RO ', '281', 'Bogdana'),
1311
+ (1283, 'RO ', '281', 'Bogdanesti'),
1312
+ (1284, 'RO ', '281', 'Bogdanesti (Scorteni)'),
1313
+ (1285, 'RO ', '281', 'Bogdanesti (Traian)'),
1314
+ (1286, 'RO ', '281', 'Boistea'),
1315
+ (1287, 'RO ', '281', 'Bolatau'),
1316
+ (1288, 'RO ', '281', 'Bolovanis'),
1317
+ (1289, 'RO ', '281', 'Borsani'),
1318
+ (1290, 'RO ', '281', 'Borzesti'),
1319
+ (1291, 'RO ', '281', 'Bosoteni'),
1320
+ (1292, 'RO ', '281', 'Botesti'),
1321
+ (1293, 'RO ', '281', 'Brad (Beresti-Bistrita)'),
1322
+ (1294, 'RO ', '281', 'Brad (Filipeni)'),
1323
+ (1295, 'RO ', '281', 'Brad (Negri)'),
1324
+ (1296, 'RO ', '281', 'Bratesti'),
1325
+ (1297, 'RO ', '281', 'Bratila'),
1326
+ (1298, 'RO ', '281', 'Brusturoasa'),
1327
+ (1299, 'RO ', '281', 'Buchila'),
1328
+ (1300, 'RO ', '281', 'Buciumi'),
1329
+ (1301, 'RO ', '281', 'Bucsesti'),
1330
+ (1302, 'RO ', '281', 'Buda (Berzunti)'),
1331
+ (1303, 'RO ', '281', 'Buda (Blagesti)'),
1332
+ (1304, 'RO ', '281', 'Buda (Rachitoasa)'),
1333
+ (1305, 'RO ', '281', 'Budesti'),
1334
+ (1306, 'RO ', '281', 'Buhocel'),
1335
+ (1307, 'RO ', '281', 'Buhoci'),
1336
+ (1308, 'RO ', '281', 'Buhusi'),
1337
+ (1309, 'RO ', '281', 'Burdusaci'),
1338
+ (1310, 'RO ', '281', 'Buruienis'),
1339
+ (1311, 'RO ', '281', 'Cabesti'),
1340
+ (1312, 'RO ', '281', 'Caiuti'),
1341
+ (1313, 'RO ', '281', 'Calcai'),
1342
+ (1314, 'RO ', '281', 'Calini'),
1343
+ (1315, 'RO ', '281', 'Calugareni'),
1344
+ (1316, 'RO ', '281', 'Camenca'),
1345
+ (1317, 'RO ', '281', 'Capata'),
1346
+ (1318, 'RO ', '281', 'Capotesti'),
1347
+ (1319, 'RO ', '281', 'Caraclau'),
1348
+ (1320, 'RO ', '281', 'Carligi'),
1349
+ (1321, 'RO ', '281', 'Casin'),
1350
+ (1322, 'RO ', '281', 'Cauia'),
1351
+ (1323, 'RO ', '281', 'Cerdac'),
1352
+ (1324, 'RO ', '281', 'Cernu'),
1353
+ (1325, 'RO ', '281', 'Cetatuia'),
1354
+ (1326, 'RO ', '281', 'Chetreni'),
1355
+ (1327, 'RO ', '281', 'Chetris'),
1356
+ (1328, 'RO ', '281', 'Chilia Benei'),
1357
+ (1329, 'RO ', '281', 'Chiticeni'),
1358
+ (1330, 'RO ', '281', 'Ciobanus'),
1359
+ (1331, 'RO ', '281', 'Ciresoaia'),
1360
+ (1332, 'RO ', '281', 'Ciucani'),
1361
+ (1333, 'RO ', '281', 'Ciughes'),
1362
+ (1334, 'RO ', '281', 'Ciumasi'),
1363
+ (1335, 'RO ', '281', 'Ciuturesti'),
1364
+ (1336, 'RO ', '281', 'Cleja'),
1365
+ (1337, 'RO ', '281', 'Climesti'),
1366
+ (1338, 'RO ', '281', 'Colonesti'),
1367
+ (1339, 'RO ', '281', 'Coman'),
1368
+ (1340, 'RO ', '281', 'Comanesti'),
1369
+ (1341, 'RO ', '281', 'Contesti'),
1370
+ (1342, 'RO ', '281', 'Corbasca'),
1371
+ (1343, 'RO ', '281', 'Cornatel'),
1372
+ (1344, 'RO ', '281', 'Cornesti'),
1373
+ (1345, 'RO ', '281', 'Cornii de Jos'),
1374
+ (1346, 'RO ', '281', 'Cornii de Sus'),
1375
+ (1347, 'RO ', '281', 'Cosnea'),
1376
+ (1348, 'RO ', '281', 'Cotofanesti'),
1377
+ (1349, 'RO ', '281', 'Cotu Grosului'),
1378
+ (1350, 'RO ', '281', 'Cotumba'),
1379
+ (1351, 'RO ', '281', 'Crihan'),
1380
+ (1352, 'RO ', '281', 'Cuchinis'),
1381
+ (1353, 'RO ', '281', 'Cucova'),
1382
+ (1354, 'RO ', '281', 'Cucuieti (Dofteana)'),
1383
+ (1355, 'RO ', '281', 'Cucuieti (Solont)'),
1384
+ (1356, 'RO ', '281', 'Curita'),
1385
+ (1357, 'RO ', '281', 'Damienesti'),
1386
+ (1358, 'RO ', '281', 'Danaila'),
1387
+ (1359, 'RO ', '281', 'Darmaneasca'),
1388
+ (1360, 'RO ', '281', 'Darmanesti'),
1389
+ (1361, 'RO ', '281', 'Dealu Mare'),
1390
+ (1362, 'RO ', '281', 'Dealu Morii'),
1391
+ (1363, 'RO ', '281', 'Dealu Perjului'),
1392
+ (1364, 'RO ', '281', 'Deleni'),
1393
+ (1365, 'RO ', '281', 'Diaconesti'),
1394
+ (1366, 'RO ', '281', 'Dienet'),
1395
+ (1367, 'RO ', '281', 'Dofteana'),
1396
+ (1368, 'RO ', '281', 'Dorneni (Plopana)'),
1397
+ (1369, 'RO ', '281', 'Dorneni (Vultureni)'),
1398
+ (1370, 'RO ', '281', 'Dragesti (Damienesti)'),
1399
+ (1371, 'RO ', '281', 'Dragesti (Tatarasti)'),
1400
+ (1372, 'RO ', '281', 'Dragomir'),
1401
+ (1373, 'RO ', '281', 'Dragugesti'),
1402
+ (1374, 'RO ', '281', 'Dragusani'),
1403
+ (1375, 'RO ', '281', 'Dumbrava (Beresti-Bistrita)'),
1404
+ (1376, 'RO ', '281', 'Dumbrava (Gura Vaii)'),
1405
+ (1377, 'RO ', '281', 'Dumbrava (Rachitoasa)'),
1406
+ (1378, 'RO ', '281', 'Enachesti'),
1407
+ (1379, 'RO ', '281', 'Faget'),
1408
+ (1380, 'RO ', '281', 'Fagetu de Sus'),
1409
+ (1381, 'RO ', '281', 'Faghieni'),
1410
+ (1382, 'RO ', '281', 'Fantanele (Motoseni)'),
1411
+ (1383, 'RO ', '281', 'Faraoani'),
1412
+ (1384, 'RO ', '281', 'Farcasa'),
1413
+ (1385, 'RO ', '281', 'Ferestrau-Oituz'),
1414
+ (1386, 'RO ', '281', 'Fichitesti'),
1415
+ (1387, 'RO ', '281', 'Filipeni'),
1416
+ (1388, 'RO ', '281', 'Filipesti'),
1417
+ (1389, 'RO ', '281', 'Filipesti (Bogdanesti)'),
1418
+ (1390, 'RO ', '281', 'Floresti (Caiuti)'),
1419
+ (1391, 'RO ', '281', 'Floresti (Huruiesti)'),
1420
+ (1392, 'RO ', '281', 'Frumoasa'),
1421
+ (1393, 'RO ', '281', 'Frumuselu'),
1422
+ (1394, 'RO ', '281', 'Fruntesti'),
1423
+ (1395, 'RO ', '281', 'Fulgeris'),
1424
+ (1396, 'RO ', '281', 'Fundeni'),
1425
+ (1397, 'RO ', '281', 'Fundoaia'),
1426
+ (1398, 'RO ', '281', 'Fundu Racaciuni'),
1427
+ (1399, 'RO ', '281', 'Fundu Tutovei'),
1428
+ (1400, 'RO ', '281', 'Fundu Vaii'),
1429
+ (1401, 'RO ', '281', 'Furnicari'),
1430
+ (1402, 'RO ', '281', 'Gaiceana'),
1431
+ (1403, 'RO ', '281', 'Galbeni (Filipesti)'),
1432
+ (1404, 'RO ', '281', 'Galbeni (Nicolae Balcescu)'),
1433
+ (1405, 'RO ', '281', 'Galeri'),
1434
+ (1406, 'RO ', '281', 'Garleni'),
1435
+ (1407, 'RO ', '281', 'Garlenii de Sus'),
1436
+ (1408, 'RO ', '281', 'Gasteni'),
1437
+ (1409, 'RO ', '281', 'Gazarie'),
1438
+ (1410, 'RO ', '281', 'Gheorghe Doja'),
1439
+ (1411, 'RO ', '281', 'Gherdana'),
1440
+ (1412, 'RO ', '281', 'Ghilavesti'),
1441
+ (1413, 'RO ', '281', 'Ghimes'),
1442
+ (1414, 'RO ', '281', 'Ghimes-Faget'),
1443
+ (1415, 'RO ', '281', 'Gioseni'),
1444
+ (1416, 'RO ', '281', 'Giurgeni'),
1445
+ (1417, 'RO ', '281', 'Glavanesti'),
1446
+ (1418, 'RO ', '281', 'Glodisoarele'),
1447
+ (1419, 'RO ', '281', 'Godinestii de Jos'),
1448
+ (1420, 'RO ', '281', 'Godinestii de Sus'),
1449
+ (1421, 'RO ', '281', 'Goioasa'),
1450
+ (1422, 'RO ', '281', 'Grigoreni'),
1451
+ (1423, 'RO ', '281', 'Gura Craiesti'),
1452
+ (1424, 'RO ', '281', 'Gura Vaii'),
1453
+ (1425, 'RO ', '281', 'Gutinas'),
1454
+ (1426, 'RO ', '281', 'Haghiac (Dofteana)'),
1455
+ (1427, 'RO ', '281', 'Haineala'),
1456
+ (1428, 'RO ', '281', 'Halmacioaia'),
1457
+ (1429, 'RO ', '281', 'Hanganesti'),
1458
+ (1430, 'RO ', '281', 'Hanta'),
1459
+ (1431, 'RO ', '281', 'Harja'),
1460
+ (1432, 'RO ', '281', 'Harlesti'),
1461
+ (1433, 'RO ', '281', 'Helegiu'),
1462
+ (1434, 'RO ', '281', 'Heltiu'),
1463
+ (1435, 'RO ', '281', 'Hemeius'),
1464
+ (1436, 'RO ', '281', 'Hemieni'),
1465
+ (1437, 'RO ', '281', 'Holt'),
1466
+ (1438, 'RO ', '281', 'Horgesti'),
1467
+ (1439, 'RO ', '281', 'Huruiesti'),
1468
+ (1440, 'RO ', '281', 'Iliesi'),
1469
+ (1441, 'RO ', '281', 'Itesti'),
1470
+ (1442, 'RO ', '281', 'Izvoru Berheciului'),
1471
+ (1443, 'RO ', '281', 'Lapos'),
1472
+ (1444, 'RO ', '281', 'Larga'),
1473
+ (1445, 'RO ', '281', 'Larguta'),
1474
+ (1446, 'RO ', '281', 'Leontinesti'),
1475
+ (1447, 'RO ', '281', 'Lespezi'),
1476
+ (1448, 'RO ', '281', 'Letea Veche'),
1477
+ (1449, 'RO ', '281', 'Lilieci'),
1478
+ (1450, 'RO ', '281', 'Lipova'),
1479
+ (1451, 'RO ', '281', 'Livezi'),
1480
+ (1452, 'RO ', '281', 'Ludasi'),
1481
+ (1453, 'RO ', '281', 'Luizi-Calugara'),
1482
+ (1454, 'RO ', '281', 'Lunca Asau'),
1483
+ (1455, 'RO ', '281', 'Lunca Dochiei'),
1484
+ (1456, 'RO ', '281', 'Luncani'),
1485
+ (1457, 'RO ', '281', 'Lupesti'),
1486
+ (1458, 'RO ', '281', 'Magiresti'),
1487
+ (1459, 'RO ', '281', 'Magura'),
1488
+ (1460, 'RO ', '281', 'Manastirea Casin'),
1489
+ (1461, 'RO ', '281', 'Marginea (Buhusi)'),
1490
+ (1462, 'RO ', '281', 'Marginea (Oituz)'),
1491
+ (1463, 'RO ', '281', 'Margineni'),
1492
+ (1464, 'RO ', '281', 'Marvila'),
1493
+ (1465, 'RO ', '281', 'Medeleni'),
1494
+ (1466, 'RO ', '281', 'Moinesti'),
1495
+ (1467, 'RO ', '281', 'Motoseni'),
1496
+ (1468, 'RO ', '281', 'Muncelu'),
1497
+ (1469, 'RO ', '281', 'Nanesti'),
1498
+ (1470, 'RO ', '281', 'Negoiesti'),
1499
+ (1471, 'RO ', '281', 'Negri'),
1500
+ (1472, 'RO ', '281', 'Negulesti'),
1501
+ (1473, 'RO ', '281', 'Nicolae Balcescu'),
1502
+ (1474, 'RO ', '281', 'Nicoresti'),
1503
+ (1475, 'RO ', '281', 'Ocheni'),
1504
+ (1476, 'RO ', '281', 'Odobesti'),
1505
+ (1477, 'RO ', '281', 'Oituz'),
1506
+ (1478, 'RO ', '281', 'Oncesti'),
1507
+ (1479, 'RO ', '281', 'Onesti'),
1508
+ (1480, 'RO ', '281', 'Oniscani'),
1509
+ (1481, 'RO ', '281', 'Oprisesti'),
1510
+ (1482, 'RO ', '281', 'Orasa'),
1511
+ (1483, 'RO ', '281', 'Orbeni'),
1512
+ (1484, 'RO ', '281', 'Otelesti'),
1513
+ (1485, 'RO ', '281', 'Padureni (Beresti-Bistrita)'),
1514
+ (1486, 'RO ', '281', 'Padureni (Margineni)'),
1515
+ (1487, 'RO ', '281', 'Palanca'),
1516
+ (1488, 'RO ', '281', 'Paltinata'),
1517
+ (1489, 'RO ', '281', 'Paltinis'),
1518
+ (1490, 'RO ', '281', 'Pancesti'),
1519
+ (1491, 'RO ', '281', 'Pancesti(Adjud)'),
1520
+ (1492, 'RO ', '281', 'Parau Boghii'),
1521
+ (1493, 'RO ', '281', 'Parava'),
1522
+ (1494, 'RO ', '281', 'Pargaresti'),
1523
+ (1495, 'RO ', '281', 'Parincea'),
1524
+ (1496, 'RO ', '281', 'Parjol'),
1525
+ (1497, 'RO ', '281', 'Parvulesti'),
1526
+ (1498, 'RO ', '281', 'Perchiu'),
1527
+ (1499, 'RO ', '281', 'Petresti'),
1528
+ (1500, 'RO ', '281', 'Petricica'),
1529
+ (1501, 'RO ', '281', 'Plopana'),
1530
+ (1502, 'RO ', '281', 'Plopu (Darmanesti)'),
1531
+ (1503, 'RO ', '281', 'Plopu (Podu Turcului)'),
1532
+ (1504, 'RO ', '281', 'Podis'),
1533
+ (1505, 'RO ', '281', 'Podu Turcului'),
1534
+ (1506, 'RO ', '281', 'Poduri'),
1535
+ (1507, 'RO ', '281', 'Poglet'),
1536
+ (1508, 'RO ', '281', 'Poiana (Livezi)'),
1537
+ (1509, 'RO ', '281', 'Poiana (Margineni)'),
1538
+ (1510, 'RO ', '281', 'Poiana (Motoseni)'),
1539
+ (1511, 'RO ', '281', 'Poiana (Negri)'),
1540
+ (1512, 'RO ', '281', 'Poiana Negustorului'),
1541
+ (1513, 'RO ', '281', 'Poiana Sarata'),
1542
+ (1514, 'RO ', '281', 'Poieni (Rosiori)'),
1543
+ (1515, 'RO ', '281', 'Poieni (Targu Ocna)');
1544
+ INSERT INTO `directory_country_region_city` (`city_id`, `country_id`, `region_id`, `cityname`) VALUES
1545
+ (1516, 'RO ', '281', 'Popeni'),
1546
+ (1517, 'RO ', '281', 'Popoiu'),
1547
+ (1518, 'RO ', '281', 'Pradais'),
1548
+ (1519, 'RO ', '281', 'Praja'),
1549
+ (1520, 'RO ', '281', 'Prajesti'),
1550
+ (1521, 'RO ', '281', 'Prajesti (Magiresti)'),
1551
+ (1522, 'RO ', '281', 'Prajoaia'),
1552
+ (1523, 'RO ', '281', 'Pralea'),
1553
+ (1524, 'RO ', '281', 'Preluci'),
1554
+ (1525, 'RO ', '281', 'Prisaca'),
1555
+ (1526, 'RO ', '281', 'Prohozesti'),
1556
+ (1527, 'RO ', '281', 'Pustiana'),
1557
+ (1528, 'RO ', '281', 'Racaciuni'),
1558
+ (1529, 'RO ', '281', 'Racatau de Jos'),
1559
+ (1530, 'RO ', '281', 'Racatau-Razesi'),
1560
+ (1531, 'RO ', '281', 'Racauti'),
1561
+ (1532, 'RO ', '281', 'Rachitis'),
1562
+ (1533, 'RO ', '281', 'Rachitisu'),
1563
+ (1534, 'RO ', '281', 'Rachitoasa'),
1564
+ (1535, 'RO ', '281', 'Racova'),
1565
+ (1536, 'RO ', '281', 'Racusana'),
1566
+ (1537, 'RO ', '281', 'Radeana'),
1567
+ (1538, 'RO ', '281', 'Radoaia'),
1568
+ (1539, 'RO ', '281', 'Radomiresti'),
1569
+ (1540, 'RO ', '281', 'Razesu'),
1570
+ (1541, 'RO ', '281', 'Recea'),
1571
+ (1542, 'RO ', '281', 'Rogoaza'),
1572
+ (1543, 'RO ', '281', 'Romanesti'),
1573
+ (1544, 'RO ', '281', 'Rosiori'),
1574
+ (1545, 'RO ', '281', 'Runcu'),
1575
+ (1546, 'RO ', '281', 'Rusi-Ciutea'),
1576
+ (1547, 'RO ', '281', 'Salatruc'),
1577
+ (1548, 'RO ', '281', 'Sanduleni'),
1578
+ (1549, 'RO ', '281', 'Sarata'),
1579
+ (1550, 'RO ', '281', 'Sarata (Solont)'),
1580
+ (1551, 'RO ', '281', 'Sascut'),
1581
+ (1552, 'RO ', '281', 'Sascut-Sat'),
1582
+ (1553, 'RO ', '281', 'Satu Nou (Pargaresti)'),
1583
+ (1554, 'RO ', '281', 'Satu Nou (Parincea)'),
1584
+ (1555, 'RO ', '281', 'Satu Nou (Urechesti)'),
1585
+ (1556, 'RO ', '281', 'Saucesti'),
1586
+ (1557, 'RO ', '281', 'Scariga'),
1587
+ (1558, 'RO ', '281', 'Scarisoara'),
1588
+ (1559, 'RO ', '281', 'Schineni (Sascut)'),
1589
+ (1560, 'RO ', '281', 'Schineni (Saucesti)'),
1590
+ (1561, 'RO ', '281', 'Schitu Frumoasa'),
1591
+ (1562, 'RO ', '281', 'Scorteni'),
1592
+ (1563, 'RO ', '281', 'Scurta'),
1593
+ (1564, 'RO ', '281', 'Scutaru'),
1594
+ (1565, 'RO ', '281', 'Seaca'),
1595
+ (1566, 'RO ', '281', 'Secuieni'),
1596
+ (1567, 'RO ', '281', 'Sendresti'),
1597
+ (1568, 'RO ', '281', 'Serbesti'),
1598
+ (1569, 'RO ', '281', 'Sesuri'),
1599
+ (1570, 'RO ', '281', 'Siretu (Saucesti)'),
1600
+ (1571, 'RO ', '281', 'Slanic-Moldova'),
1601
+ (1572, 'RO ', '281', 'Slobozia (Onesti)'),
1602
+ (1573, 'RO ', '281', 'Slobozia (Urechesti)'),
1603
+ (1574, 'RO ', '281', 'Slobozia Noua'),
1604
+ (1575, 'RO ', '281', 'Soci'),
1605
+ (1576, 'RO ', '281', 'Sohodol'),
1606
+ (1577, 'RO ', '281', 'Solont'),
1607
+ (1578, 'RO ', '281', 'Somusca'),
1608
+ (1579, 'RO ', '281', 'Spria'),
1609
+ (1580, 'RO ', '281', 'Stanesti'),
1610
+ (1581, 'RO ', '281', 'Stanisesti'),
1611
+ (1582, 'RO ', '281', 'Stefan Cel Mare'),
1612
+ (1583, 'RO ', '281', 'Stefan Voda'),
1613
+ (1584, 'RO ', '281', 'Stejaru'),
1614
+ (1585, 'RO ', '281', 'Straja'),
1615
+ (1586, 'RO ', '281', 'Strugari'),
1616
+ (1587, 'RO ', '281', 'Stufu'),
1617
+ (1588, 'RO ', '281', 'Sulta'),
1618
+ (1589, 'RO ', '281', 'Surina'),
1619
+ (1590, 'RO ', '281', 'Tamasi'),
1620
+ (1591, 'RO ', '281', 'Tamasoaia'),
1621
+ (1592, 'RO ', '281', 'Tarata'),
1622
+ (1593, 'RO ', '281', 'Tardenii Mari'),
1623
+ (1594, 'RO ', '281', 'Targu Ocna'),
1624
+ (1595, 'RO ', '281', 'Targu Trotus'),
1625
+ (1596, 'RO ', '281', 'Tarhausi'),
1626
+ (1597, 'RO ', '281', 'Tarnita'),
1627
+ (1598, 'RO ', '281', 'Tatarasti'),
1628
+ (1599, 'RO ', '281', 'Taula'),
1629
+ (1600, 'RO ', '281', 'Temelia'),
1630
+ (1601, 'RO ', '281', 'Tescani'),
1631
+ (1602, 'RO ', '281', 'Tisa-Silvestri'),
1632
+ (1603, 'RO ', '281', 'Tochilea'),
1633
+ (1604, 'RO ', '281', 'Tomozia'),
1634
+ (1605, 'RO ', '281', 'Traian'),
1635
+ (1606, 'RO ', '281', 'Trebes'),
1636
+ (1607, 'RO ', '281', 'Turluianu'),
1637
+ (1608, 'RO ', '281', 'Tuta'),
1638
+ (1609, 'RO ', '281', 'Ungureni'),
1639
+ (1610, 'RO ', '281', 'Ungureni (Tatarasti)'),
1640
+ (1611, 'RO ', '281', 'Urechesti'),
1641
+ (1612, 'RO ', '281', 'Valcele (Corbasca)'),
1642
+ (1613, 'RO ', '281', 'Valcele (Targu Ocna)'),
1643
+ (1614, 'RO ', '281', 'Valea Arinilor'),
1644
+ (1615, 'RO ', '281', 'Valea Botului'),
1645
+ (1616, 'RO ', '281', 'Valea Budului'),
1646
+ (1617, 'RO ', '281', 'Valea Caselor'),
1647
+ (1618, 'RO ', '281', 'Valea Hogei '),
1648
+ (1619, 'RO ', '281', 'Valea lui Ion'),
1649
+ (1620, 'RO ', '281', 'Valea Mare (Colonesti)'),
1650
+ (1621, 'RO ', '281', 'Valea Mare (Rosiori)'),
1651
+ (1622, 'RO ', '281', 'Valea Mica (Cleja)'),
1652
+ (1623, 'RO ', '281', 'Valea Mosneagului'),
1653
+ (1624, 'RO ', '281', 'Valea Nacului'),
1654
+ (1625, 'RO ', '281', 'Valea Salciei'),
1655
+ (1626, 'RO ', '281', 'Valea Seaca'),
1656
+ (1627, 'RO ', '281', 'Valea Seaca (Nicolae Balcescu)'),
1657
+ (1628, 'RO ', '281', 'Valeni (Parincea)'),
1658
+ (1629, 'RO ', '281', 'Valeni (Stanisesti)'),
1659
+ (1630, 'RO ', '281', 'Vermesti'),
1660
+ (1631, 'RO ', '281', 'Versesti'),
1661
+ (1632, 'RO ', '281', 'Viforeni'),
1662
+ (1633, 'RO ', '281', 'Viisoara (stefan cel Mare)'),
1663
+ (1634, 'RO ', '281', 'Viisoara (Targu Trotus)'),
1664
+ (1635, 'RO ', '281', 'Vladnic'),
1665
+ (1636, 'RO ', '281', 'Vranceni'),
1666
+ (1637, 'RO ', '281', 'Vultureni'),
1667
+ (1638, 'RO ', '281', 'Zapodia (Traian)'),
1668
+ (1639, 'RO ', '281', 'Zemes'),
1669
+ (1640, 'RO ', '281', 'Zlatari'),
1670
+ (1641, 'RO ', '282', 'Abram'),
1671
+ (1642, 'RO ', '282', 'Abramut'),
1672
+ (1643, 'RO ', '282', 'Adoni'),
1673
+ (1644, 'RO ', '282', 'Albesti'),
1674
+ (1645, 'RO ', '282', 'Albis'),
1675
+ (1646, 'RO ', '282', 'Alesd'),
1676
+ (1647, 'RO ', '282', 'Almasu Mare'),
1677
+ (1648, 'RO ', '282', 'Almasu Mic (Balc)'),
1678
+ (1649, 'RO ', '282', 'Almasu Mic (Sarbi)'),
1679
+ (1650, 'RO ', '282', 'Alparea'),
1680
+ (1651, 'RO ', '282', 'Ant'),
1681
+ (1652, 'RO ', '282', 'Apateu'),
1682
+ (1653, 'RO ', '282', 'Arpasel'),
1683
+ (1654, 'RO ', '282', 'Astileu'),
1684
+ (1655, 'RO ', '282', 'Ateas'),
1685
+ (1656, 'RO ', '282', 'Auseu'),
1686
+ (1657, 'RO ', '282', 'Avram Iancu'),
1687
+ (1658, 'RO ', '282', 'Baile 1 Mai'),
1688
+ (1659, 'RO ', '282', 'Baile Felix'),
1689
+ (1660, 'RO ', '282', 'Baita'),
1690
+ (1661, 'RO ', '282', 'Baita-Plai'),
1691
+ (1662, 'RO ', '282', 'Balaia'),
1692
+ (1663, 'RO ', '282', 'Balc'),
1693
+ (1664, 'RO ', '282', 'Baleni'),
1694
+ (1665, 'RO ', '282', 'Balnaca'),
1695
+ (1666, 'RO ', '282', 'Balnaca-Grosi'),
1696
+ (1667, 'RO ', '282', 'Baraj Lesu'),
1697
+ (1668, 'RO ', '282', 'Batar'),
1698
+ (1669, 'RO ', '282', 'Beius'),
1699
+ (1670, 'RO ', '282', 'Beiusele'),
1700
+ (1671, 'RO ', '282', 'Belejeni'),
1701
+ (1672, 'RO ', '282', 'Belfir'),
1702
+ (1673, 'RO ', '282', 'BERECHIU'),
1703
+ (1674, 'RO ', '282', 'Betfia'),
1704
+ (1675, 'RO ', '282', 'Beznea'),
1705
+ (1676, 'RO ', '282', 'Bicacel'),
1706
+ (1677, 'RO ', '282', 'BICACI'),
1707
+ (1678, 'RO ', '282', 'Biharia'),
1708
+ (1679, 'RO ', '282', 'Birtin'),
1709
+ (1680, 'RO ', '282', 'Bistra'),
1710
+ (1681, 'RO ', '282', 'Bogei'),
1711
+ (1682, 'RO ', '282', 'Boianu Mare'),
1712
+ (1683, 'RO ', '282', 'Boiu'),
1713
+ (1684, 'RO ', '282', 'Borod'),
1714
+ (1685, 'RO ', '282', 'Borozel'),
1715
+ (1686, 'RO ', '282', 'Bors'),
1716
+ (1687, 'RO ', '282', 'Borsa'),
1717
+ (1688, 'RO ', '282', 'Borumlaca'),
1718
+ (1689, 'RO ', '282', 'Borz'),
1719
+ (1690, 'RO ', '282', 'Botean'),
1720
+ (1691, 'RO ', '282', 'Bradet'),
1721
+ (1692, 'RO ', '282', 'Bratca'),
1722
+ (1693, 'RO ', '282', 'Bratesti'),
1723
+ (1694, 'RO ', '282', 'Briheni'),
1724
+ (1695, 'RO ', '282', 'Brusturi'),
1725
+ (1696, 'RO ', '282', 'Brusturi (Finis)'),
1726
+ (1697, 'RO ', '282', 'Bucium'),
1727
+ (1698, 'RO ', '282', 'Bucuroaia'),
1728
+ (1699, 'RO ', '282', 'Budoi'),
1729
+ (1700, 'RO ', '282', 'Budureasa'),
1730
+ (1701, 'RO ', '282', 'Buduslau'),
1731
+ (1702, 'RO ', '282', 'Bulz'),
1732
+ (1703, 'RO ', '282', 'Buntesti'),
1733
+ (1704, 'RO ', '282', 'Burda'),
1734
+ (1705, 'RO ', '282', 'Burzuc'),
1735
+ (1706, 'RO ', '282', 'Butani'),
1736
+ (1707, 'RO ', '282', 'Cabesti'),
1737
+ (1708, 'RO ', '282', 'Cacuciu Nou'),
1738
+ (1709, 'RO ', '282', 'Cacuciu Vechi'),
1739
+ (1710, 'RO ', '282', 'Cadea'),
1740
+ (1711, 'RO ', '282', 'Calacea'),
1741
+ (1712, 'RO ', '282', 'Calatani'),
1742
+ (1713, 'RO ', '282', 'Calatea'),
1743
+ (1714, 'RO ', '282', 'Calea Mare'),
1744
+ (1715, 'RO ', '282', 'Calugari'),
1745
+ (1716, 'RO ', '282', 'Camp'),
1746
+ (1717, 'RO ', '282', 'Campani'),
1747
+ (1718, 'RO ', '282', 'Campani de Pomezeu'),
1748
+ (1719, 'RO ', '282', 'Camp-Moti'),
1749
+ (1720, 'RO ', '282', 'Capalna'),
1750
+ (1721, 'RO ', '282', 'Carandeni'),
1751
+ (1722, 'RO ', '282', 'Caranzel'),
1752
+ (1723, 'RO ', '282', 'Carasau'),
1753
+ (1724, 'RO ', '282', 'Carpinet'),
1754
+ (1725, 'RO ', '282', 'Cauaceu'),
1755
+ (1726, 'RO ', '282', 'Cauasd'),
1756
+ (1727, 'RO ', '282', 'Cefa'),
1757
+ (1728, 'RO ', '282', 'Ceica'),
1758
+ (1729, 'RO ', '282', 'Ceisoara'),
1759
+ (1730, 'RO ', '282', 'Cenalos'),
1760
+ (1731, 'RO ', '282', 'Cetariu'),
1761
+ (1732, 'RO ', '282', 'Cetea'),
1762
+ (1733, 'RO ', '282', 'Cherechiu'),
1763
+ (1734, 'RO ', '282', 'Cheresig'),
1764
+ (1735, 'RO ', '282', 'Cheriu'),
1765
+ (1736, 'RO ', '282', 'Chesa'),
1766
+ (1737, 'RO ', '282', 'Chesereu'),
1767
+ (1738, 'RO ', '282', 'Chet'),
1768
+ (1739, 'RO ', '282', 'Chijic'),
1769
+ (1740, 'RO ', '282', 'CHIOAG'),
1770
+ (1741, 'RO ', '282', 'Chiraleu'),
1771
+ (1742, 'RO ', '282', 'Chiribis'),
1772
+ (1743, 'RO ', '282', 'Chiscau'),
1773
+ (1744, 'RO ', '282', 'Chisirid'),
1774
+ (1745, 'RO ', '282', 'Chislaz'),
1775
+ (1746, 'RO ', '282', 'Chistag'),
1776
+ (1747, 'RO ', '282', 'Cihei'),
1777
+ (1748, 'RO ', '282', 'Ciocaia'),
1778
+ (1749, 'RO ', '282', 'Ciuhoi'),
1779
+ (1750, 'RO ', '282', 'Ciulesti'),
1780
+ (1751, 'RO ', '282', 'Ciumeghiu'),
1781
+ (1752, 'RO ', '282', 'Ciutelec'),
1782
+ (1753, 'RO ', '282', 'Cociuba Mare'),
1783
+ (1754, 'RO ', '282', 'Cociuba Mica'),
1784
+ (1755, 'RO ', '282', 'Codrisoru'),
1785
+ (1756, 'RO ', '282', 'Codru'),
1786
+ (1757, 'RO ', '282', 'Cohani'),
1787
+ (1758, 'RO ', '282', 'Colesti'),
1788
+ (1759, 'RO ', '282', 'Copacel'),
1789
+ (1760, 'RO ', '282', 'Copaceni'),
1790
+ (1761, 'RO ', '282', 'Corbesti'),
1791
+ (1762, 'RO ', '282', 'Corboaia'),
1792
+ (1763, 'RO ', '282', 'Cordau'),
1793
+ (1764, 'RO ', '282', 'Cornisesti'),
1794
+ (1765, 'RO ', '282', 'Cornitel'),
1795
+ (1766, 'RO ', '282', 'Cosdeni'),
1796
+ (1767, 'RO ', '282', 'Cotiglet'),
1797
+ (1768, 'RO ', '282', 'Crancesti'),
1798
+ (1769, 'RO ', '282', 'Crestur'),
1799
+ (1770, 'RO ', '282', 'Cresuia'),
1800
+ (1771, 'RO ', '282', 'Cristioru de jos'),
1801
+ (1772, 'RO ', '282', 'Cristioru de sus'),
1802
+ (1773, 'RO ', '282', 'Cubulcut'),
1803
+ (1774, 'RO ', '282', 'Cucuceni'),
1804
+ (1775, 'RO ', '282', 'Cuiesd'),
1805
+ (1776, 'RO ', '282', 'Curatele'),
1806
+ (1777, 'RO ', '282', 'Curtuiseni'),
1807
+ (1778, 'RO ', '282', 'Cusuius'),
1808
+ (1779, 'RO ', '282', 'Cuzap'),
1809
+ (1780, 'RO ', '282', 'Damis'),
1810
+ (1781, 'RO ', '282', 'Delani'),
1811
+ (1782, 'RO ', '282', 'Derna'),
1812
+ (1783, 'RO ', '282', 'Dernisoara'),
1813
+ (1784, 'RO ', '282', 'Dicanesti'),
1814
+ (1785, 'RO ', '282', 'Dijir'),
1815
+ (1786, 'RO ', '282', 'Diosig'),
1816
+ (1787, 'RO ', '282', 'Dobresti'),
1817
+ (1788, 'RO ', '282', 'Dobricionesti'),
1818
+ (1789, 'RO ', '282', 'Dolea'),
1819
+ (1790, 'RO ', '282', 'Draganesti'),
1820
+ (1791, 'RO ', '282', 'Dragesti'),
1821
+ (1792, 'RO ', '282', 'Dragoteni'),
1822
+ (1793, 'RO ', '282', 'Dumbrava'),
1823
+ (1794, 'RO ', '282', 'Dumbravani'),
1824
+ (1795, 'RO ', '282', 'Dumbravita'),
1825
+ (1796, 'RO ', '282', 'Dumbravita de Codru'),
1826
+ (1797, 'RO ', '282', 'Dusesti'),
1827
+ (1798, 'RO ', '282', 'Fanate'),
1828
+ (1799, 'RO ', '282', 'Fancica'),
1829
+ (1800, 'RO ', '282', 'Fasca'),
1830
+ (1801, 'RO ', '282', 'Fegernic'),
1831
+ (1802, 'RO ', '282', 'Fegernicu Nou'),
1832
+ (1803, 'RO ', '282', 'Felcheriu'),
1833
+ (1804, 'RO ', '282', 'Feneris'),
1834
+ (1805, 'RO ', '282', 'Ferice'),
1835
+ (1806, 'RO ', '282', 'Finis'),
1836
+ (1807, 'RO ', '282', 'Fizis'),
1837
+ (1808, 'RO ', '282', 'Foglas'),
1838
+ (1809, 'RO ', '282', 'Fonau'),
1839
+ (1810, 'RO ', '282', 'Forau'),
1840
+ (1811, 'RO ', '282', 'Forosig'),
1841
+ (1812, 'RO ', '282', 'Fughiu'),
1842
+ (1813, 'RO ', '282', 'Galaseni'),
1843
+ (1814, 'RO ', '282', 'Galospetreu'),
1844
+ (1815, 'RO ', '282', 'Gepis'),
1845
+ (1816, 'RO ', '282', 'Gepiu'),
1846
+ (1817, 'RO ', '282', 'Gheghie '),
1847
+ (1818, 'RO ', '282', 'Ghenetea'),
1848
+ (1819, 'RO ', '282', 'Ghida'),
1849
+ (1820, 'RO ', '282', 'Ghighiseni'),
1850
+ (1821, 'RO ', '282', 'Ghiorac'),
1851
+ (1822, 'RO ', '282', 'Ginta'),
1852
+ (1823, 'RO ', '282', 'Girisu de Cris'),
1853
+ (1824, 'RO ', '282', 'Girisu Negru'),
1854
+ (1825, 'RO ', '282', 'Giulesti'),
1855
+ (1826, 'RO ', '282', 'Goila'),
1856
+ (1827, 'RO ', '282', 'Gradinari'),
1857
+ (1828, 'RO ', '282', 'Grosi '),
1858
+ (1829, 'RO ', '282', 'Gruilung'),
1859
+ (1830, 'RO ', '282', 'Gurani'),
1860
+ (1831, 'RO ', '282', 'Gurbediu'),
1861
+ (1832, 'RO ', '282', 'Gurbesti (Cabesti)'),
1862
+ (1833, 'RO ', '282', 'Gurbesti (Spinus)'),
1863
+ (1834, 'RO ', '282', 'Haieu'),
1864
+ (1835, 'RO ', '282', 'Harsesti'),
1865
+ (1836, 'RO ', '282', 'Haucesti'),
1866
+ (1837, 'RO ', '282', 'Hidis'),
1867
+ (1838, 'RO ', '282', 'Hidisel'),
1868
+ (1839, 'RO ', '282', 'Hidiselu de Jos'),
1869
+ (1840, 'RO ', '282', 'Hidiselu de Sus'),
1870
+ (1841, 'RO ', '282', 'HINCHIRIS'),
1871
+ (1842, 'RO ', '282', 'Hodis'),
1872
+ (1843, 'RO ', '282', 'Hodisel'),
1873
+ (1844, 'RO ', '282', 'Hodos'),
1874
+ (1845, 'RO ', '282', 'Holod'),
1875
+ (1846, 'RO ', '282', 'Homorog'),
1876
+ (1847, 'RO ', '282', 'Hotar'),
1877
+ (1848, 'RO ', '282', 'Hotarel'),
1878
+ (1849, 'RO ', '282', 'Husasau de Cris'),
1879
+ (1850, 'RO ', '282', 'Husasau de Tinca'),
1880
+ (1851, 'RO ', '282', 'Huta'),
1881
+ (1852, 'RO ', '282', 'Huta Voivozi'),
1882
+ (1853, 'RO ', '282', 'Ianca'),
1883
+ (1854, 'RO ', '282', 'Ianosda'),
1884
+ (1855, 'RO ', '282', 'Inand'),
1885
+ (1856, 'RO ', '282', 'Incesti'),
1886
+ (1857, 'RO ', '282', 'Ineu'),
1887
+ (1858, 'RO ', '282', 'Ioanis '),
1888
+ (1859, 'RO ', '282', 'Iteu'),
1889
+ (1860, 'RO ', '282', 'Iteu Nou'),
1890
+ (1861, 'RO ', '282', 'Izbuc'),
1891
+ (1862, 'RO ', '282', 'Izvoarele'),
1892
+ (1863, 'RO ', '282', 'Josani (Cabesti)'),
1893
+ (1864, 'RO ', '282', 'Josani (Magesti)'),
1894
+ (1865, 'RO ', '282', 'Lacu Sarat'),
1895
+ (1866, 'RO ', '282', 'Lazareni'),
1896
+ (1867, 'RO ', '282', 'Lazuri'),
1897
+ (1868, 'RO ', '282', 'Lazuri de Beius'),
1898
+ (1869, 'RO ', '282', 'Leheceni'),
1899
+ (1870, 'RO ', '282', 'Lelesti'),
1900
+ (1871, 'RO ', '282', 'Les'),
1901
+ (1872, 'RO ', '282', 'Livada Beiusului'),
1902
+ (1873, 'RO ', '282', 'Livada de Bihor'),
1903
+ (1874, 'RO ', '282', 'Loranta'),
1904
+ (1875, 'RO ', '282', 'Lorau'),
1905
+ (1876, 'RO ', '282', 'Lugasu de Jos'),
1906
+ (1877, 'RO ', '282', 'Lugasu de Sus'),
1907
+ (1878, 'RO ', '282', 'Lunca'),
1908
+ (1879, 'RO ', '282', 'Luncasprie'),
1909
+ (1880, 'RO ', '282', 'Luncsoara'),
1910
+ (1881, 'RO ', '282', 'Lupoaia'),
1911
+ (1882, 'RO ', '282', 'Madaras'),
1912
+ (1883, 'RO ', '282', 'Magesti'),
1913
+ (1884, 'RO ', '282', 'Magura'),
1914
+ (1885, 'RO ', '282', 'Marghita'),
1915
+ (1886, 'RO ', '282', 'Margine'),
1916
+ (1887, 'RO ', '282', 'Martihaz'),
1917
+ (1888, 'RO ', '282', 'Meziad'),
1918
+ (1889, 'RO ', '282', 'Mierag'),
1919
+ (1890, 'RO ', '282', 'Mierlau'),
1920
+ (1891, 'RO ', '282', 'Miersig'),
1921
+ (1892, 'RO ', '282', 'Mihai Bravu'),
1922
+ (1893, 'RO ', '282', 'Miheleu'),
1923
+ (1894, 'RO ', '282', 'Misca'),
1924
+ (1895, 'RO ', '282', 'Mizies'),
1925
+ (1896, 'RO ', '282', 'Motesti'),
1926
+ (1897, 'RO ', '282', 'Munteni'),
1927
+ (1898, 'RO ', '282', 'Nadar'),
1928
+ (1899, 'RO ', '282', 'Nimaiesti'),
1929
+ (1900, 'RO ', '282', 'Niuved'),
1930
+ (1901, 'RO ', '282', 'Nojorid'),
1931
+ (1902, 'RO ', '282', 'Nucet'),
1932
+ (1903, 'RO ', '282', 'Ogesti'),
1933
+ (1904, 'RO ', '282', 'Olcea'),
1934
+ (1905, 'RO ', '282', 'Olosig'),
1935
+ (1906, 'RO ', '282', 'Oradea'),
1936
+ (1907, 'RO ', '282', 'Ortiteag'),
1937
+ (1908, 'RO ', '282', 'Orvisele'),
1938
+ (1909, 'RO ', '282', 'Osand'),
1939
+ (1910, 'RO ', '282', 'Osorhei'),
1940
+ (1911, 'RO ', '282', 'Otomani'),
1941
+ (1912, 'RO ', '282', 'Padurea Neagra'),
1942
+ (1913, 'RO ', '282', 'Padureni'),
1943
+ (1914, 'RO ', '282', 'Pagaia'),
1944
+ (1915, 'RO ', '282', 'Paleu'),
1945
+ (1916, 'RO ', '282', 'Palota'),
1946
+ (1917, 'RO ', '282', 'Pantasesti'),
1947
+ (1918, 'RO ', '282', 'Parhida'),
1948
+ (1919, 'RO ', '282', 'Paulesti'),
1949
+ (1920, 'RO ', '282', 'Pausa'),
1950
+ (1921, 'RO ', '282', 'Pestere'),
1951
+ (1922, 'RO ', '282', 'Pestis'),
1952
+ (1923, 'RO ', '282', 'Petid'),
1953
+ (1924, 'RO ', '282', 'Petrani'),
1954
+ (1925, 'RO ', '282', 'Petreasa'),
1955
+ (1926, 'RO ', '282', 'Petreu'),
1956
+ (1927, 'RO ', '282', 'Petrileni'),
1957
+ (1928, 'RO ', '282', 'Picleu'),
1958
+ (1929, 'RO ', '282', 'Pietroasa'),
1959
+ (1930, 'RO ', '282', 'Pocioveliste'),
1960
+ (1931, 'RO ', '282', 'Poclusa de Barcau'),
1961
+ (1932, 'RO ', '282', 'Poclusa de Beius'),
1962
+ (1933, 'RO ', '282', 'Pocola'),
1963
+ (1934, 'RO ', '282', 'Poiana (Cristioru de Jos)'),
1964
+ (1935, 'RO ', '282', 'Poiana (Tauteu)'),
1965
+ (1936, 'RO ', '282', 'Poiana Tasad'),
1966
+ (1937, 'RO ', '282', 'Poienii de jos'),
1967
+ (1938, 'RO ', '282', 'Poienii de sus'),
1968
+ (1939, 'RO ', '282', 'Poietari'),
1969
+ (1940, 'RO ', '282', 'Pomezeu'),
1970
+ (1941, 'RO ', '282', 'Ponoara'),
1971
+ (1942, 'RO ', '282', 'Popesti'),
1972
+ (1943, 'RO ', '282', 'Posoloaca'),
1973
+ (1944, 'RO ', '282', 'Prisaca'),
1974
+ (1945, 'RO ', '282', 'Rabagani'),
1975
+ (1946, 'RO ', '282', 'Racas'),
1976
+ (1947, 'RO ', '282', 'Rapa'),
1977
+ (1948, 'RO ', '282', 'Reghea'),
1978
+ (1949, 'RO ', '282', 'Remetea'),
1979
+ (1950, 'RO ', '282', 'Remeti'),
1980
+ (1951, 'RO ', '282', 'Rieni'),
1981
+ (1952, 'RO ', '282', 'Rogoz'),
1982
+ (1953, 'RO ', '282', 'Rohani'),
1983
+ (1954, 'RO ', '282', 'Roit'),
1984
+ (1955, 'RO ', '282', 'Rontau'),
1985
+ (1956, 'RO ', '282', 'Rosia'),
1986
+ (1957, 'RO ', '282', 'Rosiori'),
1987
+ (1958, 'RO ', '282', 'Rotaresti'),
1988
+ (1959, 'RO ', '282', 'Rugea'),
1989
+ (1960, 'RO ', '282', 'Sabolciu'),
1990
+ (1961, 'RO ', '282', 'Saca'),
1991
+ (1962, 'RO ', '282', 'Sacadat'),
1992
+ (1963, 'RO ', '282', 'Sacalasau'),
1993
+ (1964, 'RO ', '282', 'Sacalasau Nou'),
1994
+ (1965, 'RO ', '282', 'Sacueni'),
1995
+ (1966, 'RO ', '282', 'Salacea'),
1996
+ (1967, 'RO ', '282', 'Salard'),
1997
+ (1968, 'RO ', '282', 'Saldabagiu de Barcau'),
1998
+ (1969, 'RO ', '282', 'Saldabagiu de munte'),
1999
+ (1970, 'RO ', '282', 'Saldabagiu Mic'),
2000
+ (1971, 'RO ', '282', 'Saliste'),
2001
+ (1972, 'RO ', '282', 'Saliste de Beius'),
2002
+ (1973, 'RO ', '282', 'Saliste de Pomezeu'),
2003
+ (1974, 'RO ', '282', 'Saliste de Vascau'),
2004
+ (1975, 'RO ', '282', 'Salonta'),
2005
+ (1976, 'RO ', '282', 'Sambata'),
2006
+ (1977, 'RO ', '282', 'Saniob'),
2007
+ (1978, 'RO ', '282', 'Sanlazar'),
2008
+ (1979, 'RO ', '282', 'Sanmartin'),
2009
+ (1980, 'RO ', '282', 'Sanmartin de Beius'),
2010
+ (1981, 'RO ', '282', 'Sannicolau de beius'),
2011
+ (1982, 'RO ', '282', 'Sannicolau de Munte'),
2012
+ (1983, 'RO ', '282', 'Sannicolau roman'),
2013
+ (1984, 'RO ', '282', 'Santandrei'),
2014
+ (1985, 'RO ', '282', 'Santaul Mare'),
2015
+ (1986, 'RO ', '282', 'Santaul Mic'),
2016
+ (1987, 'RO ', '282', 'Santelec'),
2017
+ (1988, 'RO ', '282', 'SANTIMREU'),
2018
+ (1989, 'RO ', '282', 'Santion'),
2019
+ (1990, 'RO ', '282', 'Sarand'),
2020
+ (1991, 'RO ', '282', 'Sarbesti'),
2021
+ (1992, 'RO ', '282', 'Sarbi'),
2022
+ (1993, 'RO ', '282', 'Sarcau'),
2023
+ (1994, 'RO ', '282', 'Sarsig'),
2024
+ (1995, 'RO ', '282', 'Satu Barba'),
2025
+ (1996, 'RO ', '282', 'Satu nou'),
2026
+ (1997, 'RO ', '282', 'Sauaieu'),
2027
+ (1998, 'RO ', '282', 'Saucani'),
2028
+ (1999, 'RO ', '282', 'Saud'),
2029
+ (2000, 'RO ', '282', 'Sebis'),
2030
+ (2001, 'RO ', '282', 'Seghiste'),
2031
+ (2002, 'RO ', '282', 'Serani'),
2032
+ (2003, 'RO ', '282', 'Serghis'),
2033
+ (2004, 'RO ', '282', 'Sfarnas'),
2034
+ (2005, 'RO ', '282', 'Sighistel'),
2035
+ (2006, 'RO ', '282', 'Silindru'),
2036
+ (2007, 'RO ', '282', 'Simian'),
2037
+ (2008, 'RO ', '282', 'Sinteu'),
2038
+ (2009, 'RO ', '282', 'Sisterea'),
2039
+ (2010, 'RO ', '282', 'Sitani'),
2040
+ (2011, 'RO ', '282', 'Sititelec'),
2041
+ (2012, 'RO ', '282', 'Socet'),
2042
+ (2013, 'RO ', '282', 'Sohodol'),
2043
+ (2014, 'RO ', '282', 'Soimi'),
2044
+ (2015, 'RO ', '282', 'Soimus'),
2045
+ (2016, 'RO ', '282', 'Spinus'),
2046
+ (2017, 'RO ', '282', 'Spinus de Pomezeu'),
2047
+ (2018, 'RO ', '282', 'Stancesti'),
2048
+ (2019, 'RO ', '282', 'Stei'),
2049
+ (2020, 'RO ', '282', 'Stracos'),
2050
+ (2021, 'RO ', '282', 'Subpiatra'),
2051
+ (2022, 'RO ', '282', 'Sudrigiu'),
2052
+ (2023, 'RO ', '282', 'Suiug'),
2053
+ (2024, 'RO ', '282', 'Sumugiu'),
2054
+ (2025, 'RO ', '282', 'Suncuis'),
2055
+ (2026, 'RO ', '282', 'Suncuius'),
2056
+ (2027, 'RO ', '282', 'Suplacu de barcau'),
2057
+ (2028, 'RO ', '282', 'Suplacu de Tinca'),
2058
+ (2029, 'RO ', '282', 'Surduc'),
2059
+ (2030, 'RO ', '282', 'Surducel'),
2060
+ (2031, 'RO ', '282', 'Sustiu'),
2061
+ (2032, 'RO ', '282', 'Susturogi'),
2062
+ (2033, 'RO ', '282', 'Talpe'),
2063
+ (2034, 'RO ', '282', 'Talpos'),
2064
+ (2035, 'RO ', '282', 'Tamasda'),
2065
+ (2036, 'RO ', '282', 'Tamaseu'),
2066
+ (2037, 'RO ', '282', 'Tarcaia'),
2067
+ (2038, 'RO ', '282', 'Tarcaita'),
2068
+ (2039, 'RO ', '282', 'Tarcea'),
2069
+ (2040, 'RO ', '282', 'Targusor'),
2070
+ (2041, 'RO ', '282', 'Tarian'),
2071
+ (2042, 'RO ', '282', 'Tasad'),
2072
+ (2043, 'RO ', '282', 'Taut'),
2073
+ (2044, 'RO ', '282', 'Tautelec'),
2074
+ (2045, 'RO ', '282', 'Tauteu'),
2075
+ (2046, 'RO ', '282', 'Teleac'),
2076
+ (2047, 'RO ', '282', 'Telechiu'),
2077
+ (2048, 'RO ', '282', 'Tetchea'),
2078
+ (2049, 'RO ', '282', 'Tiganestii de Beius'),
2079
+ (2050, 'RO ', '282', 'Tiganestii de Cris'),
2080
+ (2051, 'RO ', '282', 'Tileagd'),
2081
+ (2052, 'RO ', '282', 'Tilecus'),
2082
+ (2053, 'RO ', '282', 'Tinaud'),
2083
+ (2054, 'RO ', '282', 'Tinca'),
2084
+ (2055, 'RO ', '282', 'Toboliu'),
2085
+ (2056, 'RO ', '282', 'TOMNATIC'),
2086
+ (2057, 'RO ', '282', 'Topa de Cris'),
2087
+ (2058, 'RO ', '282', 'Topa de Jos'),
2088
+ (2059, 'RO ', '282', 'Topa de Sus'),
2089
+ (2060, 'RO ', '282', 'Topesti'),
2090
+ (2061, 'RO ', '282', 'Totoreni'),
2091
+ (2062, 'RO ', '282', 'Tria'),
2092
+ (2063, 'RO ', '282', 'Tulca'),
2093
+ (2064, 'RO ', '282', 'Ucuris'),
2094
+ (2065, 'RO ', '282', 'Uileacu de beius'),
2095
+ (2066, 'RO ', '282', 'Uileacu de Cris'),
2096
+ (2067, 'RO ', '282', 'Uileacu de Munte'),
2097
+ (2068, 'RO ', '282', 'URSAD'),
2098
+ (2069, 'RO ', '282', 'Urvind'),
2099
+ (2070, 'RO ', '282', 'Urvis de beius'),
2100
+ (2071, 'RO ', '282', 'Vadu Crisului'),
2101
+ (2072, 'RO ', '282', 'Vaida'),
2102
+ (2073, 'RO ', '282', 'Valani de Pomezeu'),
2103
+ (2074, 'RO ', '282', 'Valanii de Beius'),
2104
+ (2075, 'RO ', '282', 'Valcelele'),
2105
+ (2076, 'RO ', '282', 'Valea Cerului'),
2106
+ (2077, 'RO ', '282', 'Valea Crisului'),
2107
+ (2078, 'RO ', '282', 'Valea de Jos'),
2108
+ (2079, 'RO ', '282', 'Valea de Sus'),
2109
+ (2080, 'RO ', '282', 'Valea lui Mihai'),
2110
+ (2081, 'RO ', '282', 'Valea Mare de Codru'),
2111
+ (2082, 'RO ', '282', 'Valea Mare de Cris'),
2112
+ (2083, 'RO ', '282', 'Valea Tarnei'),
2113
+ (2084, 'RO ', '282', 'Varasau'),
2114
+ (2085, 'RO ', '282', 'Varaseni'),
2115
+ (2086, 'RO ', '282', 'Varciorog'),
2116
+ (2087, 'RO ', '282', 'Varviz'),
2117
+ (2088, 'RO ', '282', 'Varzari'),
2118
+ (2089, 'RO ', '282', 'Varzarii de Jos'),
2119
+ (2090, 'RO ', '282', 'Varzarii de Sus'),
2120
+ (2091, 'RO ', '282', 'Vasad'),
2121
+ (2092, 'RO ', '282', 'Vascau'),
2122
+ (2093, 'RO ', '282', 'Viisoara'),
2123
+ (2094, 'RO ', '282', 'Vintere'),
2124
+ (2095, 'RO ', '282', 'Voivozi (Popesti)'),
2125
+ (2096, 'RO ', '282', 'Voivozi (simian)'),
2126
+ (2097, 'RO ', '282', 'Zavoiu'),
2127
+ (2098, 'RO ', '282', 'Zece Hotare'),
2128
+ (2099, 'RO ', '283', 'Agries'),
2129
+ (2100, 'RO ', '283', 'Agriesel'),
2130
+ (2101, 'RO ', '283', 'Agrisu de Jos'),
2131
+ (2102, 'RO ', '283', 'Agrisu de Sus'),
2132
+ (2103, 'RO ', '283', 'Albestii Bistritei'),
2133
+ (2104, 'RO ', '283', 'Alunisul'),
2134
+ (2105, 'RO ', '283', 'Anies'),
2135
+ (2106, 'RO ', '283', 'Apatiu'),
2136
+ (2107, 'RO ', '283', 'Arcalia'),
2137
+ (2108, 'RO ', '283', 'Archiud'),
2138
+ (2109, 'RO ', '283', 'Ardan'),
2139
+ (2110, 'RO ', '283', 'Arsita'),
2140
+ (2111, 'RO ', '283', 'Barla'),
2141
+ (2112, 'RO ', '283', 'Bata'),
2142
+ (2113, 'RO ', '283', 'Beclean'),
2143
+ (2114, 'RO ', '283', 'Beudiu'),
2144
+ (2115, 'RO ', '283', 'Bichigiu'),
2145
+ (2116, 'RO ', '283', 'Bidiu'),
2146
+ (2117, 'RO ', '283', 'Bistrita'),
2147
+ (2118, 'RO ', '283', 'BISTRITA BARGAULUI'),
2148
+ (2119, 'RO ', '283', 'Bistrita Bargaului Fabrici'),
2149
+ (2120, 'RO ', '283', 'Blajenii de Jos'),
2150
+ (2121, 'RO ', '283', 'Blajenii de Sus'),
2151
+ (2122, 'RO ', '283', 'Bozies'),
2152
+ (2123, 'RO ', '283', 'Branistea'),
2153
+ (2124, 'RO ', '283', 'Brateni'),
2154
+ (2125, 'RO ', '283', 'Breaza'),
2155
+ (2126, 'RO ', '283', 'Bretea'),
2156
+ (2127, 'RO ', '283', 'Budacu de Jos'),
2157
+ (2128, 'RO ', '283', 'Budacu de Sus'),
2158
+ (2129, 'RO ', '283', 'Budesti'),
2159
+ (2130, 'RO ', '283', 'Budesti-Fanate'),
2160
+ (2131, 'RO ', '283', 'Budurleni'),
2161
+ (2132, 'RO ', '283', 'Budus'),
2162
+ (2133, 'RO ', '283', 'Bungard'),
2163
+ (2134, 'RO ', '283', 'Buza Catun'),
2164
+ (2135, 'RO ', '283', 'Caianu Mare'),
2165
+ (2136, 'RO ', '283', 'Caianu Mic'),
2166
+ (2137, 'RO ', '283', 'Caila'),
2167
+ (2138, 'RO ', '283', 'Camp'),
2168
+ (2139, 'RO ', '283', 'Cepari'),
2169
+ (2140, 'RO ', '283', 'Cetate'),
2170
+ (2141, 'RO ', '283', 'Chetiu'),
2171
+ (2142, 'RO ', '283', 'Chintelnic'),
2172
+ (2143, 'RO ', '283', 'Chiochis'),
2173
+ (2144, 'RO ', '283', 'Chirales'),
2174
+ (2145, 'RO ', '283', 'Chiuza'),
2175
+ (2146, 'RO ', '283', 'Ciceu-Corabia'),
2176
+ (2147, 'RO ', '283', 'Ciceu-Giurgesti'),
2177
+ (2148, 'RO ', '283', 'Ciceu-Mihaiesti'),
2178
+ (2149, 'RO ', '283', 'Ciceu-Poieni'),
2179
+ (2150, 'RO ', '283', 'Ciosa'),
2180
+ (2151, 'RO ', '283', 'Ciresoaia'),
2181
+ (2152, 'RO ', '283', 'Coasta'),
2182
+ (2153, 'RO ', '283', 'Cociu'),
2183
+ (2154, 'RO ', '283', 'Coldau'),
2184
+ (2155, 'RO ', '283', 'Colibita'),
2185
+ (2156, 'RO ', '283', 'Comlod'),
2186
+ (2157, 'RO ', '283', 'Cormaia'),
2187
+ (2158, 'RO ', '283', 'Corvinesti'),
2188
+ (2159, 'RO ', '283', 'Cosbuc'),
2189
+ (2160, 'RO ', '283', 'Coseriu'),
2190
+ (2161, 'RO ', '283', 'CRAINIMAT'),
2191
+ (2162, 'RO ', '283', 'Cristestii Ciceului'),
2192
+ (2163, 'RO ', '283', 'Cristur-sieu'),
2193
+ (2164, 'RO ', '283', 'Cusma'),
2194
+ (2165, 'RO ', '283', 'Dealu Stefanitei'),
2195
+ (2166, 'RO ', '283', 'Delureni'),
2196
+ (2167, 'RO ', '283', 'Dipsa'),
2197
+ (2168, 'RO ', '283', 'Dobric'),
2198
+ (2169, 'RO ', '283', 'Dobricel'),
2199
+ (2170, 'RO ', '283', 'Domnesti'),
2200
+ (2171, 'RO ', '283', 'Dorolea'),
2201
+ (2172, 'RO ', '283', 'Draga'),
2202
+ (2173, 'RO ', '283', 'Dumbrava (Livezile)'),
2203
+ (2174, 'RO ', '283', 'Dumbrava (Nuseni)'),
2204
+ (2175, 'RO ', '283', 'Dumbraveni'),
2205
+ (2176, 'RO ', '283', 'Dumbravita'),
2206
+ (2177, 'RO ', '283', 'Dumitra'),
2207
+ (2178, 'RO ', '283', 'Dumitrita'),
2208
+ (2179, 'RO ', '283', 'Dupa Deal'),
2209
+ (2180, 'RO ', '283', 'Enciu'),
2210
+ (2181, 'RO ', '283', 'Fanate'),
2211
+ (2182, 'RO ', '283', 'Fanatele Silivasului'),
2212
+ (2183, 'RO ', '283', 'Fantanele'),
2213
+ (2184, 'RO ', '283', 'Fantanita'),
2214
+ (2185, 'RO ', '283', 'Feldru'),
2215
+ (2186, 'RO ', '283', 'Feleac'),
2216
+ (2187, 'RO ', '283', 'Fiad'),
2217
+ (2188, 'RO ', '283', 'Figa'),
2218
+ (2189, 'RO ', '283', 'Floresti'),
2219
+ (2190, 'RO ', '283', 'GALATII BISTRITEI'),
2220
+ (2191, 'RO ', '283', 'Gersa I'),
2221
+ (2192, 'RO ', '283', 'Gersa II'),
2222
+ (2193, 'RO ', '283', 'Ghemes'),
2223
+ (2194, 'RO ', '283', 'Ghinda'),
2224
+ (2195, 'RO ', '283', 'Gledin'),
2225
+ (2196, 'RO ', '283', 'Hasmasu Ciceului'),
2226
+ (2197, 'RO ', '283', 'Herina'),
2227
+ (2198, 'RO ', '283', 'Hirean'),
2228
+ (2199, 'RO ', '283', 'Ilisua'),
2229
+ (2200, 'RO ', '283', 'Ilva Mare'),
2230
+ (2201, 'RO ', '283', 'Ilva Mica'),
2231
+ (2202, 'RO ', '283', 'Ivaneasa'),
2232
+ (2203, 'RO ', '283', 'Jeica'),
2233
+ (2204, 'RO ', '283', 'Jelna'),
2234
+ (2205, 'RO ', '283', 'Jimbor'),
2235
+ (2206, 'RO ', '283', 'JOSENII BARGAULUI'),
2236
+ (2207, 'RO ', '283', 'La Curte'),
2237
+ (2208, 'RO ', '283', 'Lechinta'),
2238
+ (2209, 'RO ', '283', 'Lesu'),
2239
+ (2210, 'RO ', '283', 'Livezile'),
2240
+ (2211, 'RO ', '283', 'Liviu Rebreanu'),
2241
+ (2212, 'RO ', '283', 'Lunca'),
2242
+ (2213, 'RO ', '283', 'Lunca Ilvei'),
2243
+ (2214, 'RO ', '283', 'Lunca Lesului'),
2244
+ (2215, 'RO ', '283', 'Lusca '),
2245
+ (2216, 'RO ', '283', 'Magura Ilvei'),
2246
+ (2217, 'RO ', '283', 'Magurele'),
2247
+ (2218, 'RO ', '283', 'Maieru'),
2248
+ (2219, 'RO ', '283', 'Malin'),
2249
+ (2220, 'RO ', '283', 'Malut'),
2250
+ (2221, 'RO ', '283', 'Mariselu'),
2251
+ (2222, 'RO ', '283', 'Matei'),
2252
+ (2223, 'RO ', '283', 'Micestii de Campie'),
2253
+ (2224, 'RO ', '283', 'MIJLOCENII BARGAULUI'),
2254
+ (2225, 'RO ', '283', 'Milas'),
2255
+ (2226, 'RO ', '283', 'Mintiu'),
2256
+ (2227, 'RO ', '283', 'Mires'),
2257
+ (2228, 'RO ', '283', 'Mititei'),
2258
+ (2229, 'RO ', '283', 'Mocod'),
2259
+ (2230, 'RO ', '283', 'Mogoseni'),
2260
+ (2231, 'RO ', '283', 'Monariu'),
2261
+ (2232, 'RO ', '283', 'Monor'),
2262
+ (2233, 'RO ', '283', 'Morut'),
2263
+ (2234, 'RO ', '283', 'Muresenii Bargaului'),
2264
+ (2235, 'RO ', '283', 'Nasaud'),
2265
+ (2236, 'RO ', '283', 'Negrilesti'),
2266
+ (2237, 'RO ', '283', 'Nepos'),
2267
+ (2238, 'RO ', '283', 'Neteni'),
2268
+ (2239, 'RO ', '283', 'Nimigea'),
2269
+ (2240, 'RO ', '283', 'Nimigea de Jos'),
2270
+ (2241, 'RO ', '283', 'Nimigea de Sus'),
2271
+ (2242, 'RO ', '283', 'Nuseni'),
2272
+ (2243, 'RO ', '283', 'Ocnita'),
2273
+ (2244, 'RO ', '283', 'Orheiu Bistritei'),
2274
+ (2245, 'RO ', '283', 'Orosfaia'),
2275
+ (2246, 'RO ', '283', 'Paltineasa'),
2276
+ (2247, 'RO ', '283', 'Parva'),
2277
+ (2248, 'RO ', '283', 'Perisor'),
2278
+ (2249, 'RO ', '283', 'Petris'),
2279
+ (2250, 'RO ', '283', 'Petru Rares'),
2280
+ (2251, 'RO ', '283', 'Piatra '),
2281
+ (2252, 'RO ', '283', 'PIATRA FANTANELE'),
2282
+ (2253, 'RO ', '283', 'Pinticu'),
2283
+ (2254, 'RO ', '283', 'Podenii'),
2284
+ (2255, 'RO ', '283', 'Poderei'),
2285
+ (2256, 'RO ', '283', 'Podirei'),
2286
+ (2257, 'RO ', '283', 'Poiana Ilvei'),
2287
+ (2258, 'RO ', '283', 'POIENILE ZAGREI'),
2288
+ (2259, 'RO ', '283', 'Porumbenii'),
2289
+ (2260, 'RO ', '283', 'Posmus'),
2290
+ (2261, 'RO ', '283', 'Prundu Bargaului'),
2291
+ (2262, 'RO ', '283', 'Purcarete'),
2292
+ (2263, 'RO ', '283', 'Ragla'),
2293
+ (2264, 'RO ', '283', 'Rebra'),
2294
+ (2265, 'RO ', '283', 'Rebrisoara'),
2295
+ (2266, 'RO ', '283', 'Reteag'),
2296
+ (2267, 'RO ', '283', 'Rodna'),
2297
+ (2268, 'RO ', '283', 'Romuli'),
2298
+ (2269, 'RO ', '283', 'Runcu Salvei'),
2299
+ (2270, 'RO ', '283', 'Rustior'),
2300
+ (2271, 'RO ', '283', 'Rusu Bargaului'),
2301
+ (2272, 'RO ', '283', 'Rusu de Jos'),
2302
+ (2273, 'RO ', '283', 'Rusu de Sus'),
2303
+ (2274, 'RO ', '283', 'Salcuta'),
2304
+ (2275, 'RO ', '283', 'Salva'),
2305
+ (2276, 'RO ', '283', 'Sangeorz-Bai'),
2306
+ (2277, 'RO ', '283', 'SANGEORZU NOU'),
2307
+ (2278, 'RO ', '283', 'Saniacob'),
2308
+ (2279, 'RO ', '283', 'Sanmihaiu de Campie'),
2309
+ (2280, 'RO ', '283', 'Sant'),
2310
+ (2281, 'RO ', '283', 'Santioana'),
2311
+ (2282, 'RO ', '283', 'Sarata'),
2312
+ (2283, 'RO ', '283', 'Saratel'),
2313
+ (2284, 'RO ', '283', 'Sasarm'),
2314
+ (2285, 'RO ', '283', 'Satu Nou'),
2315
+ (2286, 'RO ', '283', 'Scoabe'),
2316
+ (2287, 'RO ', '283', 'Sebis'),
2317
+ (2288, 'RO ', '283', 'Sendroaia'),
2318
+ (2289, 'RO ', '283', 'Sieu'),
2319
+ (2290, 'RO ', '283', 'Sieu-Magherus'),
2320
+ (2291, 'RO ', '283', 'Sieu-Odorhei'),
2321
+ (2292, 'RO ', '283', 'Sieu-Sfantu'),
2322
+ (2293, 'RO ', '283', 'Sieut'),
2323
+ (2294, 'RO ', '283', 'Sigmir'),
2324
+ (2295, 'RO ', '283', 'SILIVASU DE CAMPIE'),
2325
+ (2296, 'RO ', '283', 'Simionesti'),
2326
+ (2297, 'RO ', '283', 'Sintereag'),
2327
+ (2298, 'RO ', '283', 'Sintereag-Gara'),
2328
+ (2299, 'RO ', '283', 'Sirioara'),
2329
+ (2300, 'RO ', '283', 'Sita'),
2330
+ (2301, 'RO ', '283', 'Slatinita'),
2331
+ (2302, 'RO ', '283', 'Soimus'),
2332
+ (2303, 'RO ', '283', 'Sopteriu'),
2333
+ (2304, 'RO ', '283', 'Spermezeu'),
2334
+ (2305, 'RO ', '283', 'Stramba'),
2335
+ (2306, 'RO ', '283', 'Strugureni'),
2336
+ (2307, 'RO ', '283', 'Stupini'),
2337
+ (2308, 'RO ', '283', 'Suplai'),
2338
+ (2309, 'RO ', '283', 'SUSENII BARGAULUI'),
2339
+ (2310, 'RO ', '283', 'Tagsoru'),
2340
+ (2311, 'RO ', '283', 'Tagu'),
2341
+ (2312, 'RO ', '283', 'Tarlisua'),
2342
+ (2313, 'RO ', '283', 'Tarpiu'),
2343
+ (2314, 'RO ', '283', 'Taure'),
2344
+ (2315, 'RO ', '283', 'Teaca'),
2345
+ (2316, 'RO ', '283', 'Telcisor'),
2346
+ (2317, 'RO ', '283', 'Telciu'),
2347
+ (2318, 'RO ', '283', 'Tentea'),
2348
+ (2319, 'RO ', '283', 'Tigau'),
2349
+ (2320, 'RO ', '283', 'Tiha Bargaului'),
2350
+ (2321, 'RO ', '283', 'Tonciu'),
2351
+ (2322, 'RO ', '283', 'Tureac'),
2352
+ (2323, 'RO ', '283', 'Unirea'),
2353
+ (2324, 'RO ', '283', 'Uriu'),
2354
+ (2325, 'RO ', '283', 'Urmenis'),
2355
+ (2326, 'RO ', '283', 'Valea'),
2356
+ (2327, 'RO ', '283', 'Valea Borcutului'),
2357
+ (2328, 'RO ', '283', 'Valea Magherusului'),
2358
+ (2329, 'RO ', '283', 'Valea Mare (sant)'),
2359
+ (2330, 'RO ', '283', 'Valea Poenii'),
2360
+ (2331, 'RO ', '283', 'Valea Vinului'),
2361
+ (2332, 'RO ', '283', 'Vermes'),
2362
+ (2333, 'RO ', '283', 'Viile Tecii'),
2363
+ (2334, 'RO ', '283', 'Viisoara'),
2364
+ (2335, 'RO ', '283', 'Visuia'),
2365
+ (2336, 'RO ', '283', 'Vita'),
2366
+ (2337, 'RO ', '283', 'Zagra'),
2367
+ (2338, 'RO ', '283', 'Zoreni'),
2368
+ (2339, 'RO ', '284', 'Adaseni'),
2369
+ (2340, 'RO ', '284', 'Agafton'),
2370
+ (2341, 'RO ', '284', 'Alba'),
2371
+ (2342, 'RO ', '284', 'Albesti'),
2372
+ (2343, 'RO ', '284', 'Arborea'),
2373
+ (2344, 'RO ', '284', 'Aurel Vlaicu'),
2374
+ (2345, 'RO ', '284', 'Avram Iancu'),
2375
+ (2346, 'RO ', '284', 'Avrameni'),
2376
+ (2347, 'RO ', '284', 'Babiceni'),
2377
+ (2348, 'RO ', '284', 'Badarai'),
2378
+ (2349, 'RO ', '284', 'Badiuti'),
2379
+ (2350, 'RO ', '284', 'Baiceni'),
2380
+ (2351, 'RO ', '284', 'Baisa'),
2381
+ (2352, 'RO ', '284', 'Bajura'),
2382
+ (2353, 'RO ', '284', 'Balinti'),
2383
+ (2354, 'RO ', '284', 'Balta Arsa'),
2384
+ (2355, 'RO ', '284', 'Baluseni'),
2385
+ (2356, 'RO ', '284', 'Balusenii Noi'),
2386
+ (2357, 'RO ', '284', 'Baranca (Cristinesti)'),
2387
+ (2358, 'RO ', '284', 'Baranca (Hudesti)'),
2388
+ (2359, 'RO ', '284', 'Barsanesti'),
2389
+ (2360, 'RO ', '284', 'Baseu'),
2390
+ (2361, 'RO ', '284', 'Batranesti'),
2391
+ (2362, 'RO ', '284', 'Belcea'),
2392
+ (2363, 'RO ', '284', 'Berza'),
2393
+ (2364, 'RO ', '284', 'Bivolari'),
2394
+ (2365, 'RO ', '284', 'Blandesti'),
2395
+ (2366, 'RO ', '284', 'Bobulesti'),
2396
+ (2367, 'RO ', '284', 'Bodeasa'),
2397
+ (2368, 'RO ', '284', 'Bogdanesti'),
2398
+ (2369, 'RO ', '284', 'Bohoghina'),
2399
+ (2370, 'RO ', '284', 'Bold'),
2400
+ (2371, 'RO ', '284', 'Borolea'),
2401
+ (2372, 'RO ', '284', 'Borzesti'),
2402
+ (2373, 'RO ', '284', 'Boscoteni'),
2403
+ (2374, 'RO ', '284', 'Botosani'),
2404
+ (2375, 'RO ', '284', 'Bozieni'),
2405
+ (2376, 'RO ', '284', 'Braesti'),
2406
+ (2377, 'RO ', '284', 'Brateni'),
2407
+ (2378, 'RO ', '284', 'Brehuiesti'),
2408
+ (2379, 'RO ', '284', 'Broscauti'),
2409
+ (2380, 'RO ', '284', 'Brosteni'),
2410
+ (2381, 'RO ', '284', 'Bucecea'),
2411
+ (2382, 'RO ', '284', 'Buda'),
2412
+ (2383, 'RO ', '284', 'Buhaceni'),
2413
+ (2384, 'RO ', '284', 'Buimaceni'),
2414
+ (2385, 'RO ', '284', 'Burla'),
2415
+ (2386, 'RO ', '284', 'Burlesti'),
2416
+ (2387, 'RO ', '284', 'Buzeni'),
2417
+ (2388, 'RO ', '284', 'Calarasi'),
2418
+ (2389, 'RO ', '284', 'Calinesti (Bucecea)'),
2419
+ (2390, 'RO ', '284', 'Calinesti (Candesti)'),
2420
+ (2391, 'RO ', '284', 'Calugareni'),
2421
+ (2392, 'RO ', '284', 'Calugarenii Noi'),
2422
+ (2393, 'RO ', '284', 'Campeni'),
2423
+ (2394, 'RO ', '284', 'Candesti'),
2424
+ (2395, 'RO ', '284', 'Caraiman'),
2425
+ (2396, 'RO ', '284', 'Carasa'),
2426
+ (2397, 'RO ', '284', 'Catamaresti'),
2427
+ (2398, 'RO ', '284', 'Catamaresti-Deal'),
2428
+ (2399, 'RO ', '284', 'Cerbu'),
2429
+ (2400, 'RO ', '284', 'Cerchejeni'),
2430
+ (2401, 'RO ', '284', 'Cernesti'),
2431
+ (2402, 'RO ', '284', 'Cervicesti'),
2432
+ (2403, 'RO ', '284', 'Cervicesti-Deal'),
2433
+ (2404, 'RO ', '284', 'Chelis'),
2434
+ (2405, 'RO ', '284', 'Chiscareni'),
2435
+ (2406, 'RO ', '284', 'Chitoveni'),
2436
+ (2407, 'RO ', '284', 'Ciritei'),
2437
+ (2408, 'RO ', '284', 'Cismanesti'),
2438
+ (2409, 'RO ', '284', 'Cismea'),
2439
+ (2410, 'RO ', '284', 'Codreni'),
2440
+ (2411, 'RO ', '284', 'Concesti'),
2441
+ (2412, 'RO ', '284', 'Copalau'),
2442
+ (2413, 'RO ', '284', 'Cordareni'),
2443
+ (2414, 'RO ', '284', 'Corjauti'),
2444
+ (2415, 'RO ', '284', 'Corlateni'),
2445
+ (2416, 'RO ', '284', 'Corni'),
2446
+ (2417, 'RO ', '284', 'Costesti'),
2447
+ (2418, 'RO ', '284', 'Costinesti'),
2448
+ (2419, 'RO ', '284', 'Costiugeni'),
2449
+ (2420, 'RO ', '284', 'Cosula'),
2450
+ (2421, 'RO ', '284', 'Cosuleni'),
2451
+ (2422, 'RO ', '284', 'Cotargaci'),
2452
+ (2423, 'RO ', '284', 'Cotu'),
2453
+ (2424, 'RO ', '284', 'Cotu Miculinti'),
2454
+ (2425, 'RO ', '284', 'Cotusca'),
2455
+ (2426, 'RO ', '284', 'Crasnaleuca'),
2456
+ (2427, 'RO ', '284', 'Cristesti'),
2457
+ (2428, 'RO ', '284', 'Cristinesti'),
2458
+ (2429, 'RO ', '284', 'Cucorani'),
2459
+ (2430, 'RO ', '284', 'Cucuteni'),
2460
+ (2431, 'RO ', '284', 'Curtesti'),
2461
+ (2432, 'RO ', '284', 'Cuza Voda'),
2462
+ (2433, 'RO ', '284', 'Cuzlau'),
2463
+ (2434, 'RO ', '284', 'Dacia'),
2464
+ (2435, 'RO ', '284', 'Damideni'),
2465
+ (2436, 'RO ', '284', 'Damileni'),
2466
+ (2437, 'RO ', '284', 'Dangeni'),
2467
+ (2438, 'RO ', '284', 'Darabani'),
2468
+ (2439, 'RO ', '284', 'Davidoaia'),
2469
+ (2440, 'RO ', '284', 'Dealu Crucii'),
2470
+ (2441, 'RO ', '284', 'Dealu Mare'),
2471
+ (2442, 'RO ', '284', 'Dersca'),
2472
+ (2443, 'RO ', '284', 'Dimacheni'),
2473
+ (2444, 'RO ', '284', 'Dimitrie Cantemir'),
2474
+ (2445, 'RO ', '284', 'Dobarceni'),
2475
+ (2446, 'RO ', '284', 'Doina'),
2476
+ (2447, 'RO ', '284', 'Dolina'),
2477
+ (2448, 'RO ', '284', 'Dorobanti'),
2478
+ (2449, 'RO ', '284', 'Dorohoi'),
2479
+ (2450, 'RO ', '284', 'Dracsani '),
2480
+ (2451, 'RO ', '284', 'Dragalina (Cristinesti)'),
2481
+ (2452, 'RO ', '284', 'Dragalina (Hlipiceni)'),
2482
+ (2453, 'RO ', '284', 'Draguseni'),
2483
+ (2454, 'RO ', '284', 'Draxini'),
2484
+ (2455, 'RO ', '284', 'Drislea'),
2485
+ (2456, 'RO ', '284', 'Dumbravita'),
2486
+ (2457, 'RO ', '284', 'Dumeni'),
2487
+ (2458, 'RO ', '284', 'Durnesti'),
2488
+ (2459, 'RO ', '284', 'Durnesti (Santa Mare)'),
2489
+ (2460, 'RO ', '284', 'Durnesti (Ungureni)'),
2490
+ (2461, 'RO ', '284', 'Esanca'),
2491
+ (2462, 'RO ', '284', 'Flamanzi'),
2492
+ (2463, 'RO ', '284', 'Flondora'),
2493
+ (2464, 'RO ', '284', 'Floresti'),
2494
+ (2465, 'RO ', '284', 'Frumusica'),
2495
+ (2466, 'RO ', '284', 'Fundu Hertii'),
2496
+ (2467, 'RO ', '284', 'Galbeni'),
2497
+ (2468, 'RO ', '284', 'Garbeni'),
2498
+ (2469, 'RO ', '284', 'Garbesti'),
2499
+ (2470, 'RO ', '284', 'George Cosbuc'),
2500
+ (2471, 'RO ', '284', 'George Enescu'),
2501
+ (2472, 'RO ', '284', 'Ghireni'),
2502
+ (2473, 'RO ', '284', 'Gorbanesti'),
2503
+ (2474, 'RO ', '284', 'Gorovei'),
2504
+ (2475, 'RO ', '284', 'Grivita'),
2505
+ (2476, 'RO ', '284', 'Guranda'),
2506
+ (2477, 'RO ', '284', 'Hanesti'),
2507
+ (2478, 'RO ', '284', 'Havarna'),
2508
+ (2479, 'RO ', '284', 'Hiliseu-Closca'),
2509
+ (2480, 'RO ', '284', 'Hiliseu-Crisan'),
2510
+ (2481, 'RO ', '284', 'Hiliseu-Horia'),
2511
+ (2482, 'RO ', '284', 'Hlipiceni'),
2512
+ (2483, 'RO ', '284', 'Horia'),
2513
+ (2484, 'RO ', '284', 'Horlaceni'),
2514
+ (2485, 'RO ', '284', 'Horodistea'),
2515
+ (2486, 'RO ', '284', 'Hriscani'),
2516
+ (2487, 'RO ', '284', 'Hudesti'),
2517
+ (2488, 'RO ', '284', 'Hudum'),
2518
+ (2489, 'RO ', '284', 'Hulub'),
2519
+ (2490, 'RO ', '284', 'Hulubesti'),
2520
+ (2491, 'RO ', '284', 'Hutani'),
2521
+ (2492, 'RO ', '284', 'Iacobeni'),
2522
+ (2493, 'RO ', '284', 'Ibanesti'),
2523
+ (2494, 'RO ', '284', 'Ichimeni'),
2524
+ (2495, 'RO ', '284', 'Icuseni'),
2525
+ (2496, 'RO ', '284', 'Iezer'),
2526
+ (2497, 'RO ', '284', 'Iliseni'),
2527
+ (2498, 'RO ', '284', 'Ionaseni (Trusesti)'),
2528
+ (2499, 'RO ', '284', 'Ionaseni (Varfu Campului)'),
2529
+ (2500, 'RO ', '284', 'Iorga'),
2530
+ (2501, 'RO ', '284', 'Ipotesti'),
2531
+ (2502, 'RO ', '284', 'Iuresti'),
2532
+ (2503, 'RO ', '284', 'Izvoare'),
2533
+ (2504, 'RO ', '284', 'Jijia'),
2534
+ (2505, 'RO ', '284', 'Joldesti'),
2535
+ (2506, 'RO ', '284', 'Leorda'),
2536
+ (2507, 'RO ', '284', 'Libertatea'),
2537
+ (2508, 'RO ', '284', 'Lismanita'),
2538
+ (2509, 'RO ', '284', 'Lisna'),
2539
+ (2510, 'RO ', '284', 'Livada'),
2540
+ (2511, 'RO ', '284', 'Liveni'),
2541
+ (2512, 'RO ', '284', 'Loturi'),
2542
+ (2513, 'RO ', '284', 'Loturi Enescu'),
2543
+ (2514, 'RO ', '284', 'Lozna'),
2544
+ (2515, 'RO ', '284', 'Lunca'),
2545
+ (2516, 'RO ', '284', 'Lunca (Varfu Campului)'),
2546
+ (2517, 'RO ', '284', 'Luparia'),
2547
+ (2518, 'RO ', '284', 'Manastirea Doamnei'),
2548
+ (2519, 'RO ', '284', 'Manastireni'),
2549
+ (2520, 'RO ', '284', 'Mandresti (Ungureni)'),
2550
+ (2521, 'RO ', '284', 'Mandresti (Vladeni)'),
2551
+ (2522, 'RO ', '284', 'Manoleasa'),
2552
+ (2523, 'RO ', '284', 'Manoleasa-Prut'),
2553
+ (2524, 'RO ', '284', 'Manolesti'),
2554
+ (2525, 'RO ', '284', 'Mascateni'),
2555
+ (2526, 'RO ', '284', 'Mateieni'),
2556
+ (2527, 'RO ', '284', 'Mesteacan'),
2557
+ (2528, 'RO ', '284', 'Mihai Eminescu'),
2558
+ (2529, 'RO ', '284', 'Mihai Eminescu (Gorbanesti)'),
2559
+ (2530, 'RO ', '284', 'Mihai Viteazu'),
2560
+ (2531, 'RO ', '284', 'Mihail Kogalniceanu'),
2561
+ (2532, 'RO ', '284', 'Mihaileni'),
2562
+ (2533, 'RO ', '284', 'Mihalaseni'),
2563
+ (2534, 'RO ', '284', 'Mileanca'),
2564
+ (2535, 'RO ', '284', 'Miletin'),
2565
+ (2536, 'RO ', '284', 'Miorcani'),
2566
+ (2537, 'RO ', '284', 'Miron Costin'),
2567
+ (2538, 'RO ', '284', 'Mitoc'),
2568
+ (2539, 'RO ', '284', 'Mitoc (Leorda)'),
2569
+ (2540, 'RO ', '284', 'Mlenauti'),
2570
+ (2541, 'RO ', '284', 'Moara Jorii'),
2571
+ (2542, 'RO ', '284', 'Movileni'),
2572
+ (2543, 'RO ', '284', 'Murguta'),
2573
+ (2544, 'RO ', '284', 'Nastase'),
2574
+ (2545, 'RO ', '284', 'Negreni'),
2575
+ (2546, 'RO ', '284', 'Negresti'),
2576
+ (2547, 'RO ', '284', 'Nichiteni'),
2577
+ (2548, 'RO ', '284', 'Nicolae Balcescu (Cotusca)'),
2578
+ (2549, 'RO ', '284', 'Nicolae Balcescu (Flamanzi)'),
2579
+ (2550, 'RO ', '284', 'Nicseni'),
2580
+ (2551, 'RO ', '284', 'Niculcea'),
2581
+ (2552, 'RO ', '284', 'Oneaga'),
2582
+ (2553, 'RO ', '284', 'Oraseni-Deal'),
2583
+ (2554, 'RO ', '284', 'Oraseni-Vale'),
2584
+ (2555, 'RO ', '284', 'Oroftiana'),
2585
+ (2556, 'RO ', '284', 'Padureni (Cosula)'),
2586
+ (2557, 'RO ', '284', 'Padureni (sendriceni)'),
2587
+ (2558, 'RO ', '284', 'Paltinis'),
2588
+ (2559, 'RO ', '284', 'Panaitoaia'),
2589
+ (2560, 'RO ', '284', 'Parau Negru'),
2590
+ (2561, 'RO ', '284', 'Pasateni'),
2591
+ (2562, 'RO ', '284', 'Paun'),
2592
+ (2563, 'RO ', '284', 'Petricani'),
2593
+ (2564, 'RO ', '284', 'Plesani'),
2594
+ (2565, 'RO ', '284', 'Plevna'),
2595
+ (2566, 'RO ', '284', 'Plopenii Mari'),
2596
+ (2567, 'RO ', '284', 'Plopenii Mici'),
2597
+ (2568, 'RO ', '284', 'Podeni'),
2598
+ (2569, 'RO ', '284', 'Podriga'),
2599
+ (2570, 'RO ', '284', 'Pogorasti'),
2600
+ (2571, 'RO ', '284', 'Poiana (Braesti)'),
2601
+ (2572, 'RO ', '284', 'Poiana (Cristinesti)'),
2602
+ (2573, 'RO ', '284', 'Poiana (Flamanzi)'),
2603
+ (2574, 'RO ', '284', 'Poiana (Vorona)'),
2604
+ (2575, 'RO ', '284', 'Pomarla'),
2605
+ (2576, 'RO ', '284', 'Popeni (Braesti)'),
2606
+ (2577, 'RO ', '284', 'Popeni (George Enescu)'),
2607
+ (2578, 'RO ', '284', 'Prajeni'),
2608
+ (2579, 'RO ', '284', 'Prisacani'),
2609
+ (2580, 'RO ', '284', 'Progresul'),
2610
+ (2581, 'RO ', '284', 'Putureni'),
2611
+ (2582, 'RO ', '284', 'Rachiti'),
2612
+ (2583, 'RO ', '284', 'Racovat'),
2613
+ (2584, 'RO ', '284', 'Radauti-Prut'),
2614
+ (2585, 'RO ', '284', 'Radeni'),
2615
+ (2586, 'RO ', '284', 'Ranghilesti'),
2616
+ (2587, 'RO ', '284', 'Ranghilesti-Deal'),
2617
+ (2588, 'RO ', '284', 'Rauseni'),
2618
+ (2589, 'RO ', '284', 'Rediu (Radauti-Prut)'),
2619
+ (2590, 'RO ', '284', 'Rediu (Rauseni)'),
2620
+ (2591, 'RO ', '284', 'Ripiceni'),
2621
+ (2592, 'RO ', '284', 'Ripicenii Vechi'),
2622
+ (2593, 'RO ', '284', 'Rogojesti'),
2623
+ (2594, 'RO ', '284', 'Roma'),
2624
+ (2595, 'RO ', '284', 'Romanesti'),
2625
+ (2596, 'RO ', '284', 'Romanesti-Vale'),
2626
+ (2597, 'RO ', '284', 'Rosiori'),
2627
+ (2598, 'RO ', '284', 'Sadoveni'),
2628
+ (2599, 'RO ', '284', 'Santa Mare'),
2629
+ (2600, 'RO ', '284', 'Sarafinesti'),
2630
+ (2601, 'RO ', '284', 'Sarata'),
2631
+ (2602, 'RO ', '284', 'Sarata-Basarab'),
2632
+ (2603, 'RO ', '284', 'Sarata-Draguseni'),
2633
+ (2604, 'RO ', '284', 'Sarbi'),
2634
+ (2605, 'RO ', '284', 'Sat Nou'),
2635
+ (2606, 'RO ', '284', 'Saucenita'),
2636
+ (2607, 'RO ', '284', 'Saveni'),
2637
+ (2608, 'RO ', '284', 'Schit-Oraseni'),
2638
+ (2609, 'RO ', '284', 'Scutari'),
2639
+ (2610, 'RO ', '284', 'Selistea'),
2640
+ (2611, 'RO ', '284', 'Sendreni'),
2641
+ (2612, 'RO ', '284', 'Sendriceni'),
2642
+ (2613, 'RO ', '284', 'Siliscani'),
2643
+ (2614, 'RO ', '284', 'Silistea'),
2644
+ (2615, 'RO ', '284', 'Slobozia (Broscauti)'),
2645
+ (2616, 'RO ', '284', 'Slobozia (Cordareni)'),
2646
+ (2617, 'RO ', '284', 'Slobozia (Paltinis)'),
2647
+ (2618, 'RO ', '284', 'Slobozia Hanesti'),
2648
+ (2619, 'RO ', '284', 'Slobozia Siliscani'),
2649
+ (2620, 'RO ', '284', 'Smardan'),
2650
+ (2621, 'RO ', '284', 'Socrujeni'),
2651
+ (2622, 'RO ', '284', 'Soldanesti'),
2652
+ (2623, 'RO ', '284', 'Soroceni'),
2653
+ (2624, 'RO ', '284', 'Stanca (George Enescu)'),
2654
+ (2625, 'RO ', '284', 'Stanca (stefanesti)'),
2655
+ (2626, 'RO ', '284', 'Stancesti'),
2656
+ (2627, 'RO ', '284', 'Stauceni'),
2657
+ (2628, 'RO ', '284', 'Stefanesti'),
2658
+ (2629, 'RO ', '284', 'Stefanesti-Sat'),
2659
+ (2630, 'RO ', '284', 'Stiubieni'),
2660
+ (2631, 'RO ', '284', 'Stolniceni'),
2661
+ (2632, 'RO ', '284', 'Storesti'),
2662
+ (2633, 'RO ', '284', 'Strahotin'),
2663
+ (2634, 'RO ', '284', 'Strateni'),
2664
+ (2635, 'RO ', '284', 'Stroiesti'),
2665
+ (2636, 'RO ', '284', 'Suharau'),
2666
+ (2637, 'RO ', '284', 'Sulita'),
2667
+ (2638, 'RO ', '284', 'Supitca'),
2668
+ (2639, 'RO ', '284', 'Talpa'),
2669
+ (2640, 'RO ', '284', 'Tataraseni'),
2670
+ (2641, 'RO ', '284', 'Tautesti'),
2671
+ (2642, 'RO ', '284', 'Timus'),
2672
+ (2643, 'RO ', '284', 'Tocileni'),
2673
+ (2644, 'RO ', '284', 'Todireni'),
2674
+ (2645, 'RO ', '284', 'Trusesti'),
2675
+ (2646, 'RO ', '284', 'Tudor Vladimirescu (Albesti)'),
2676
+ (2647, 'RO ', '284', 'Tudor Vladimirescu (Avrameni)'),
2677
+ (2648, 'RO ', '284', 'Tudora'),
2678
+ (2649, 'RO ', '284', 'Ungureni'),
2679
+ (2650, 'RO ', '284', 'Unguroaia'),
2680
+ (2651, 'RO ', '284', 'Unteni'),
2681
+ (2652, 'RO ', '284', 'Vaculesti'),
2682
+ (2653, 'RO ', '284', 'Valea Grajdului'),
2683
+ (2654, 'RO ', '284', 'Vanatori'),
2684
+ (2655, 'RO ', '284', 'Varfu Campului'),
2685
+ (2656, 'RO ', '284', 'Vatra'),
2686
+ (2657, 'RO ', '284', 'Vicoleni'),
2687
+ (2658, 'RO ', '284', 'Victoria (Hlipiceni)'),
2688
+ (2659, 'RO ', '284', 'Victoria (Stauceni)'),
2689
+ (2660, 'RO ', '284', 'Viforeni'),
2690
+ (2661, 'RO ', '284', 'Viisoara'),
2691
+ (2662, 'RO ', '284', 'Viisoara Mica'),
2692
+ (2663, 'RO ', '284', 'Vitcani'),
2693
+ (2664, 'RO ', '284', 'Vladeni'),
2694
+ (2665, 'RO ', '284', 'Vladeni (Corlateni)'),
2695
+ (2666, 'RO ', '284', 'Vladeni-Deal'),
2696
+ (2667, 'RO ', '284', 'Vlasinesti'),
2697
+ (2668, 'RO ', '284', 'Vorniceni'),
2698
+ (2669, 'RO ', '284', 'Vorona'),
2699
+ (2670, 'RO ', '284', 'Vorona Mare'),
2700
+ (2671, 'RO ', '284', 'Vorona-Teodoru'),
2701
+ (2672, 'RO ', '284', 'Vultureni'),
2702
+ (2673, 'RO ', '284', 'Zahoreni'),
2703
+ (2674, 'RO ', '284', 'Zaicesti'),
2704
+ (2675, 'RO ', '284', 'Zlatunoaia'),
2705
+ (2676, 'RO ', '284', 'Zoitani'),
2706
+ (2677, 'RO ', '286', 'Agaua'),
2707
+ (2678, 'RO ', '286', 'Albina'),
2708
+ (2679, 'RO ', '286', 'Ariciu'),
2709
+ (2680, 'RO ', '286', 'Baldovinesti'),
2710
+ (2681, 'RO ', '286', 'Bandoiu'),
2711
+ (2682, 'RO ', '286', 'Baraganul'),
2712
+ (2683, 'RO ', '286', 'Batogu'),
2713
+ (2684, 'RO ', '286', 'Berlesti'),
2714
+ (2685, 'RO ', '286', 'Bertestii de Jos'),
2715
+ (2686, 'RO ', '286', 'Bertestii de Sus'),
2716
+ (2687, 'RO ', '286', 'Bordei Verde'),
2717
+ (2688, 'RO ', '286', 'Braila'),
2718
+ (2689, 'RO ', '286', 'Bratesu Vechi'),
2719
+ (2690, 'RO ', '286', 'Bumbacari'),
2720
+ (2691, 'RO ', '286', 'Caineni-Bai'),
2721
+ (2692, 'RO ', '286', 'Caldarusa'),
2722
+ (2693, 'RO ', '286', 'Cazasu'),
2723
+ (2694, 'RO ', '286', 'Chichinetu'),
2724
+ (2695, 'RO ', '286', 'Chioibasesti'),
2725
+ (2696, 'RO ', '286', 'Chiscani'),
2726
+ (2697, 'RO ', '286', 'Ciocile'),
2727
+ (2698, 'RO ', '286', 'Ciresu'),
2728
+ (2699, 'RO ', '286', 'Coltea'),
2729
+ (2700, 'RO ', '286', 'Comaneasca'),
2730
+ (2701, 'RO ', '286', 'Constantin Gabrielescu'),
2731
+ (2702, 'RO ', '286', 'Constantinesti'),
2732
+ (2703, 'RO ', '286', 'Corbeni'),
2733
+ (2704, 'RO ', '286', 'Corbu Nou'),
2734
+ (2705, 'RO ', '286', 'Corbu Vechi'),
2735
+ (2706, 'RO ', '286', 'Cotu Lung'),
2736
+ (2707, 'RO ', '286', 'Custura'),
2737
+ (2708, 'RO ', '286', 'Cuza Voda (Salcia Tudor)'),
2738
+ (2709, 'RO ', '286', 'Cuza Voda (Stancuta)'),
2739
+ (2710, 'RO ', '286', 'Dedulesti'),
2740
+ (2711, 'RO ', '286', 'Desirati'),
2741
+ (2712, 'RO ', '286', 'Drogu'),
2742
+ (2713, 'RO ', '286', 'Dudescu'),
2743
+ (2714, 'RO ', '286', 'Dudesti'),
2744
+ (2715, 'RO ', '286', 'Esna'),
2745
+ (2716, 'RO ', '286', 'Faurei'),
2746
+ (2717, 'RO ', '286', 'Faurei-Sat'),
2747
+ (2718, 'RO ', '286', 'Filipesti'),
2748
+ (2719, 'RO ', '286', 'Filiu'),
2749
+ (2720, 'RO ', '286', 'Florica'),
2750
+ (2721, 'RO ', '286', 'Frecatei'),
2751
+ (2722, 'RO ', '286', 'Galbenu'),
2752
+ (2723, 'RO ', '286', 'Gara Ianca'),
2753
+ (2724, 'RO ', '286', 'Gavani'),
2754
+ (2725, 'RO ', '286', 'Gemenele'),
2755
+ (2726, 'RO ', '286', 'Gradistea'),
2756
+ (2727, 'RO ', '286', 'Gropeni'),
2757
+ (2728, 'RO ', '286', 'Gulianca'),
2758
+ (2729, 'RO ', '286', 'Gura Calmatui'),
2759
+ (2730, 'RO ', '286', 'Gura Garlutei'),
2760
+ (2731, 'RO ', '286', 'Gurguieti'),
2761
+ (2732, 'RO ', '286', 'Horia'),
2762
+ (2733, 'RO ', '286', 'Ianca'),
2763
+ (2734, 'RO ', '286', 'Ibrianu'),
2764
+ (2735, 'RO ', '286', 'Insuratei'),
2765
+ (2736, 'RO ', '286', 'Jirlau'),
2766
+ (2737, 'RO ', '286', 'Jugureanu'),
2767
+ (2738, 'RO ', '286', 'Lacu Rezii'),
2768
+ (2739, 'RO ', '286', 'Lacu Sarat'),
2769
+ (2740, 'RO ', '286', 'Lanurile'),
2770
+ (2741, 'RO ', '286', 'Latinu'),
2771
+ (2742, 'RO ', '286', 'Liscoteanca'),
2772
+ (2743, 'RO ', '286', 'Maraloiu'),
2773
+ (2744, 'RO ', '286', 'Marasu'),
2774
+ (2745, 'RO ', '286', 'Martacesti'),
2775
+ (2746, 'RO ', '286', 'Maxineni'),
2776
+ (2747, 'RO ', '286', 'Mihai Bravu'),
2777
+ (2748, 'RO ', '286', 'Mihail Kogalniceanu (Ramnicelu)'),
2778
+ (2749, 'RO ', '286', 'Mihail Kogalniceanu (sutesti)'),
2779
+ (2750, 'RO ', '286', 'Mircea Voda'),
2780
+ (2751, 'RO ', '286', 'Movila Miresii'),
2781
+ (2752, 'RO ', '286', 'Muchea'),
2782
+ (2753, 'RO ', '286', 'Oancea'),
2783
+ (2754, 'RO ', '286', 'Odaieni'),
2784
+ (2755, 'RO ', '286', 'Olaneasca'),
2785
+ (2756, 'RO ', '286', 'Oprisenesti'),
2786
+ (2757, 'RO ', '286', 'Pantecani'),
2787
+ (2758, 'RO ', '286', 'Perisoru'),
2788
+ (2759, 'RO ', '286', 'Pietroiu'),
2789
+ (2760, 'RO ', '286', 'Pitulati'),
2790
+ (2761, 'RO ', '286', 'Plasoiu'),
2791
+ (2762, 'RO ', '286', 'Plopi'),
2792
+ (2763, 'RO ', '286', 'Plopu'),
2793
+ (2764, 'RO ', '286', 'Polizesti'),
2794
+ (2765, 'RO ', '286', 'Pribeagu'),
2795
+ (2766, 'RO ', '286', 'Racovita'),
2796
+ (2767, 'RO ', '286', 'Ramnicelu'),
2797
+ (2768, 'RO ', '286', 'Romanu'),
2798
+ (2769, 'RO ', '286', 'Rosiori'),
2799
+ (2770, 'RO ', '286', 'Salcia'),
2800
+ (2771, 'RO ', '286', 'Salcia Tudor'),
2801
+ (2772, 'RO ', '286', 'Satuc'),
2802
+ (2773, 'RO ', '286', 'Scarlatesti'),
2803
+ (2774, 'RO ', '286', 'Scortaru Nou'),
2804
+ (2775, 'RO ', '286', 'Scortaru Vechi'),
2805
+ (2776, 'RO ', '286', 'Sihleanu'),
2806
+ (2777, 'RO ', '286', 'Silistea'),
2807
+ (2778, 'RO ', '286', 'Silistraru'),
2808
+ (2779, 'RO ', '286', 'Spiru Haret'),
2809
+ (2780, 'RO ', '286', 'Stanca'),
2810
+ (2781, 'RO ', '286', 'Stancuta'),
2811
+ (2782, 'RO ', '286', 'Surdila-Gaiseanca'),
2812
+ (2783, 'RO ', '286', 'Surdila-Greci'),
2813
+ (2784, 'RO ', '286', 'Sutesti'),
2814
+ (2785, 'RO ', '286', 'Tacau'),
2815
+ (2786, 'RO ', '286', 'Tarlele Filiu'),
2816
+ (2787, 'RO ', '286', 'Tataru'),
2817
+ (2788, 'RO ', '286', 'Tepes Voda'),
2818
+ (2789, 'RO ', '286', 'Tichilesti'),
2819
+ (2790, 'RO ', '286', 'Titcov'),
2820
+ (2791, 'RO ', '286', 'Traian'),
2821
+ (2792, 'RO ', '286', 'Tudor Vladimirescu'),
2822
+ (2793, 'RO ', '286', 'Tufesti'),
2823
+ (2794, 'RO ', '286', 'Ulmu'),
2824
+ (2795, 'RO ', '286', 'Unirea'),
2825
+ (2796, 'RO ', '286', 'Urleasca'),
2826
+ (2797, 'RO ', '286', 'Vadeni'),
2827
+ (2798, 'RO ', '286', 'Valea Calmatuiului'),
2828
+ (2799, 'RO ', '286', 'Valea Canepii'),
2829
+ (2800, 'RO ', '286', 'Varsatura'),
2830
+ (2801, 'RO ', '286', 'Victoria'),
2831
+ (2802, 'RO ', '286', 'Visani'),
2832
+ (2803, 'RO ', '286', 'Viziru'),
2833
+ (2804, 'RO ', '286', 'Vultureni'),
2834
+ (2805, 'RO ', '286', 'Zavoaia'),
2835
+ (2806, 'RO ', '285', 'Acris'),
2836
+ (2807, 'RO ', '285', 'Apata'),
2837
+ (2808, 'RO ', '285', 'Arini'),
2838
+ (2809, 'RO ', '285', 'Augustin'),
2839
+ (2810, 'RO ', '285', 'Barcut'),
2840
+ (2811, 'RO ', '285', 'Beclean'),
2841
+ (2812, 'RO ', '285', 'Beia'),
2842
+ (2813, 'RO ', '285', 'Berivoi'),
2843
+ (2814, 'RO ', '285', 'Bod'),
2844
+ (2815, 'RO ', '285', 'Bogata Olteana'),
2845
+ (2816, 'RO ', '285', 'Boholt'),
2846
+ (2817, 'RO ', '285', 'Bran'),
2847
+ (2818, 'RO ', '285', 'Brasov'),
2848
+ (2819, 'RO ', '285', 'Breaza'),
2849
+ (2820, 'RO ', '285', 'Bucium'),
2850
+ (2821, 'RO ', '285', 'Budila'),
2851
+ (2822, 'RO ', '285', 'Bunesti'),
2852
+ (2823, 'RO ', '285', 'Buzaiel'),
2853
+ (2824, 'RO ', '285', 'Calbor'),
2854
+ (2825, 'RO ', '285', 'Carpinis'),
2855
+ (2826, 'RO ', '285', 'Cata'),
2856
+ (2827, 'RO ', '285', 'Cheia'),
2857
+ (2828, 'RO ', '285', 'Cincsor'),
2858
+ (2829, 'RO ', '285', 'Cincu'),
2859
+ (2830, 'RO ', '285', 'Cobor'),
2860
+ (2831, 'RO ', '285', 'Codlea'),
2861
+ (2832, 'RO ', '285', 'Colonia 1 Mai'),
2862
+ (2833, 'RO ', '285', 'Colonia Bod'),
2863
+ (2834, 'RO ', '285', 'Colonia Reconstructia'),
2864
+ (2835, 'RO ', '285', 'Comana'),
2865
+ (2836, 'RO ', '285', 'Comana de Jos'),
2866
+ (2837, 'RO ', '285', 'Comana de Sus'),
2867
+ (2838, 'RO ', '285', 'Copacel'),
2868
+ (2839, 'RO ', '285', 'Corbi'),
2869
+ (2840, 'RO ', '285', 'Crihalma'),
2870
+ (2841, 'RO ', '285', 'Cristian'),
2871
+ (2842, 'RO ', '285', 'Crit'),
2872
+ (2843, 'RO ', '285', 'Crizbav'),
2873
+ (2844, 'RO ', '285', 'Cuciulata'),
2874
+ (2845, 'RO ', '285', 'Cutus'),
2875
+ (2846, 'RO ', '285', 'Dacia'),
2876
+ (2847, 'RO ', '285', 'Daisoara'),
2877
+ (2848, 'RO ', '285', 'Dejani'),
2878
+ (2849, 'RO ', '285', 'Dopca'),
2879
+ (2850, 'RO ', '285', 'Dragus'),
2880
+ (2851, 'RO ', '285', 'Drauseni'),
2881
+ (2852, 'RO ', '285', 'Dridif'),
2882
+ (2853, 'RO ', '285', 'Dumbravita'),
2883
+ (2854, 'RO ', '285', 'Fagaras'),
2884
+ (2855, 'RO ', '285', 'Fantana'),
2885
+ (2856, 'RO ', '285', 'Feldioara'),
2886
+ (2857, 'RO ', '285', 'Feldioara (Ucea)'),
2887
+ (2858, 'RO ', '285', 'Felmer'),
2888
+ (2859, 'RO ', '285', 'Fiser'),
2889
+ (2860, 'RO ', '285', 'Fundata'),
2890
+ (2861, 'RO ', '285', 'Fundatica'),
2891
+ (2862, 'RO ', '285', 'Ghimbav'),
2892
+ (2863, 'RO ', '285', 'Granari'),
2893
+ (2864, 'RO ', '285', 'Grid'),
2894
+ (2865, 'RO ', '285', 'Gura Vaii'),
2895
+ (2866, 'RO ', '285', 'Halchiu'),
2896
+ (2867, 'RO ', '285', 'Halmeag'),
2897
+ (2868, 'RO ', '285', 'Harman'),
2898
+ (2869, 'RO ', '285', 'Harseni'),
2899
+ (2870, 'RO ', '285', 'Hoghiz'),
2900
+ (2871, 'RO ', '285', 'Holbav'),
2901
+ (2872, 'RO ', '285', 'Homorod'),
2902
+ (2873, 'RO ', '285', 'Hurez'),
2903
+ (2874, 'RO ', '285', 'Iasi'),
2904
+ (2875, 'RO ', '285', 'Ileni'),
2905
+ (2876, 'RO ', '285', 'Ionesti'),
2906
+ (2877, 'RO ', '285', 'Jibert'),
2907
+ (2878, 'RO ', '285', 'Jimbor'),
2908
+ (2879, 'RO ', '285', 'Lisa'),
2909
+ (2880, 'RO ', '285', 'Lovnic'),
2910
+ (2881, 'RO ', '285', 'Ludisor'),
2911
+ (2882, 'RO ', '285', 'Lunca Calnicului'),
2912
+ (2883, 'RO ', '285', 'Lupsa'),
2913
+ (2884, 'RO ', '285', 'Luta'),
2914
+ (2885, 'RO ', '285', 'Maierus'),
2915
+ (2886, 'RO ', '285', 'Mandra'),
2916
+ (2887, 'RO ', '285', 'Margineni'),
2917
+ (2888, 'RO ', '285', 'Mateias'),
2918
+ (2889, 'RO ', '285', 'Mercheasa '),
2919
+ (2890, 'RO ', '285', 'Mesendorf'),
2920
+ (2891, 'RO ', '285', 'Moieciu'),
2921
+ (2892, 'RO ', '285', 'Moieciu de Jos'),
2922
+ (2893, 'RO ', '285', 'Moieciu de Sus'),
2923
+ (2894, 'RO ', '285', 'Ohaba'),
2924
+ (2895, 'RO ', '285', 'Oltet'),
2925
+ (2896, 'RO ', '285', 'Ormenis'),
2926
+ (2897, 'RO ', '285', 'Palos'),
2927
+ (2898, 'RO ', '285', 'Paltin'),
2928
+ (2899, 'RO ', '285', 'Parau'),
2929
+ (2900, 'RO ', '285', 'Paraul Rece'),
2930
+ (2901, 'RO ', '285', 'Persani'),
2931
+ (2902, 'RO ', '285', 'Pestera'),
2932
+ (2903, 'RO ', '285', 'Podu Oltului'),
2933
+ (2904, 'RO ', '285', 'Poiana Brasov'),
2934
+ (2905, 'RO ', '285', 'Poiana Marului'),
2935
+ (2906, 'RO ', '285', 'Pojorta'),
2936
+ (2907, 'RO ', '285', 'Predeal'),
2937
+ (2908, 'RO ', '285', 'Predelut'),
2938
+ (2909, 'RO ', '285', 'Prejmer'),
2939
+ (2910, 'RO ', '285', 'Purcareni'),
2940
+ (2911, 'RO ', '285', 'Racos'),
2941
+ (2912, 'RO ', '285', 'Rasnov'),
2942
+ (2913, 'RO ', '285', 'Rasnov Romacril'),
2943
+ (2914, 'RO ', '285', 'Rausor'),
2944
+ (2915, 'RO ', '285', 'Recea'),
2945
+ (2916, 'RO ', '285', 'Roades'),
2946
+ (2917, 'RO ', '285', 'Rodbav'),
2947
+ (2918, 'RO ', '285', 'Rotbav'),
2948
+ (2919, 'RO ', '285', 'Rucar'),
2949
+ (2920, 'RO ', '285', 'Rupea'),
2950
+ (2921, 'RO ', '285', 'Sacele'),
2951
+ (2922, 'RO ', '285', 'Sambata de Jos'),
2952
+ (2923, 'RO ', '285', 'Sambata de Sus'),
2953
+ (2924, 'RO ', '285', 'Sanpetru'),
2954
+ (2925, 'RO ', '285', 'Sasciori'),
2955
+ (2926, 'RO ', '285', 'Satu Nou'),
2956
+ (2927, 'RO ', '285', 'Savastreni'),
2957
+ (2928, 'RO ', '285', 'Sebes'),
2958
+ (2929, 'RO ', '285', 'Selistat'),
2959
+ (2930, 'RO ', '285', 'Sercaia'),
2960
+ (2931, 'RO ', '285', 'Sercaita'),
2961
+ (2932, 'RO ', '285', 'Simon'),
2962
+ (2933, 'RO ', '285', 'Sinca'),
2963
+ (2934, 'RO ', '285', 'Sinca Noua'),
2964
+ (2935, 'RO ', '285', 'Sinca Veche'),
2965
+ (2936, 'RO ', '285', 'Sirnea'),
2966
+ (2937, 'RO ', '285', 'Soars'),
2967
+ (2938, 'RO ', '285', 'Sohodol'),
2968
+ (2939, 'RO ', '285', 'sona'),
2969
+ (2940, 'RO ', '285', 'Statiunea Climaterica Sambata'),
2970
+ (2941, 'RO ', '285', 'Stupinii Prejmerului'),
2971
+ (2942, 'RO ', '285', 'Tarlungeni'),
2972
+ (2943, 'RO ', '285', 'Teliu'),
2973
+ (2944, 'RO ', '285', 'Ticusu'),
2974
+ (2945, 'RO ', '285', 'Ticusu Nou'),
2975
+ (2946, 'RO ', '285', 'Ticusu Vechi'),
2976
+ (2947, 'RO ', '285', 'Timisu de jos'),
2977
+ (2948, 'RO ', '285', 'Timisu de sus'),
2978
+ (2949, 'RO ', '285', 'Toarcla'),
2979
+ (2950, 'RO ', '285', 'Toderita'),
2980
+ (2951, 'RO ', '285', 'Tohanu Nou'),
2981
+ (2952, 'RO ', '285', 'Ucea'),
2982
+ (2953, 'RO ', '285', 'Ucea de jos'),
2983
+ (2954, 'RO ', '285', 'Ucea de Sus'),
2984
+ (2955, 'RO ', '285', 'Ungra'),
2985
+ (2956, 'RO ', '285', 'Vad'),
2986
+ (2957, 'RO ', '285', 'Valeni'),
2987
+ (2958, 'RO ', '285', 'Vama Buzaului'),
2988
+ (2959, 'RO ', '285', 'Venetia de Jos'),
2989
+ (2960, 'RO ', '285', 'Venetia de Sus'),
2990
+ (2961, 'RO ', '285', 'Victoria'),
2991
+ (2962, 'RO ', '285', 'Viscri'),
2992
+ (2963, 'RO ', '285', 'Vistea'),
2993
+ (2964, 'RO ', '285', 'Vistea de Jos'),
2994
+ (2965, 'RO ', '285', 'Vistea de Sus'),
2995
+ (2966, 'RO ', '285', 'Vistisoara'),
2996
+ (2967, 'RO ', '285', 'Vladeni'),
2997
+ (2968, 'RO ', '285', 'Voila'),
2998
+ (2969, 'RO ', '285', 'Voivodeni'),
2999
+ (2970, 'RO ', '285', 'Vulcan'),
3000
+ (2971, 'RO ', '285', 'Zarnesti'),
3001
+ (2972, 'RO ', '285', 'Zizin'),
3002
+ (2973, 'RO ', '287', 'Bucuresti'),
3003
+ (2974, 'RO ', '288', 'Albesti'),
3004
+ (2975, 'RO ', '288', 'Aldeni'),
3005
+ (2976, 'RO ', '288', 'Alexandru Odobescu'),
3006
+ (2977, 'RO ', '288', 'Aliceni'),
3007
+ (2978, 'RO ', '288', 'Alunis'),
3008
+ (2979, 'RO ', '288', 'Amara'),
3009
+ (2980, 'RO ', '288', 'Amaru'),
3010
+ (2981, 'RO ', '288', 'Anini'),
3011
+ (2982, 'RO ', '288', 'Arbanasi'),
3012
+ (2983, 'RO ', '288', 'Arcanu'),
3013
+ (2984, 'RO ', '288', 'Babeni'),
3014
+ (2985, 'RO ', '288', 'Baceni'),
3015
+ (2986, 'RO ', '288', 'Badeni'),
3016
+ (2987, 'RO ', '288', 'Badila'),
3017
+ (2988, 'RO ', '288', 'Baesti'),
3018
+ (2989, 'RO ', '288', 'Baile'),
3019
+ (2990, 'RO ', '288', 'Bajani'),
3020
+ (2991, 'RO ', '288', 'Balaceanu'),
3021
+ (2992, 'RO ', '288', 'Balaia'),
3022
+ (2993, 'RO ', '288', 'Balanesti'),
3023
+ (2994, 'RO ', '288', 'Balhacu'),
3024
+ (2995, 'RO ', '288', 'Balta Alba'),
3025
+ (2996, 'RO ', '288', 'Balta Tocila'),
3026
+ (2997, 'RO ', '288', 'Baltagari'),
3027
+ (2998, 'RO ', '288', 'Baltareti'),
3028
+ (2999, 'RO ', '288', 'Balteni'),
3029
+ (3000, 'RO ', '288', 'Banita'),
3030
+ (3001, 'RO ', '288', 'Barasti'),
3031
+ (3002, 'RO ', '288', 'Barbuncesti'),
3032
+ (3003, 'RO ', '288', 'Basca Chiojdului'),
3033
+ (3004, 'RO ', '288', 'Basca Rozilei'),
3034
+ (3005, 'RO ', '288', 'Bascenii de Jos'),
3035
+ (3006, 'RO ', '288', 'Bascenii de Sus'),
3036
+ (3007, 'RO ', '288', 'Beceni'),
3037
+ (3008, 'RO ', '288', 'Beciu'),
3038
+ (3009, 'RO ', '288', 'Begu'),
3039
+ (3010, 'RO ', '288', 'Beilic'),
3040
+ (3011, 'RO ', '288', 'Bentu'),
3041
+ (3012, 'RO ', '288', 'Berca'),
3042
+ (3013, 'RO ', '288', 'Bercesti'),
3043
+ (3014, 'RO ', '288', 'Beslii'),
3044
+ (3015, 'RO ', '288', 'Bisoca'),
3045
+ (3016, 'RO ', '288', 'Blajani'),
3046
+ (3017, 'RO ', '288', 'Boboc'),
3047
+ (3018, 'RO ', '288', 'Bodinesti'),
3048
+ (3019, 'RO ', '288', 'Boldu'),
3049
+ (3020, 'RO ', '288', 'Bordusani'),
3050
+ (3021, 'RO ', '288', 'Bozioru'),
3051
+ (3022, 'RO ', '288', 'Bradeanca'),
3052
+ (3023, 'RO ', '288', 'Bradeanu'),
3053
+ (3024, 'RO ', '288', 'Braesti'),
3054
+ (3025, 'RO ', '288', 'Bragareasa'),
3055
+ (3026, 'RO ', '288', 'Bratilesti'),
3056
+ (3027, 'RO ', '288', 'Breaza'),
3057
+ (3028, 'RO ', '288', 'Brebu'),
3058
+ (3029, 'RO ', '288', 'Buda'),
3059
+ (3030, 'RO ', '288', 'Buda Craciunesti'),
3060
+ (3031, 'RO ', '288', 'Budesti'),
3061
+ (3032, 'RO ', '288', 'Budisteni');
3062
+ INSERT INTO `directory_country_region_city` (`city_id`, `country_id`, `region_id`, `cityname`) VALUES
3063
+ (3033, 'RO ', '288', 'Budrea'),
3064
+ (3034, 'RO ', '288', 'Buduile'),
3065
+ (3035, 'RO ', '288', 'Bustea'),
3066
+ (3036, 'RO ', '288', 'Buzau'),
3067
+ (3037, 'RO ', '288', 'C.A. Rosetti'),
3068
+ (3038, 'RO ', '288', 'Caldarasti'),
3069
+ (3039, 'RO ', '288', 'Caldarusa'),
3070
+ (3040, 'RO ', '288', 'Caldaruseanca'),
3071
+ (3041, 'RO ', '288', 'Calea Chiojdului'),
3072
+ (3042, 'RO ', '288', 'Caltesti'),
3073
+ (3043, 'RO ', '288', 'Caltuna'),
3074
+ (3044, 'RO ', '288', 'Calvini'),
3075
+ (3045, 'RO ', '288', 'Campeni'),
3076
+ (3046, 'RO ', '288', 'Campulungeanca'),
3077
+ (3047, 'RO ', '288', 'Candesti'),
3078
+ (3048, 'RO ', '288', 'Canesti'),
3079
+ (3049, 'RO ', '288', 'Capatanesti'),
3080
+ (3050, 'RO ', '288', 'Capu Satului'),
3081
+ (3051, 'RO ', '288', 'Caragele'),
3082
+ (3052, 'RO ', '288', 'Caratnau de Jos'),
3083
+ (3053, 'RO ', '288', 'Caratnau de Sus'),
3084
+ (3054, 'RO ', '288', 'Carligu Mare'),
3085
+ (3055, 'RO ', '288', 'Carligu Mic'),
3086
+ (3056, 'RO ', '288', 'Carlomanesti'),
3087
+ (3057, 'RO ', '288', 'Carpinistea'),
3088
+ (3058, 'RO ', '288', 'Casoca'),
3089
+ (3059, 'RO ', '288', 'Casota'),
3090
+ (3060, 'RO ', '288', 'Catiasu'),
3091
+ (3061, 'RO ', '288', 'Catina'),
3092
+ (3062, 'RO ', '288', 'Cernatesti'),
3093
+ (3063, 'RO ', '288', 'Chiliile'),
3094
+ (3064, 'RO ', '288', 'Chiojdu'),
3095
+ (3065, 'RO ', '288', 'Chirlesti'),
3096
+ (3066, 'RO ', '288', 'Cilibia'),
3097
+ (3067, 'RO ', '288', 'Ciobanoaia'),
3098
+ (3068, 'RO ', '288', 'Ciocanesti'),
3099
+ (3069, 'RO ', '288', 'Cioranca'),
3100
+ (3070, 'RO ', '288', 'Ciresu'),
3101
+ (3071, 'RO ', '288', 'Cislau'),
3102
+ (3072, 'RO ', '288', 'Ciuta'),
3103
+ (3073, 'RO ', '288', 'Clondiru'),
3104
+ (3074, 'RO ', '288', 'Clondiru de Sus'),
3105
+ (3075, 'RO ', '288', 'Coca-Antimiresti'),
3106
+ (3076, 'RO ', '288', 'Coca-Niculesti'),
3107
+ (3077, 'RO ', '288', 'Cocarceni'),
3108
+ (3078, 'RO ', '288', 'Cochirleanca'),
3109
+ (3079, 'RO ', '288', 'Coconari'),
3110
+ (3080, 'RO ', '288', 'Cojanu'),
3111
+ (3081, 'RO ', '288', 'Colibasi'),
3112
+ (3082, 'RO ', '288', 'Coltaneni'),
3113
+ (3083, 'RO ', '288', 'Colteni'),
3114
+ (3084, 'RO ', '288', 'Colti'),
3115
+ (3085, 'RO ', '288', 'Coltii de Jos'),
3116
+ (3086, 'RO ', '288', 'Coltu Pietrii'),
3117
+ (3087, 'RO ', '288', 'Comisoaia'),
3118
+ (3088, 'RO ', '288', 'Corbu (Catina)'),
3119
+ (3089, 'RO ', '288', 'Corbu (Glodeanu-Silistea)'),
3120
+ (3090, 'RO ', '288', 'Corneanu'),
3121
+ (3091, 'RO ', '288', 'Costesti'),
3122
+ (3092, 'RO ', '288', 'Costieni'),
3123
+ (3093, 'RO ', '288', 'Cotatcu'),
3124
+ (3094, 'RO ', '288', 'Cotorca'),
3125
+ (3095, 'RO ', '288', 'Cotu Ciorii'),
3126
+ (3096, 'RO ', '288', 'Cozieni'),
3127
+ (3097, 'RO ', '288', 'Crang'),
3128
+ (3098, 'RO ', '288', 'Crevelesti'),
3129
+ (3099, 'RO ', '288', 'Cuculeasa'),
3130
+ (3100, 'RO ', '288', 'Curcanesti'),
3131
+ (3101, 'RO ', '288', 'Curmatura'),
3132
+ (3102, 'RO ', '288', 'Dalma'),
3133
+ (3103, 'RO ', '288', 'Dambroca'),
3134
+ (3104, 'RO ', '288', 'Dara'),
3135
+ (3105, 'RO ', '288', 'Dascalesti'),
3136
+ (3106, 'RO ', '288', 'Dealu Viei'),
3137
+ (3107, 'RO ', '288', 'Dedulesti'),
3138
+ (3108, 'RO ', '288', 'Deleni'),
3139
+ (3109, 'RO ', '288', 'Dobrilesti'),
3140
+ (3110, 'RO ', '288', 'Dogari'),
3141
+ (3111, 'RO ', '288', 'Dulbanu'),
3142
+ (3112, 'RO ', '288', 'Fantanele (Margaritesti)'),
3143
+ (3113, 'RO ', '288', 'Fantanele (Naeni)'),
3144
+ (3114, 'RO ', '288', 'Fata lui Nan'),
3145
+ (3115, 'RO ', '288', 'Fintesti'),
3146
+ (3116, 'RO ', '288', 'Fisici'),
3147
+ (3117, 'RO ', '288', 'Floresti'),
3148
+ (3118, 'RO ', '288', 'Florica'),
3149
+ (3119, 'RO ', '288', 'Focsanei'),
3150
+ (3120, 'RO ', '288', 'Frasinet'),
3151
+ (3121, 'RO ', '288', 'Fulga'),
3152
+ (3122, 'RO ', '288', 'Fundata'),
3153
+ (3123, 'RO ', '288', 'Fundaturile'),
3154
+ (3124, 'RO ', '288', 'Fundeni'),
3155
+ (3125, 'RO ', '288', 'Furtunesti'),
3156
+ (3126, 'RO ', '288', 'Gageni'),
3157
+ (3127, 'RO ', '288', 'Galbinasi'),
3158
+ (3128, 'RO ', '288', 'Gara Bobocu'),
3159
+ (3129, 'RO ', '288', 'Gara Cilibia'),
3160
+ (3130, 'RO ', '288', 'Gavanele'),
3161
+ (3131, 'RO ', '288', 'Gavanesti'),
3162
+ (3132, 'RO ', '288', 'Gheraseni'),
3163
+ (3133, 'RO ', '288', 'Ghergheasa'),
3164
+ (3134, 'RO ', '288', 'Ghiocari'),
3165
+ (3135, 'RO ', '288', 'Ghizdita'),
3166
+ (3136, 'RO ', '288', 'Glodeanu Sarat'),
3167
+ (3137, 'RO ', '288', 'Glodeanu-Silistea'),
3168
+ (3138, 'RO ', '288', 'Glodu-Petcari'),
3169
+ (3139, 'RO ', '288', 'Glodurile'),
3170
+ (3140, 'RO ', '288', 'Goicelu'),
3171
+ (3141, 'RO ', '288', 'Goidesti'),
3172
+ (3142, 'RO ', '288', 'Golu Grabicina'),
3173
+ (3143, 'RO ', '288', 'Gomoesti'),
3174
+ (3144, 'RO ', '288', 'Gontesti'),
3175
+ (3145, 'RO ', '288', 'Gorani'),
3176
+ (3146, 'RO ', '288', 'Gornet'),
3177
+ (3147, 'RO ', '288', 'Grabicina de Jos'),
3178
+ (3148, 'RO ', '288', 'Grabicina de Sus'),
3179
+ (3149, 'RO ', '288', 'Grajdana'),
3180
+ (3150, 'RO ', '288', 'Grebanu'),
3181
+ (3151, 'RO ', '288', 'Greceanca'),
3182
+ (3152, 'RO ', '288', 'Gresia'),
3183
+ (3153, 'RO ', '288', 'Grosani'),
3184
+ (3154, 'RO ', '288', 'Gura Badicului'),
3185
+ (3155, 'RO ', '288', 'Gura Bascei'),
3186
+ (3156, 'RO ', '288', 'Gura Calnaului'),
3187
+ (3157, 'RO ', '288', 'Gura Dimienii'),
3188
+ (3158, 'RO ', '288', 'Gura Saratii'),
3189
+ (3159, 'RO ', '288', 'Gura Siriului'),
3190
+ (3160, 'RO ', '288', 'Gura Teghii'),
3191
+ (3161, 'RO ', '288', 'Gura Vaii'),
3192
+ (3162, 'RO ', '288', 'Hales'),
3193
+ (3163, 'RO ', '288', 'Heliade Radulescu'),
3194
+ (3164, 'RO ', '288', 'Homesti'),
3195
+ (3165, 'RO ', '288', 'Istrita de Jos'),
3196
+ (3166, 'RO ', '288', 'Ivanetu'),
3197
+ (3167, 'RO ', '288', 'Izvoarele'),
3198
+ (3168, 'RO ', '288', 'Izvoranu'),
3199
+ (3169, 'RO ', '288', 'Izvoru (Cozieni)'),
3200
+ (3170, 'RO ', '288', 'Izvoru (Tisau)'),
3201
+ (3171, 'RO ', '288', 'Izvoru Dulce (Beceni)'),
3202
+ (3172, 'RO ', '288', 'Izvoru Dulce (Merei)'),
3203
+ (3173, 'RO ', '288', 'Jghiab'),
3204
+ (3174, 'RO ', '288', 'Joseni'),
3205
+ (3175, 'RO ', '288', 'Lacu'),
3206
+ (3176, 'RO ', '288', 'Lacu cu Anini'),
3207
+ (3177, 'RO ', '288', 'Lacu Sinaia'),
3208
+ (3178, 'RO ', '288', 'Lacurile'),
3209
+ (3179, 'RO ', '288', 'Lanurile'),
3210
+ (3180, 'RO ', '288', 'Largu'),
3211
+ (3181, 'RO ', '288', 'Leiculesti'),
3212
+ (3182, 'RO ', '288', 'Lera'),
3213
+ (3183, 'RO ', '288', 'Limpezis'),
3214
+ (3184, 'RO ', '288', 'Lipanescu'),
3215
+ (3185, 'RO ', '288', 'Lipia'),
3216
+ (3186, 'RO ', '288', 'Livada'),
3217
+ (3187, 'RO ', '288', 'Livada Mica'),
3218
+ (3188, 'RO ', '288', 'Lopatareasa'),
3219
+ (3189, 'RO ', '288', 'Lopatari'),
3220
+ (3190, 'RO ', '288', 'Luciu'),
3221
+ (3191, 'RO ', '288', 'Lunca (Amaru)'),
3222
+ (3192, 'RO ', '288', 'Lunca (C.A. Rosetti)'),
3223
+ (3193, 'RO ', '288', 'Lunca (Patarlagele)'),
3224
+ (3194, 'RO ', '288', 'Lunca (Puiesti)'),
3225
+ (3195, 'RO ', '288', 'Lunca Frumoasa'),
3226
+ (3196, 'RO ', '288', 'Lunca Jaristei'),
3227
+ (3197, 'RO ', '288', 'Lunca Priporului'),
3228
+ (3198, 'RO ', '288', 'Luncile'),
3229
+ (3199, 'RO ', '288', 'Lungesti'),
3230
+ (3200, 'RO ', '288', 'Macrina'),
3231
+ (3201, 'RO ', '288', 'Magura'),
3232
+ (3202, 'RO ', '288', 'Maguricea'),
3233
+ (3203, 'RO ', '288', 'Manasia'),
3234
+ (3204, 'RO ', '288', 'Manastirea'),
3235
+ (3205, 'RO ', '288', 'Manastirea Ratesti'),
3236
+ (3206, 'RO ', '288', 'Manzalesti'),
3237
+ (3207, 'RO ', '288', 'Manzu'),
3238
+ (3208, 'RO ', '288', 'Maracineni'),
3239
+ (3209, 'RO ', '288', 'Margaritesti'),
3240
+ (3210, 'RO ', '288', 'Margariti'),
3241
+ (3211, 'RO ', '288', 'Margineanu'),
3242
+ (3212, 'RO ', '288', 'Maruntisu'),
3243
+ (3213, 'RO ', '288', 'Matesti'),
3244
+ (3214, 'RO ', '288', 'Maxenu'),
3245
+ (3215, 'RO ', '288', 'Merei'),
3246
+ (3216, 'RO ', '288', 'Mierea'),
3247
+ (3217, 'RO ', '288', 'Mihailesti'),
3248
+ (3218, 'RO ', '288', 'Mitropolia'),
3249
+ (3219, 'RO ', '288', 'Mlajet'),
3250
+ (3220, 'RO ', '288', 'Moisica'),
3251
+ (3221, 'RO ', '288', 'Mosesti'),
3252
+ (3222, 'RO ', '288', 'Movila Banului'),
3253
+ (3223, 'RO ', '288', 'Movila Oii'),
3254
+ (3224, 'RO ', '288', 'Movilita'),
3255
+ (3225, 'RO ', '288', 'Mucesti-Danulesti'),
3256
+ (3226, 'RO ', '288', 'Murgesti'),
3257
+ (3227, 'RO ', '288', 'Muscel'),
3258
+ (3228, 'RO ', '288', 'Muscelu Caramanesti'),
3259
+ (3229, 'RO ', '288', 'Muscelusa'),
3260
+ (3230, 'RO ', '288', 'Naeni'),
3261
+ (3231, 'RO ', '288', 'Negosina'),
3262
+ (3232, 'RO ', '288', 'Nehoiasu'),
3263
+ (3233, 'RO ', '288', 'Nehoiu'),
3264
+ (3234, 'RO ', '288', 'Nemertea'),
3265
+ (3235, 'RO ', '288', 'Nenciu'),
3266
+ (3236, 'RO ', '288', 'Nenciulesti'),
3267
+ (3237, 'RO ', '288', 'Nicolesti'),
3268
+ (3238, 'RO ', '288', 'Niculesti'),
3269
+ (3239, 'RO ', '288', 'Niscov'),
3270
+ (3240, 'RO ', '288', 'Nistoresti'),
3271
+ (3241, 'RO ', '288', 'Nucu'),
3272
+ (3242, 'RO ', '288', 'Odaia Banului'),
3273
+ (3243, 'RO ', '288', 'Odaile'),
3274
+ (3244, 'RO ', '288', 'Ograzile'),
3275
+ (3245, 'RO ', '288', 'Ojasca'),
3276
+ (3246, 'RO ', '288', 'Olari'),
3277
+ (3247, 'RO ', '288', 'Olesesti'),
3278
+ (3248, 'RO ', '288', 'Oratia'),
3279
+ (3249, 'RO ', '288', 'Oreavul'),
3280
+ (3250, 'RO ', '288', 'Paclele'),
3281
+ (3251, 'RO ', '288', 'Pacurile'),
3282
+ (3252, 'RO ', '288', 'Padina'),
3283
+ (3253, 'RO ', '288', 'Padurenii'),
3284
+ (3254, 'RO ', '288', 'Palici'),
3285
+ (3255, 'RO ', '288', 'Paltineni'),
3286
+ (3256, 'RO ', '288', 'Paltinis'),
3287
+ (3257, 'RO ', '288', 'Panatau'),
3288
+ (3258, 'RO ', '288', 'Pardosi'),
3289
+ (3259, 'RO ', '288', 'Parjolesti'),
3290
+ (3260, 'RO ', '288', 'Parscov'),
3291
+ (3261, 'RO ', '288', 'Parscovelu'),
3292
+ (3262, 'RO ', '288', 'Patarlagele'),
3293
+ (3263, 'RO ', '288', 'Pestritu'),
3294
+ (3264, 'RO ', '288', 'Petrachesti'),
3295
+ (3265, 'RO ', '288', 'Petrisoru'),
3296
+ (3266, 'RO ', '288', 'Piatra Alba'),
3297
+ (3267, 'RO ', '288', 'Pietraru'),
3298
+ (3268, 'RO ', '288', 'Pietroasa Mica'),
3299
+ (3269, 'RO ', '288', 'Pietroasele'),
3300
+ (3270, 'RO ', '288', 'Pietrosu'),
3301
+ (3271, 'RO ', '288', 'Pinu'),
3302
+ (3272, 'RO ', '288', 'Pitulicea'),
3303
+ (3273, 'RO ', '288', 'Plaisor'),
3304
+ (3274, 'RO ', '288', 'Plaiu Nucului'),
3305
+ (3275, 'RO ', '288', 'Plavatu'),
3306
+ (3276, 'RO ', '288', 'Plescioara'),
3307
+ (3277, 'RO ', '288', 'Plescoi'),
3308
+ (3278, 'RO ', '288', 'Plesesti (Berca)'),
3309
+ (3279, 'RO ', '288', 'Plesesti (Podgoria)'),
3310
+ (3280, 'RO ', '288', 'Plesi'),
3311
+ (3281, 'RO ', '288', 'Plevna'),
3312
+ (3282, 'RO ', '288', 'Plopeasa'),
3313
+ (3283, 'RO ', '288', 'Plostina'),
3314
+ (3284, 'RO ', '288', 'Podgoria'),
3315
+ (3285, 'RO ', '288', 'Podu Muncii'),
3316
+ (3286, 'RO ', '288', 'Poenitele'),
3317
+ (3287, 'RO ', '288', 'Pogoanele'),
3318
+ (3288, 'RO ', '288', 'Pogonele'),
3319
+ (3289, 'RO ', '288', 'Poiana Pletari'),
3320
+ (3290, 'RO ', '288', 'Poiana Valcului'),
3321
+ (3291, 'RO ', '288', 'Poienile'),
3322
+ (3292, 'RO ', '288', 'Policiori'),
3323
+ (3293, 'RO ', '288', 'Posobesti'),
3324
+ (3294, 'RO ', '288', 'Posta (Cilibia)'),
3325
+ (3295, 'RO ', '288', 'Posta (Topliceni)'),
3326
+ (3296, 'RO ', '288', 'Posta Calnau'),
3327
+ (3297, 'RO ', '288', 'Potarnichesti'),
3328
+ (3298, 'RO ', '288', 'Potecu'),
3329
+ (3299, 'RO ', '288', 'Potoceni'),
3330
+ (3300, 'RO ', '288', 'Prosca'),
3331
+ (3301, 'RO ', '288', 'Pruneni'),
3332
+ (3302, 'RO ', '288', 'Puiesti'),
3333
+ (3303, 'RO ', '288', 'Puiestii de Jos'),
3334
+ (3304, 'RO ', '288', 'Puiestii de Sus'),
3335
+ (3305, 'RO ', '288', 'Punga'),
3336
+ (3306, 'RO ', '288', 'Racoviteni'),
3337
+ (3307, 'RO ', '288', 'Raducesti'),
3338
+ (3308, 'RO ', '288', 'Ramnicelu'),
3339
+ (3309, 'RO ', '288', 'Ramnicu Sarat'),
3340
+ (3310, 'RO ', '288', 'Rapile'),
3341
+ (3311, 'RO ', '288', 'Ratesti'),
3342
+ (3312, 'RO ', '288', 'Recea'),
3343
+ (3313, 'RO ', '288', 'Robeasca'),
3344
+ (3314, 'RO ', '288', 'Robesti'),
3345
+ (3315, 'RO ', '288', 'Rosioru'),
3346
+ (3316, 'RO ', '288', 'Rubla'),
3347
+ (3317, 'RO ', '288', 'Ruginoasa'),
3348
+ (3318, 'RO ', '288', 'Runcu'),
3349
+ (3319, 'RO ', '288', 'Rusavat'),
3350
+ (3320, 'RO ', '288', 'Rusetu'),
3351
+ (3321, 'RO ', '288', 'Sageata'),
3352
+ (3322, 'RO ', '288', 'Sahateni'),
3353
+ (3323, 'RO ', '288', 'Salcia'),
3354
+ (3324, 'RO ', '288', 'Salcioara'),
3355
+ (3325, 'RO ', '288', 'Sapoca'),
3356
+ (3326, 'RO ', '288', 'Saranga'),
3357
+ (3327, 'RO ', '288', 'Sarata'),
3358
+ (3328, 'RO ', '288', 'Sarata-Monteoru'),
3359
+ (3329, 'RO ', '288', 'Sarbesti'),
3360
+ (3330, 'RO ', '288', 'Sareni'),
3361
+ (3331, 'RO ', '288', 'Sarile'),
3362
+ (3332, 'RO ', '288', 'Sarile-Catun'),
3363
+ (3333, 'RO ', '288', 'Sarulesti'),
3364
+ (3334, 'RO ', '288', 'Sasenii Noi'),
3365
+ (3335, 'RO ', '288', 'Sasenii pe Vale'),
3366
+ (3336, 'RO ', '288', 'Sasenii Vechi'),
3367
+ (3337, 'RO ', '288', 'Satu Nou (Glodeanu-Silistea)'),
3368
+ (3338, 'RO ', '288', 'Satu Nou (Mihailesti)'),
3369
+ (3339, 'RO ', '288', 'Satu Vechi'),
3370
+ (3340, 'RO ', '288', 'Satuc'),
3371
+ (3341, 'RO ', '288', 'Scaeni'),
3372
+ (3342, 'RO ', '288', 'Scarisoara'),
3373
+ (3343, 'RO ', '288', 'Scarlatesti'),
3374
+ (3344, 'RO ', '288', 'Scorosesti'),
3375
+ (3345, 'RO ', '288', 'Scorteanca'),
3376
+ (3346, 'RO ', '288', 'Scortoasa'),
3377
+ (3347, 'RO ', '288', 'Scurtesti'),
3378
+ (3348, 'RO ', '288', 'Scutelnici'),
3379
+ (3349, 'RO ', '288', 'Sergent Ionel stefan'),
3380
+ (3350, 'RO ', '288', 'Sibiciu de Jos'),
3381
+ (3351, 'RO ', '288', 'Sibiciu de Sus'),
3382
+ (3352, 'RO ', '288', 'Siriu'),
3383
+ (3353, 'RO ', '288', 'Slobozia'),
3384
+ (3354, 'RO ', '288', 'Smardan'),
3385
+ (3355, 'RO ', '288', 'Smeeni'),
3386
+ (3356, 'RO ', '288', 'Smeesti'),
3387
+ (3357, 'RO ', '288', 'Soresti'),
3388
+ (3358, 'RO ', '288', 'Spataru'),
3389
+ (3359, 'RO ', '288', 'Stalpu'),
3390
+ (3360, 'RO ', '288', 'Stancesti'),
3391
+ (3361, 'RO ', '288', 'Stanila'),
3392
+ (3362, 'RO ', '288', 'Stiubei'),
3393
+ (3363, 'RO ', '288', 'Strezeni'),
3394
+ (3364, 'RO ', '288', 'Stroesti'),
3395
+ (3365, 'RO ', '288', 'Suchea'),
3396
+ (3366, 'RO ', '288', 'Suditi (Gheraseni)'),
3397
+ (3367, 'RO ', '288', 'Suditi (Posta Calnau)'),
3398
+ (3368, 'RO ', '288', 'Tabarasti'),
3399
+ (3369, 'RO ', '288', 'Tarcov'),
3400
+ (3370, 'RO ', '288', 'Tarlele'),
3401
+ (3371, 'RO ', '288', 'Tatarligu'),
3402
+ (3372, 'RO ', '288', 'Tatulesti'),
3403
+ (3373, 'RO ', '288', 'Tega'),
3404
+ (3374, 'RO ', '288', 'Teisu'),
3405
+ (3375, 'RO ', '288', 'Terca'),
3406
+ (3376, 'RO ', '288', 'Tintesti'),
3407
+ (3377, 'RO ', '288', 'Tisau'),
3408
+ (3378, 'RO ', '288', 'Tocileni'),
3409
+ (3379, 'RO ', '288', 'Topliceni'),
3410
+ (3380, 'RO ', '288', 'Trestia'),
3411
+ (3381, 'RO ', '288', 'Trestieni'),
3412
+ (3382, 'RO ', '288', 'Trestioara (Chiliile)'),
3413
+ (3383, 'RO ', '288', 'Trestioara (Manzalesti)'),
3414
+ (3384, 'RO ', '288', 'Tronari'),
3415
+ (3385, 'RO ', '288', 'Tulburea'),
3416
+ (3386, 'RO ', '288', 'Udati-Lucieni'),
3417
+ (3387, 'RO ', '288', 'Udati-Manzu'),
3418
+ (3388, 'RO ', '288', 'Ulmeni'),
3419
+ (3389, 'RO ', '288', 'Ulmet'),
3420
+ (3390, 'RO ', '288', 'Unguriu'),
3421
+ (3391, 'RO ', '288', 'Ursoaia'),
3422
+ (3392, 'RO ', '288', 'Vacareasca'),
3423
+ (3393, 'RO ', '288', 'Vadu Oii'),
3424
+ (3394, 'RO ', '288', 'Vadu Pasii'),
3425
+ (3395, 'RO ', '288', 'Vadu Soresti'),
3426
+ (3396, 'RO ', '288', 'Valcele'),
3427
+ (3397, 'RO ', '288', 'Valcelele'),
3428
+ (3398, 'RO ', '288', 'Valea Banului'),
3429
+ (3399, 'RO ', '288', 'Valea Catinei'),
3430
+ (3400, 'RO ', '288', 'Valea Cotoarei'),
3431
+ (3401, 'RO ', '288', 'Valea Fantanei'),
3432
+ (3402, 'RO ', '288', 'Valea Larga-Sarulesti'),
3433
+ (3403, 'RO ', '288', 'Valea Lupului'),
3434
+ (3404, 'RO ', '288', 'Valea Nucului'),
3435
+ (3405, 'RO ', '288', 'Valea Parului'),
3436
+ (3406, 'RO ', '288', 'Valea Purcarului'),
3437
+ (3407, 'RO ', '288', 'Valea Putului Merei'),
3438
+ (3408, 'RO ', '288', 'Valea Ramnicului'),
3439
+ (3409, 'RO ', '288', 'Valea Ratei'),
3440
+ (3410, 'RO ', '288', 'Valea Roatei'),
3441
+ (3411, 'RO ', '288', 'Valea Salciei'),
3442
+ (3412, 'RO ', '288', 'Valea Salciilor'),
3443
+ (3413, 'RO ', '288', 'Valea Sibiciului'),
3444
+ (3414, 'RO ', '288', 'Valea Stanei'),
3445
+ (3415, 'RO ', '288', 'Valea stefanului'),
3446
+ (3416, 'RO ', '288', 'Valea Ursului'),
3447
+ (3417, 'RO ', '288', 'Valea Verzei'),
3448
+ (3418, 'RO ', '288', 'Valea Viei'),
3449
+ (3419, 'RO ', '288', 'Valeanca-Vilanesti'),
3450
+ (3420, 'RO ', '288', 'Varf'),
3451
+ (3421, 'RO ', '288', 'Varlaam'),
3452
+ (3422, 'RO ', '288', 'Varteju'),
3453
+ (3423, 'RO ', '288', 'Vavalucile'),
3454
+ (3424, 'RO ', '288', 'Vernesti'),
3455
+ (3425, 'RO ', '288', 'Viforata'),
3456
+ (3426, 'RO ', '288', 'Vinetisu'),
3457
+ (3427, 'RO ', '288', 'Vintila Voda'),
3458
+ (3428, 'RO ', '288', 'Vintileanca'),
3459
+ (3429, 'RO ', '288', 'Viperesti'),
3460
+ (3430, 'RO ', '288', 'Vispesti'),
3461
+ (3431, 'RO ', '288', 'Vizireni'),
3462
+ (3432, 'RO ', '288', 'Vladeni'),
3463
+ (3433, 'RO ', '288', 'Zaharesti'),
3464
+ (3434, 'RO ', '288', 'Zarnesti'),
3465
+ (3435, 'RO ', '288', 'Zarnestii de Slanic'),
3466
+ (3436, 'RO ', '288', 'Ziduri'),
3467
+ (3437, 'RO ', '288', 'Zilisteanca'),
3468
+ (3438, 'RO ', '288', 'Zoita'),
3469
+ (3439, 'RO ', '288', 'Zoresti'),
3470
+ (3440, 'RO ', '290', 'Alexandru Odobescu'),
3471
+ (3441, 'RO ', '290', 'Aprozi'),
3472
+ (3442, 'RO ', '290', 'Artari'),
3473
+ (3443, 'RO ', '290', 'Belciugatele'),
3474
+ (3444, 'RO ', '290', 'bogata'),
3475
+ (3445, 'RO ', '290', 'Bogdana'),
3476
+ (3446, 'RO ', '290', 'Borcea'),
3477
+ (3447, 'RO ', '290', 'Bosneagu'),
3478
+ (3448, 'RO ', '290', 'Buciumeni'),
3479
+ (3449, 'RO ', '290', 'Budesti'),
3480
+ (3450, 'RO ', '290', 'Buzoeni'),
3481
+ (3451, 'RO ', '290', 'Calarasi'),
3482
+ (3452, 'RO ', '290', 'Calarasii Vechi'),
3483
+ (3453, 'RO ', '290', 'Calareti'),
3484
+ (3454, 'RO ', '290', 'Cascioarele'),
3485
+ (3455, 'RO ', '290', 'Ceacu'),
3486
+ (3456, 'RO ', '290', 'Cetatea Veche'),
3487
+ (3457, 'RO ', '290', 'Chirnogi'),
3488
+ (3458, 'RO ', '290', 'Chiselet'),
3489
+ (3459, 'RO ', '290', 'Ciocanesti'),
3490
+ (3460, 'RO ', '290', 'Ciulnita-Gara'),
3491
+ (3461, 'RO ', '290', 'Clatesti'),
3492
+ (3462, 'RO ', '290', 'Coconi'),
3493
+ (3463, 'RO ', '290', 'Constantin Brancoveanu'),
3494
+ (3464, 'RO ', '290', 'Coslogeni'),
3495
+ (3465, 'RO ', '290', 'Cotofanca'),
3496
+ (3466, 'RO ', '290', 'Crivat'),
3497
+ (3467, 'RO ', '290', 'Cucuieti'),
3498
+ (3468, 'RO ', '290', 'Cunesti'),
3499
+ (3469, 'RO ', '290', 'Curatesti'),
3500
+ (3470, 'RO ', '290', 'Curcani'),
3501
+ (3471, 'RO ', '290', 'Cuza Voda'),
3502
+ (3472, 'RO ', '290', 'Dalga'),
3503
+ (3473, 'RO ', '290', 'Dalga-Gara'),
3504
+ (3474, 'RO ', '290', 'Danesti'),
3505
+ (3475, 'RO ', '290', 'Darvari'),
3506
+ (3476, 'RO ', '290', 'Dichiseni'),
3507
+ (3477, 'RO ', '290', 'Dor Marunt'),
3508
+ (3478, 'RO ', '290', 'Dorobantu'),
3509
+ (3479, 'RO ', '290', 'Dorobantu (Plataresti)'),
3510
+ (3480, 'RO ', '290', 'Dragalina'),
3511
+ (3481, 'RO ', '290', 'Dragos Voda'),
3512
+ (3482, 'RO ', '290', 'Drajna Noua'),
3513
+ (3483, 'RO ', '290', 'Fantana Doamnei'),
3514
+ (3484, 'RO ', '290', 'Faurei'),
3515
+ (3485, 'RO ', '290', 'Florica'),
3516
+ (3486, 'RO ', '290', 'Floroaica'),
3517
+ (3487, 'RO ', '290', 'Frasinet'),
3518
+ (3488, 'RO ', '290', 'Frumusani'),
3519
+ (3489, 'RO ', '290', 'Fundeni(CL)'),
3520
+ (3490, 'RO ', '290', 'Fundulea'),
3521
+ (3491, 'RO ', '290', 'Galatui'),
3522
+ (3492, 'RO ', '290', 'Galbinasi'),
3523
+ (3493, 'RO ', '290', 'Galdau'),
3524
+ (3494, 'RO ', '290', 'Gostilele'),
3525
+ (3495, 'RO ', '290', 'Gradistea'),
3526
+ (3496, 'RO ', '290', 'Gruiu'),
3527
+ (3497, 'RO ', '290', 'Gurbanesti'),
3528
+ (3498, 'RO ', '290', 'Iezeru'),
3529
+ (3499, 'RO ', '290', 'Ileana'),
3530
+ (3500, 'RO ', '290', 'Independenta'),
3531
+ (3501, 'RO ', '290', 'Jegalia'),
3532
+ (3502, 'RO ', '290', 'Lehliu'),
3533
+ (3503, 'RO ', '290', 'Lehliu-Gara'),
3534
+ (3504, 'RO ', '290', 'Luica'),
3535
+ (3505, 'RO ', '290', 'Lupsanu'),
3536
+ (3506, 'RO ', '290', 'Luptatori'),
3537
+ (3507, 'RO ', '290', 'Manastirea'),
3538
+ (3508, 'RO ', '290', 'Mariuta'),
3539
+ (3509, 'RO ', '290', 'Mataraua'),
3540
+ (3510, 'RO ', '290', 'Mihai Viteazu'),
3541
+ (3511, 'RO ', '290', 'Mitreni'),
3542
+ (3512, 'RO ', '290', 'Modelu'),
3543
+ (3513, 'RO ', '290', 'Nana'),
3544
+ (3514, 'RO ', '290', 'Negoesti'),
3545
+ (3515, 'RO ', '290', 'Nicolae Balcescu'),
3546
+ (3516, 'RO ', '290', 'Nicolae Balcescu (Alexandru Odobescu)'),
3547
+ (3517, 'RO ', '290', 'Nucetu'),
3548
+ (3518, 'RO ', '290', 'Nuci'),
3549
+ (3519, 'RO ', '290', 'Ogoru'),
3550
+ (3520, 'RO ', '290', 'Oltenita'),
3551
+ (3521, 'RO ', '290', 'Oltina'),
3552
+ (3522, 'RO ', '290', 'Orasti'),
3553
+ (3523, 'RO ', '290', 'Padurisu'),
3554
+ (3524, 'RO ', '290', 'Paicu'),
3555
+ (3525, 'RO ', '290', 'Pelinu'),
3556
+ (3526, 'RO ', '290', 'Perisoru'),
3557
+ (3527, 'RO ', '290', 'Plataresti'),
3558
+ (3528, 'RO ', '290', 'Plevna'),
3559
+ (3529, 'RO ', '290', 'Plumbuita'),
3560
+ (3530, 'RO ', '290', 'Podari'),
3561
+ (3531, 'RO ', '290', 'Podu Pitarului'),
3562
+ (3532, 'RO ', '290', 'Popesti'),
3563
+ (3533, 'RO ', '290', 'Postavari'),
3564
+ (3534, 'RO ', '290', 'Potcoava'),
3565
+ (3535, 'RO ', '290', 'Radovanu'),
3566
+ (3536, 'RO ', '290', 'Radu Negru'),
3567
+ (3537, 'RO ', '290', 'Radu Voda'),
3568
+ (3538, 'RO ', '290', 'Rasa'),
3569
+ (3539, 'RO ', '290', 'Rasurile'),
3570
+ (3540, 'RO ', '290', 'Razoarele'),
3571
+ (3541, 'RO ', '290', 'Razvani'),
3572
+ (3542, 'RO ', '290', 'Roseti'),
3573
+ (3543, 'RO ', '290', 'Salcioara'),
3574
+ (3544, 'RO ', '290', 'Sandulita'),
3575
+ (3545, 'RO ', '290', 'Sapunari'),
3576
+ (3546, 'RO ', '290', 'Sarulesti'),
3577
+ (3547, 'RO ', '290', 'Satnoeni'),
3578
+ (3548, 'RO ', '290', 'Satu Nou'),
3579
+ (3549, 'RO ', '290', 'Seinoiu'),
3580
+ (3550, 'RO ', '290', 'Silistea'),
3581
+ (3551, 'RO ', '290', 'Socoalele'),
3582
+ (3552, 'RO ', '290', 'Sohatu'),
3583
+ (3553, 'RO ', '290', 'Solacolu'),
3584
+ (3554, 'RO ', '290', 'Soldanu'),
3585
+ (3555, 'RO ', '290', 'Spantov'),
3586
+ (3556, 'RO ', '290', 'Stancea'),
3587
+ (3557, 'RO ', '290', 'Stefan cel mare'),
3588
+ (3558, 'RO ', '290', 'Stefan Voda'),
3589
+ (3559, 'RO ', '290', 'Stefanesti'),
3590
+ (3560, 'RO ', '290', 'Sultana'),
3591
+ (3561, 'RO ', '290', 'Tamadau Mare'),
3592
+ (3562, 'RO ', '290', 'Tonea'),
3593
+ (3563, 'RO ', '290', 'Tudor Vladimirescu'),
3594
+ (3564, 'RO ', '290', 'Ulmeni'),
3595
+ (3565, 'RO ', '290', 'Ulmu'),
3596
+ (3566, 'RO ', '290', 'Unirea'),
3597
+ (3567, 'RO ', '290', 'Valcelele'),
3598
+ (3568, 'RO ', '290', 'Valea Argovei'),
3599
+ (3569, 'RO ', '290', 'Valea Popii'),
3600
+ (3570, 'RO ', '290', 'Valea Presnei'),
3601
+ (3571, 'RO ', '290', 'Valea Rosie'),
3602
+ (3572, 'RO ', '290', 'Valea Stanii'),
3603
+ (3573, 'RO ', '290', 'Varasti'),
3604
+ (3574, 'RO ', '290', 'Vasilati'),
3605
+ (3575, 'RO ', '290', 'Visinii'),
3606
+ (3576, 'RO ', '290', 'Vlad Tepes'),
3607
+ (3577, 'RO ', '290', 'Vladiceasca'),
3608
+ (3578, 'RO ', '290', 'Vlaiculesti'),
3609
+ (3579, 'RO ', '290', 'Zimbru'),
3610
+ (3580, 'RO ', '289', '23-Aug'),
3611
+ (3581, 'RO ', '289', 'Agadici'),
3612
+ (3582, 'RO ', '289', 'Anina'),
3613
+ (3583, 'RO ', '289', 'Apadia'),
3614
+ (3584, 'RO ', '289', 'Armenis'),
3615
+ (3585, 'RO ', '289', 'Baile Herculane'),
3616
+ (3586, 'RO ', '289', 'Bania'),
3617
+ (3587, 'RO ', '289', 'Barbosu'),
3618
+ (3588, 'RO ', '289', 'Barz'),
3619
+ (3589, 'RO ', '289', 'Barza'),
3620
+ (3590, 'RO ', '289', 'Bautar'),
3621
+ (3591, 'RO ', '289', 'Bazias'),
3622
+ (3592, 'RO ', '289', 'Belobresca'),
3623
+ (3593, 'RO ', '289', 'Berliste'),
3624
+ (3594, 'RO ', '289', 'Berzasca'),
3625
+ (3595, 'RO ', '289', 'Berzovia'),
3626
+ (3596, 'RO ', '289', 'Bigar'),
3627
+ (3597, 'RO ', '289', 'Binis'),
3628
+ (3598, 'RO ', '289', 'Bocsa'),
3629
+ (3599, 'RO ', '289', 'Bogaltin'),
3630
+ (3600, 'RO ', '289', 'Bogodint'),
3631
+ (3601, 'RO ', '289', 'Boina'),
3632
+ (3602, 'RO ', '289', 'Boinita'),
3633
+ (3603, 'RO ', '289', 'Bolvasnita'),
3634
+ (3604, 'RO ', '289', 'Borlova'),
3635
+ (3605, 'RO ', '289', 'Borlovenii Noi'),
3636
+ (3606, 'RO ', '289', 'Borlovenii Vechi'),
3637
+ (3607, 'RO ', '289', 'Bozovici'),
3638
+ (3608, 'RO ', '289', 'Bradisoru de Jos'),
3639
+ (3609, 'RO ', '289', 'Bratova'),
3640
+ (3610, 'RO ', '289', 'Brebu'),
3641
+ (3611, 'RO ', '289', 'Brebu Nou'),
3642
+ (3612, 'RO ', '289', 'Brestelnic'),
3643
+ (3613, 'RO ', '289', 'Brezon'),
3644
+ (3614, 'RO ', '289', 'Brosteni'),
3645
+ (3615, 'RO ', '289', 'Buchin'),
3646
+ (3616, 'RO ', '289', 'Bucosnita'),
3647
+ (3617, 'RO ', '289', 'Bucova'),
3648
+ (3618, 'RO ', '289', 'Calina'),
3649
+ (3619, 'RO ', '289', 'Calnic'),
3650
+ (3620, 'RO ', '289', 'Camenita'),
3651
+ (3621, 'RO ', '289', 'Campia'),
3652
+ (3622, 'RO ', '289', 'Canicea'),
3653
+ (3623, 'RO ', '289', 'Caransebes'),
3654
+ (3624, 'RO ', '289', 'Carasova'),
3655
+ (3625, 'RO ', '289', 'Carbunari'),
3656
+ (3626, 'RO ', '289', 'Carnecea'),
3657
+ (3627, 'RO ', '289', 'Carsa Rosie'),
3658
+ (3628, 'RO ', '289', 'Carsie'),
3659
+ (3629, 'RO ', '289', 'Cavaran'),
3660
+ (3630, 'RO ', '289', 'Cicleni'),
3661
+ (3631, 'RO ', '289', 'Ciclova Montana'),
3662
+ (3632, 'RO ', '289', 'Ciclova Romana'),
3663
+ (3633, 'RO ', '289', 'Ciortea'),
3664
+ (3634, 'RO ', '289', 'Ciresa'),
3665
+ (3635, 'RO ', '289', 'Ciuchici'),
3666
+ (3636, 'RO ', '289', 'Ciudanovita'),
3667
+ (3637, 'RO ', '289', 'Ciuta'),
3668
+ (3638, 'RO ', '289', 'Clocotici'),
3669
+ (3639, 'RO ', '289', 'Comoraste'),
3670
+ (3640, 'RO ', '289', 'Constantin Daicoviciu'),
3671
+ (3641, 'RO ', '289', 'Copacele'),
3672
+ (3642, 'RO ', '289', 'Cornea'),
3673
+ (3643, 'RO ', '289', 'Cornereva'),
3674
+ (3644, 'RO ', '289', 'Cornisoru'),
3675
+ (3645, 'RO ', '289', 'Cornutel'),
3676
+ (3646, 'RO ', '289', 'Coronini'),
3677
+ (3647, 'RO ', '289', 'Cozla'),
3678
+ (3648, 'RO ', '289', 'Cracu Almaj'),
3679
+ (3649, 'RO ', '289', 'Crusovat'),
3680
+ (3650, 'RO ', '289', 'Crusovita'),
3681
+ (3651, 'RO ', '289', 'Cuptoare (Cornea)'),
3682
+ (3652, 'RO ', '289', 'Cuptoare (Resita)'),
3683
+ (3653, 'RO ', '289', 'Curmatura'),
3684
+ (3654, 'RO ', '289', 'Dalboset'),
3685
+ (3655, 'RO ', '289', 'Dalci'),
3686
+ (3656, 'RO ', '289', 'Delinesti'),
3687
+ (3657, 'RO ', '289', 'Dezesti'),
3688
+ (3658, 'RO ', '289', 'Divici'),
3689
+ (3659, 'RO ', '289', 'Doclin'),
3690
+ (3660, 'RO ', '289', 'Dognecea'),
3691
+ (3661, 'RO ', '289', 'Doman'),
3692
+ (3662, 'RO ', '289', 'Domasnea'),
3693
+ (3663, 'RO ', '289', 'Drencova'),
3694
+ (3664, 'RO ', '289', 'Dristie'),
3695
+ (3665, 'RO ', '289', 'Duleu'),
3696
+ (3666, 'RO ', '289', 'Eftimie Murgu'),
3697
+ (3667, 'RO ', '289', 'Ersig'),
3698
+ (3668, 'RO ', '289', 'Ezeris'),
3699
+ (3669, 'RO ', '289', 'Farliug'),
3700
+ (3670, 'RO ', '289', 'Fenes'),
3701
+ (3671, 'RO ', '289', 'Fizes'),
3702
+ (3672, 'RO ', '289', 'Forotic'),
3703
+ (3673, 'RO ', '289', 'Frasinis'),
3704
+ (3674, 'RO ', '289', 'Garana'),
3705
+ (3675, 'RO ', '289', 'Garbovat'),
3706
+ (3676, 'RO ', '289', 'Garliste'),
3707
+ (3677, 'RO ', '289', 'Garnic'),
3708
+ (3678, 'RO ', '289', 'Ghertenis'),
3709
+ (3679, 'RO ', '289', 'Giurgiova'),
3710
+ (3680, 'RO ', '289', 'Glimboca'),
3711
+ (3681, 'RO ', '289', 'Globu Craiovei'),
3712
+ (3682, 'RO ', '289', 'Globurau'),
3713
+ (3683, 'RO ', '289', 'Golet'),
3714
+ (3684, 'RO ', '289', 'Gornea'),
3715
+ (3685, 'RO ', '289', 'Goruia'),
3716
+ (3686, 'RO ', '289', 'Gradinari'),
3717
+ (3687, 'RO ', '289', 'Greoni'),
3718
+ (3688, 'RO ', '289', 'Iabalcea'),
3719
+ (3689, 'RO ', '289', 'Iablanita '),
3720
+ (3690, 'RO ', '289', 'Iam'),
3721
+ (3691, 'RO ', '289', 'Iaz'),
3722
+ (3692, 'RO ', '289', 'Iertof'),
3723
+ (3693, 'RO ', '289', 'Ilidia'),
3724
+ (3694, 'RO ', '289', 'Ilova'),
3725
+ (3695, 'RO ', '289', 'Izgar'),
3726
+ (3696, 'RO ', '289', 'Jitin'),
3727
+ (3697, 'RO ', '289', 'Jupa '),
3728
+ (3698, 'RO ', '289', 'Lapusnicel'),
3729
+ (3699, 'RO ', '289', 'Lapusnicu Mare'),
3730
+ (3700, 'RO ', '289', 'Lescovita'),
3731
+ (3701, 'RO ', '289', 'Liborajdea'),
3732
+ (3702, 'RO ', '289', 'Lindenfeld'),
3733
+ (3703, 'RO ', '289', 'Liubcova'),
3734
+ (3704, 'RO ', '289', 'Lucacevat'),
3735
+ (3705, 'RO ', '289', 'Luncavita'),
3736
+ (3706, 'RO ', '289', 'Lupac'),
3737
+ (3707, 'RO ', '289', 'Macesti'),
3738
+ (3708, 'RO ', '289', 'Maciova'),
3739
+ (3709, 'RO ', '289', 'Macoviste (Ciuchici)'),
3740
+ (3710, 'RO ', '289', 'Macoviste (Cornea)'),
3741
+ (3711, 'RO ', '289', 'Magura'),
3742
+ (3712, 'RO ', '289', 'Mal'),
3743
+ (3713, 'RO ', '289', 'Marga'),
3744
+ (3714, 'RO ', '289', 'Marila'),
3745
+ (3715, 'RO ', '289', 'Martinovat'),
3746
+ (3716, 'RO ', '289', 'Maru'),
3747
+ (3717, 'RO ', '289', 'Matnicu Mare'),
3748
+ (3718, 'RO ', '289', 'Maureni'),
3749
+ (3719, 'RO ', '289', 'Mehadia'),
3750
+ (3720, 'RO ', '289', 'Mehadica'),
3751
+ (3721, 'RO ', '289', 'Mercina'),
3752
+ (3722, 'RO ', '289', 'Milcoveni'),
3753
+ (3723, 'RO ', '289', 'Moceris'),
3754
+ (3724, 'RO ', '289', 'Moldova Noua'),
3755
+ (3725, 'RO ', '289', 'Moldova Veche'),
3756
+ (3726, 'RO ', '289', 'Moldovita'),
3757
+ (3727, 'RO ', '289', 'Moniom'),
3758
+ (3728, 'RO ', '289', 'Naidas'),
3759
+ (3729, 'RO ', '289', 'Nermed'),
3760
+ (3730, 'RO ', '289', 'Nicolint'),
3761
+ (3731, 'RO ', '289', 'Obita'),
3762
+ (3732, 'RO ', '289', 'Obreja'),
3763
+ (3733, 'RO ', '289', 'Ocna de Fier'),
3764
+ (3734, 'RO ', '289', 'Ogasu Podului'),
3765
+ (3735, 'RO ', '289', 'Ohaba-Matnic'),
3766
+ (3736, 'RO ', '289', 'Oravita'),
3767
+ (3737, 'RO ', '289', 'Otelu Rosu'),
3768
+ (3738, 'RO ', '289', 'Padina Matei'),
3769
+ (3739, 'RO ', '289', 'Paltinis'),
3770
+ (3740, 'RO ', '289', 'Parneaura'),
3771
+ (3741, 'RO ', '289', 'Parvova'),
3772
+ (3742, 'RO ', '289', 'Patas'),
3773
+ (3743, 'RO ', '289', 'Pecinisca'),
3774
+ (3744, 'RO ', '289', 'Pestere'),
3775
+ (3745, 'RO ', '289', 'Petnic'),
3776
+ (3746, 'RO ', '289', 'Petrilova'),
3777
+ (3747, 'RO ', '289', 'Petrosnita'),
3778
+ (3748, 'RO ', '289', 'Plugova'),
3779
+ (3749, 'RO ', '289', 'Poiana'),
3780
+ (3750, 'RO ', '289', 'Poiana Marului'),
3781
+ (3751, 'RO ', '289', 'Poienile Boinei'),
3782
+ (3752, 'RO ', '289', 'Pojejena'),
3783
+ (3753, 'RO ', '289', 'Poneasca'),
3784
+ (3754, 'RO ', '289', 'Potoc'),
3785
+ (3755, 'RO ', '289', 'Prigor'),
3786
+ (3756, 'RO ', '289', 'Prilipet'),
3787
+ (3757, 'RO ', '289', 'Prisaca'),
3788
+ (3758, 'RO ', '289', 'Prisian'),
3789
+ (3759, 'RO ', '289', 'Prislop (Cornereva)'),
3790
+ (3760, 'RO ', '289', 'Prislop (Dalboset)'),
3791
+ (3761, 'RO ', '289', 'Putna'),
3792
+ (3762, 'RO ', '289', 'Racasdia'),
3793
+ (3763, 'RO ', '289', 'Rachitova'),
3794
+ (3764, 'RO ', '289', 'Radimna'),
3795
+ (3765, 'RO ', '289', 'Rafnic'),
3796
+ (3766, 'RO ', '289', 'Ramna'),
3797
+ (3767, 'RO ', '289', 'Ravensca'),
3798
+ (3768, 'RO ', '289', 'Remetea-Poganici'),
3799
+ (3769, 'RO ', '289', 'Resita'),
3800
+ (3770, 'RO ', '289', 'Resita Mica'),
3801
+ (3771, 'RO ', '289', 'Rugi'),
3802
+ (3772, 'RO ', '289', 'Ruginosu'),
3803
+ (3773, 'RO ', '289', 'Rusca'),
3804
+ (3774, 'RO ', '289', 'Rusca Montana'),
3805
+ (3775, 'RO ', '289', 'Ruschita'),
3806
+ (3776, 'RO ', '289', 'Rusova Noua'),
3807
+ (3777, 'RO ', '289', 'Rusova Veche'),
3808
+ (3778, 'RO ', '289', 'Sacu'),
3809
+ (3779, 'RO ', '289', 'Sadova Noua'),
3810
+ (3780, 'RO ', '289', 'Sadova Veche'),
3811
+ (3781, 'RO ', '289', 'Salbagelu Nou'),
3812
+ (3782, 'RO ', '289', 'Sasca Montana'),
3813
+ (3783, 'RO ', '289', 'Sasca Romana'),
3814
+ (3784, 'RO ', '289', 'Sat Batran'),
3815
+ (3785, 'RO ', '289', 'Scaius'),
3816
+ (3786, 'RO ', '289', 'Secaseni'),
3817
+ (3787, 'RO ', '289', 'Secu'),
3818
+ (3788, 'RO ', '289', 'Sfanta Elena'),
3819
+ (3789, 'RO ', '289', 'Sichevita'),
3820
+ (3790, 'RO ', '289', 'Slatina-Nera'),
3821
+ (3791, 'RO ', '289', 'Slatina-Timis'),
3822
+ (3792, 'RO ', '289', 'Soceni'),
3823
+ (3793, 'RO ', '289', 'Socol'),
3824
+ (3794, 'RO ', '289', 'Socolari'),
3825
+ (3795, 'RO ', '289', 'Sopotu Nou'),
3826
+ (3796, 'RO ', '289', 'Sopotu Vechi'),
3827
+ (3797, 'RO ', '289', 'Sosdea'),
3828
+ (3798, 'RO ', '289', 'Stancilova'),
3829
+ (3799, 'RO ', '289', 'Steierdorf'),
3830
+ (3800, 'RO ', '289', 'Stinapari'),
3831
+ (3801, 'RO ', '289', 'Streneac'),
3832
+ (3802, 'RO ', '289', 'Sub Margine'),
3833
+ (3803, 'RO ', '289', 'Surducu Mare'),
3834
+ (3804, 'RO ', '289', 'Susca'),
3835
+ (3805, 'RO ', '289', 'Tarnova'),
3836
+ (3806, 'RO ', '289', 'Teregova'),
3837
+ (3807, 'RO ', '289', 'Terova'),
3838
+ (3808, 'RO ', '289', 'Ticvaniu Mare'),
3839
+ (3809, 'RO ', '289', 'Ticvaniu Mic'),
3840
+ (3810, 'RO ', '289', 'Tincova'),
3841
+ (3811, 'RO ', '289', 'Tirol'),
3842
+ (3812, 'RO ', '289', 'Toplet'),
3843
+ (3813, 'RO ', '289', 'Turnu Ruieni'),
3844
+ (3814, 'RO ', '289', 'Urcu'),
3845
+ (3815, 'RO ', '289', 'Valea Bistrei'),
3846
+ (3816, 'RO ', '289', 'Valea Bolvasnita'),
3847
+ (3817, 'RO ', '289', 'Valea Minisului'),
3848
+ (3818, 'RO ', '289', 'Valea Orevita'),
3849
+ (3819, 'RO ', '289', 'Valea Rachitei'),
3850
+ (3820, 'RO ', '289', 'Valea Ravensca'),
3851
+ (3821, 'RO ', '289', 'Valea Rosie'),
3852
+ (3822, 'RO ', '289', 'Valea Sichevitei'),
3853
+ (3823, 'RO ', '289', 'Valea Timisului'),
3854
+ (3824, 'RO ', '289', 'Valeadeni'),
3855
+ (3825, 'RO ', '289', 'Valeapai'),
3856
+ (3826, 'RO ', '289', 'Valisoara'),
3857
+ (3827, 'RO ', '289', 'Valiug'),
3858
+ (3828, 'RO ', '289', 'Vama Marga'),
3859
+ (3829, 'RO ', '289', 'Var'),
3860
+ (3830, 'RO ', '289', 'Varadia'),
3861
+ (3831, 'RO ', '289', 'Varciorova'),
3862
+ (3832, 'RO ', '289', 'Verendin'),
3863
+ (3833, 'RO ', '289', 'Vermes'),
3864
+ (3834, 'RO ', '289', 'Vodnic'),
3865
+ (3835, 'RO ', '289', 'Voislova'),
3866
+ (3836, 'RO ', '289', 'Vrani'),
3867
+ (3837, 'RO ', '289', 'Vraniut'),
3868
+ (3838, 'RO ', '289', 'Zagujeni'),
3869
+ (3839, 'RO ', '289', 'Zanou'),
3870
+ (3840, 'RO ', '289', 'Zasloane'),
3871
+ (3841, 'RO ', '289', 'Zavoi'),
3872
+ (3842, 'RO ', '289', 'Zervesti'),
3873
+ (3843, 'RO ', '289', 'Zlagna'),
3874
+ (3844, 'RO ', '289', 'Zlatita'),
3875
+ (3845, 'RO ', '289', 'Zorile'),
3876
+ (3846, 'RO ', '289', 'Zorlencior'),
3877
+ (3847, 'RO ', '289', 'Zorlentu Mare'),
3878
+ (3848, 'RO ', '291', 'Agarbiciu'),
3879
+ (3849, 'RO ', '291', 'Aghiresu'),
3880
+ (3850, 'RO ', '291', 'Aghiresu-Fabrici'),
3881
+ (3851, 'RO ', '291', 'Agris'),
3882
+ (3852, 'RO ', '291', 'Aiton'),
3883
+ (3853, 'RO ', '291', 'Alunis'),
3884
+ (3854, 'RO ', '291', 'Alunisu'),
3885
+ (3855, 'RO ', '291', 'Andici'),
3886
+ (3856, 'RO ', '291', 'Antas'),
3887
+ (3857, 'RO ', '291', 'Apahida'),
3888
+ (3858, 'RO ', '291', 'Ardeova'),
3889
+ (3859, 'RO ', '291', 'Arghisu'),
3890
+ (3860, 'RO ', '291', 'Aruncuta'),
3891
+ (3861, 'RO ', '291', 'Aschileu'),
3892
+ (3862, 'RO ', '291', 'Aschileu Mare'),
3893
+ (3863, 'RO ', '291', 'Aschileu Mic'),
3894
+ (3864, 'RO ', '291', 'Babdiu'),
3895
+ (3865, 'RO ', '291', 'Babutiu'),
3896
+ (3866, 'RO ', '291', 'Baciu'),
3897
+ (3867, 'RO ', '291', 'Badeni'),
3898
+ (3868, 'RO ', '291', 'Badesti'),
3899
+ (3869, 'RO ', '291', 'Bagaciu'),
3900
+ (3870, 'RO ', '291', 'Bagara'),
3901
+ (3871, 'RO ', '291', 'Baisoara'),
3902
+ (3872, 'RO ', '291', 'Baita'),
3903
+ (3873, 'RO ', '291', 'Balcesti (Belis)'),
3904
+ (3874, 'RO ', '291', 'Balcesti (Capusu Mare)'),
3905
+ (3875, 'RO ', '291', 'Barai'),
3906
+ (3876, 'RO ', '291', 'Barlea'),
3907
+ (3877, 'RO ', '291', 'Batin'),
3908
+ (3878, 'RO ', '291', 'Bedeciu'),
3909
+ (3879, 'RO ', '291', 'Belis'),
3910
+ (3880, 'RO ', '291', 'Berchiesu'),
3911
+ (3881, 'RO ', '291', 'Berindu'),
3912
+ (3882, 'RO ', '291', 'Bica'),
3913
+ (3883, 'RO ', '291', 'Bicalatu'),
3914
+ (3884, 'RO ', '291', 'Blidaresti'),
3915
+ (3885, 'RO ', '291', 'Bobalna'),
3916
+ (3886, 'RO ', '291', 'Bociu'),
3917
+ (3887, 'RO ', '291', 'Bodrog'),
3918
+ (3888, 'RO ', '291', 'Bogata'),
3919
+ (3889, 'RO ', '291', 'Bogata de Jos'),
3920
+ (3890, 'RO ', '291', 'Bogata de Sus'),
3921
+ (3891, 'RO ', '291', 'Boian'),
3922
+ (3892, 'RO ', '291', 'Boj-Catun'),
3923
+ (3893, 'RO ', '291', 'Boju'),
3924
+ (3894, 'RO ', '291', 'Boldut'),
3925
+ (3895, 'RO ', '291', 'Bologa'),
3926
+ (3896, 'RO ', '291', 'Bont'),
3927
+ (3897, 'RO ', '291', 'Bontida'),
3928
+ (3898, 'RO ', '291', 'Borsa'),
3929
+ (3899, 'RO ', '291', 'Borsa-Catun'),
3930
+ (3900, 'RO ', '291', 'Borsa-Crestaia'),
3931
+ (3901, 'RO ', '291', 'Borzesti'),
3932
+ (3902, 'RO ', '291', 'Boteni'),
3933
+ (3903, 'RO ', '291', 'Braisoru'),
3934
+ (3904, 'RO ', '291', 'Bucea'),
3935
+ (3905, 'RO ', '291', 'Bunesti'),
3936
+ (3906, 'RO ', '291', 'Buru'),
3937
+ (3907, 'RO ', '291', 'Buteni'),
3938
+ (3908, 'RO ', '291', 'Buza'),
3939
+ (3909, 'RO ', '291', 'Cacova Ierii'),
3940
+ (3910, 'RO ', '291', 'Caianu'),
3941
+ (3911, 'RO ', '291', 'Caianu Mic'),
3942
+ (3912, 'RO ', '291', 'Caianu-Vama'),
3943
+ (3913, 'RO ', '291', 'Calarasi'),
3944
+ (3914, 'RO ', '291', 'Calarasi-Gara'),
3945
+ (3915, 'RO ', '291', 'Calata'),
3946
+ (3916, 'RO ', '291', 'Calatele'),
3947
+ (3917, 'RO ', '291', 'Calna'),
3948
+ (3918, 'RO ', '291', 'Camarasu'),
3949
+ (3919, 'RO ', '291', 'Campenesti'),
3950
+ (3920, 'RO ', '291', 'Campia Turzii'),
3951
+ (3921, 'RO ', '291', 'Caprioara'),
3952
+ (3922, 'RO ', '291', 'Capusu Mare'),
3953
+ (3923, 'RO ', '291', 'Capusu Mic'),
3954
+ (3924, 'RO ', '291', 'Cara'),
3955
+ (3925, 'RO ', '291', 'Caseiu'),
3956
+ (3926, 'RO ', '291', 'Casele Micesti'),
3957
+ (3927, 'RO ', '291', 'Catalina'),
3958
+ (3928, 'RO ', '291', 'Catcau'),
3959
+ (3929, 'RO ', '291', 'Catina'),
3960
+ (3930, 'RO ', '291', 'Ceaba'),
3961
+ (3931, 'RO ', '291', 'Ceanu Mare'),
3962
+ (3932, 'RO ', '291', 'Ceanu Mic'),
3963
+ (3933, 'RO ', '291', 'Cerbesti'),
3964
+ (3934, 'RO ', '291', 'Cerc'),
3965
+ (3935, 'RO ', '291', 'Cetan'),
3966
+ (3936, 'RO ', '291', 'Cheia'),
3967
+ (3937, 'RO ', '291', 'Chesau'),
3968
+ (3938, 'RO ', '291', 'Chidea'),
3969
+ (3939, 'RO ', '291', 'Chinteni'),
3970
+ (3940, 'RO ', '291', 'Chiris'),
3971
+ (3941, 'RO ', '291', 'Chiuiesti'),
3972
+ (3942, 'RO ', '291', 'Ciubanca'),
3973
+ (3943, 'RO ', '291', 'Ciubancuta'),
3974
+ (3944, 'RO ', '291', 'Ciucea'),
3975
+ (3945, 'RO ', '291', 'Ciuleni'),
3976
+ (3946, 'RO ', '291', 'Ciumafaia'),
3977
+ (3947, 'RO ', '291', 'Ciurgau'),
3978
+ (3948, 'RO ', '291', 'Ciurila'),
3979
+ (3949, 'RO ', '291', 'Clapa '),
3980
+ (3950, 'RO ', '291', 'Cluj-Napoca'),
3981
+ (3951, 'RO ', '291', 'Coasta'),
3982
+ (3952, 'RO ', '291', 'Codor'),
3983
+ (3953, 'RO ', '291', 'Cojocna'),
3984
+ (3954, 'RO ', '291', 'Colonia'),
3985
+ (3955, 'RO ', '291', 'Comorata'),
3986
+ (3956, 'RO ', '291', 'Comsesti'),
3987
+ (3957, 'RO ', '291', 'Copaceni'),
3988
+ (3958, 'RO ', '291', 'Coplean'),
3989
+ (3959, 'RO ', '291', 'Copru'),
3990
+ (3960, 'RO ', '291', 'Corneni'),
3991
+ (3961, 'RO ', '291', 'Cornesti'),
3992
+ (3962, 'RO ', '291', 'Cornesti (Garbau)'),
3993
+ (3963, 'RO ', '291', 'Cornesti (Mihai Viteazu)'),
3994
+ (3964, 'RO ', '291', 'Corpadea'),
3995
+ (3965, 'RO ', '291', 'Corusu'),
3996
+ (3966, 'RO ', '291', 'Craesti'),
3997
+ (3967, 'RO ', '291', 'Crairat'),
3998
+ (3968, 'RO ', '291', 'Cremenea'),
3999
+ (3969, 'RO ', '291', 'Criseni'),
4000
+ (3970, 'RO ', '291', 'Cristorel'),
4001
+ (3971, 'RO ', '291', 'Cublesu Somesan'),
4002
+ (3972, 'RO ', '291', 'Curtuiusu Dejului'),
4003
+ (3973, 'RO ', '291', 'Custura'),
4004
+ (3974, 'RO ', '291', 'Cutca'),
4005
+ (3975, 'RO ', '291', 'Cuzdrioara'),
4006
+ (3976, 'RO ', '291', 'Dabaca'),
4007
+ (3977, 'RO ', '291', 'Dambu Mare'),
4008
+ (3978, 'RO ', '291', 'Damburile'),
4009
+ (3979, 'RO ', '291', 'Dancu'),
4010
+ (3980, 'RO ', '291', 'Dangau Mare'),
4011
+ (3981, 'RO ', '291', 'Dangau Mic'),
4012
+ (3982, 'RO ', '291', 'Darja'),
4013
+ (3983, 'RO ', '291', 'Darot'),
4014
+ (3984, 'RO ', '291', 'Dealu Botii'),
4015
+ (3985, 'RO ', '291', 'Dealu Mare'),
4016
+ (3986, 'RO ', '291', 'Dealu Negru'),
4017
+ (3987, 'RO ', '291', 'Dej'),
4018
+ (3988, 'RO ', '291', 'Deleni'),
4019
+ (3989, 'RO ', '291', 'Deusu'),
4020
+ (3990, 'RO ', '291', 'Dezmir'),
4021
+ (3991, 'RO ', '291', 'Diviciorii Mari'),
4022
+ (3992, 'RO ', '291', 'Diviciorii Mici'),
4023
+ (3993, 'RO ', '291', 'Domosu'),
4024
+ (3994, 'RO ', '291', 'Dorna'),
4025
+ (3995, 'RO ', '291', 'Doroltu'),
4026
+ (3996, 'RO ', '291', 'Dosu Bricii'),
4027
+ (3997, 'RO ', '291', 'Dosu Napului'),
4028
+ (3998, 'RO ', '291', 'Dretea'),
4029
+ (3999, 'RO ', '291', 'Dumbrava'),
4030
+ (4000, 'RO ', '291', 'Elciu'),
4031
+ (4001, 'RO ', '291', 'Escu'),
4032
+ (4002, 'RO ', '291', 'Fagetu Ierii'),
4033
+ (4003, 'RO ', '291', 'Falca'),
4034
+ (4004, 'RO ', '291', 'Fanate'),
4035
+ (4005, 'RO ', '291', 'Faureni'),
4036
+ (4006, 'RO ', '291', 'Feiurdeni'),
4037
+ (4007, 'RO ', '291', 'Feldioara'),
4038
+ (4008, 'RO ', '291', 'Feleacu'),
4039
+ (4009, 'RO ', '291', 'Filea de Jos'),
4040
+ (4010, 'RO ', '291', 'Filea de Sus'),
4041
+ (4011, 'RO ', '291', 'Finciu'),
4042
+ (4012, 'RO ', '291', 'Finisel '),
4043
+ (4013, 'RO ', '291', 'Fizesu Gherlii'),
4044
+ (4014, 'RO ', '291', 'Floresti'),
4045
+ (4015, 'RO ', '291', 'Fodora'),
4046
+ (4016, 'RO ', '291', 'Frasinet'),
4047
+ (4017, 'RO ', '291', 'Frata'),
4048
+ (4018, 'RO ', '291', 'Fundatura'),
4049
+ (4019, 'RO ', '291', 'Gadalin'),
4050
+ (4020, 'RO ', '291', 'Garbau'),
4051
+ (4021, 'RO ', '291', 'Garbau Dejului'),
4052
+ (4022, 'RO ', '291', 'Geaca'),
4053
+ (4023, 'RO ', '291', 'Gheorghieni'),
4054
+ (4024, 'RO ', '291', 'Gherla'),
4055
+ (4025, 'RO ', '291', 'Ghirisu Roman'),
4056
+ (4026, 'RO ', '291', 'Ghirolt'),
4057
+ (4027, 'RO ', '291', 'Gilau'),
4058
+ (4028, 'RO ', '291', 'Giula'),
4059
+ (4029, 'RO ', '291', 'Giurcuta de Jos'),
4060
+ (4030, 'RO ', '291', 'Giurcuta de Sus'),
4061
+ (4031, 'RO ', '291', 'Gligoresti'),
4062
+ (4032, 'RO ', '291', 'Guga'),
4063
+ (4033, 'RO ', '291', 'Hagau'),
4064
+ (4034, 'RO ', '291', 'Hasdate (Gherla)'),
4065
+ (4035, 'RO ', '291', 'Hasdate (Savadisla)'),
4066
+ (4036, 'RO ', '291', 'Hodai-Boian'),
4067
+ (4037, 'RO ', '291', 'Hodaie'),
4068
+ (4038, 'RO ', '291', 'Hodisu'),
4069
+ (4039, 'RO ', '291', 'Horlacea'),
4070
+ (4040, 'RO ', '291', 'Huedin'),
4071
+ (4041, 'RO ', '291', 'Huta'),
4072
+ (4042, 'RO ', '291', 'Iacobeni'),
4073
+ (4043, 'RO ', '291', 'Iara'),
4074
+ (4044, 'RO ', '291', 'Iclod'),
4075
+ (4045, 'RO ', '291', 'Iclozel'),
4076
+ (4046, 'RO ', '291', 'Inucu'),
4077
+ (4047, 'RO ', '291', 'Iuriu de Campie'),
4078
+ (4048, 'RO ', '291', 'Izvoru Crisului'),
4079
+ (4049, 'RO ', '291', 'Jichisu de Jos'),
4080
+ (4050, 'RO ', '291', 'Jichisu de Sus'),
4081
+ (4051, 'RO ', '291', 'Juc-Herghelie'),
4082
+ (4052, 'RO ', '291', 'Jucu'),
4083
+ (4053, 'RO ', '291', 'Jucu de Mijloc'),
4084
+ (4054, 'RO ', '291', 'Jucu de Sus'),
4085
+ (4055, 'RO ', '291', 'Jurca'),
4086
+ (4056, 'RO ', '291', 'Lacu'),
4087
+ (4057, 'RO ', '291', 'Lapustesti'),
4088
+ (4058, 'RO ', '291', 'Leghia'),
4089
+ (4059, 'RO ', '291', 'Legii'),
4090
+ (4060, 'RO ', '291', 'Leurda'),
4091
+ (4061, 'RO ', '291', 'Lita'),
4092
+ (4062, 'RO ', '291', 'Liteni'),
4093
+ (4063, 'RO ', '291', 'Livada (Iclod)'),
4094
+ (4064, 'RO ', '291', 'Livada (Petrestii de Jos)'),
4095
+ (4065, 'RO ', '291', 'Lujerdiu'),
4096
+ (4066, 'RO ', '291', 'Luna'),
4097
+ (4067, 'RO ', '291', 'Luna de jos'),
4098
+ (4068, 'RO ', '291', 'Luna de Sus'),
4099
+ (4069, 'RO ', '291', 'Lunca Bontului'),
4100
+ (4070, 'RO ', '291', 'Lunca Visagului'),
4101
+ (4071, 'RO ', '291', 'Luncani'),
4102
+ (4072, 'RO ', '291', 'Lungesti'),
4103
+ (4073, 'RO ', '291', 'Macau'),
4104
+ (4074, 'RO ', '291', 'Macicasu'),
4105
+ (4075, 'RO ', '291', 'Magoaja'),
4106
+ (4076, 'RO ', '291', 'Maguri'),
4107
+ (4077, 'RO ', '291', 'Maguri-Racatau'),
4108
+ (4078, 'RO ', '291', 'Mahal'),
4109
+ (4079, 'RO ', '291', 'Maia'),
4110
+ (4080, 'RO ', '291', 'Manastirea'),
4111
+ (4081, 'RO ', '291', 'Manastireni'),
4112
+ (4082, 'RO ', '291', 'Manasturel'),
4113
+ (4083, 'RO ', '291', 'Manasturu Romanesc'),
4114
+ (4084, 'RO ', '291', 'Marcesti'),
4115
+ (4085, 'RO ', '291', 'Margau'),
4116
+ (4086, 'RO ', '291', 'Marisel'),
4117
+ (4087, 'RO ', '291', 'Martinesti'),
4118
+ (4088, 'RO ', '291', 'Masca'),
4119
+ (4089, 'RO ', '291', 'Mera'),
4120
+ (4090, 'RO ', '291', 'Mica'),
4121
+ (4091, 'RO ', '291', 'Micesti'),
4122
+ (4092, 'RO ', '291', 'Mihai Viteazu'),
4123
+ (4093, 'RO ', '291', 'Mihaiesti'),
4124
+ (4094, 'RO ', '291', 'Mintiu Gherlii'),
4125
+ (4095, 'RO ', '291', 'Mociu'),
4126
+ (4096, 'RO ', '291', 'Moldovenesti'),
4127
+ (4097, 'RO ', '291', 'Morau'),
4128
+ (4098, 'RO ', '291', 'Moristi'),
4129
+ (4099, 'RO ', '291', 'Morlaca'),
4130
+ (4100, 'RO ', '291', 'Mortesti'),
4131
+ (4101, 'RO ', '291', 'Muncel'),
4132
+ (4102, 'RO ', '291', 'Muntele Baisorii'),
4133
+ (4103, 'RO ', '291', 'Muntele Bocului'),
4134
+ (4104, 'RO ', '291', 'Muntele Filii'),
4135
+ (4105, 'RO ', '291', 'Muntele Rece'),
4136
+ (4106, 'RO ', '291', 'Muresenii de Campie'),
4137
+ (4107, 'RO ', '291', 'Nadaselu'),
4138
+ (4108, 'RO ', '291', 'Nadasu'),
4139
+ (4109, 'RO ', '291', 'Naoiu'),
4140
+ (4110, 'RO ', '291', 'Nasal'),
4141
+ (4111, 'RO ', '291', 'Nearsova'),
4142
+ (4112, 'RO ', '291', 'Negreni'),
4143
+ (4113, 'RO ', '291', 'Nicula'),
4144
+ (4114, 'RO ', '291', 'Nima'),
4145
+ (4115, 'RO ', '291', 'Nires'),
4146
+ (4116, 'RO ', '291', 'Oas'),
4147
+ (4117, 'RO ', '291', 'Ocna Dejului'),
4148
+ (4118, 'RO ', '291', 'Ocolisel'),
4149
+ (4119, 'RO ', '291', 'Olariu'),
4150
+ (4120, 'RO ', '291', 'Orman'),
4151
+ (4121, 'RO ', '291', 'Osoi'),
4152
+ (4122, 'RO ', '291', 'Osorhel'),
4153
+ (4123, 'RO ', '291', 'Padurea Iacobeni'),
4154
+ (4124, 'RO ', '291', 'Padureni (Chinteni)'),
4155
+ (4125, 'RO ', '291', 'Padureni (Ciurila)'),
4156
+ (4126, 'RO ', '291', 'Padurenii (Mintiu Gherlii)'),
4157
+ (4127, 'RO ', '291', 'Padurenii (Tritenii de Jos)'),
4158
+ (4128, 'RO ', '291', 'Paglisa'),
4159
+ (4129, 'RO ', '291', 'Palatca'),
4160
+ (4130, 'RO ', '291', 'Paniceni'),
4161
+ (4131, 'RO ', '291', 'Panticeu'),
4162
+ (4132, 'RO ', '291', 'Pata'),
4163
+ (4133, 'RO ', '291', 'Pestera'),
4164
+ (4134, 'RO ', '291', 'Petea'),
4165
+ (4135, 'RO ', '291', 'Petresti'),
4166
+ (4136, 'RO ', '291', 'Petrestii de jos'),
4167
+ (4137, 'RO ', '291', 'Petrestii de Mijloc'),
4168
+ (4138, 'RO ', '291', 'Petrestii de Sus'),
4169
+ (4139, 'RO ', '291', 'Pietroasa'),
4170
+ (4140, 'RO ', '291', 'Pintic'),
4171
+ (4141, 'RO ', '291', 'Plaiesti'),
4172
+ (4142, 'RO ', '291', 'Plaiuri'),
4173
+ (4143, 'RO ', '291', 'Ploscos'),
4174
+ (4144, 'RO ', '291', 'Podeni'),
4175
+ (4145, 'RO ', '291', 'Poiana Fratii'),
4176
+ (4146, 'RO ', '291', 'Poiana Horea'),
4177
+ (4147, 'RO ', '291', 'Poieni'),
4178
+ (4148, 'RO ', '291', 'Popesti'),
4179
+ (4149, 'RO ', '291', 'Prelucele'),
4180
+ (4150, 'RO ', '291', 'Pruni'),
4181
+ (4151, 'RO ', '291', 'Prunis'),
4182
+ (4152, 'RO ', '291', 'Puini'),
4183
+ (4153, 'RO ', '291', 'Pustuta'),
4184
+ (4154, 'RO ', '291', 'Rachitele'),
4185
+ (4155, 'RO ', '291', 'Radaia'),
4186
+ (4156, 'RO ', '291', 'Rascruci'),
4187
+ (4157, 'RO ', '291', 'Razbuneni'),
4188
+ (4158, 'RO ', '291', 'Recea-Cristur'),
4189
+ (4159, 'RO ', '291', 'Rediu'),
4190
+ (4160, 'RO ', '291', 'Risca'),
4191
+ (4161, 'RO ', '291', 'Rogojel'),
4192
+ (4162, 'RO ', '291', 'Rosieni'),
4193
+ (4163, 'RO ', '291', 'Rotunda'),
4194
+ (4164, 'RO ', '291', 'Rugasesti'),
4195
+ (4165, 'RO ', '291', 'Sacalaia'),
4196
+ (4166, 'RO ', '291', 'Sacel'),
4197
+ (4167, 'RO ', '291', 'Sacuieu'),
4198
+ (4168, 'RO ', '291', 'Salatiu'),
4199
+ (4169, 'RO ', '291', 'Salatruc'),
4200
+ (4170, 'RO ', '291', 'Salicea'),
4201
+ (4171, 'RO ', '291', 'Salisca'),
4202
+ (4172, 'RO ', '291', 'Saliste'),
4203
+ (4173, 'RO ', '291', 'Salistea Noua'),
4204
+ (4174, 'RO ', '291', 'Salistea Veche'),
4205
+ (4175, 'RO ', '291', 'Samboieni'),
4206
+ (4176, 'RO ', '291', 'Samboleni'),
4207
+ (4177, 'RO ', '291', 'Sancraiu'),
4208
+ (4178, 'RO ', '291', 'Sandulesti'),
4209
+ (4179, 'RO ', '291', 'Sanmarghita'),
4210
+ (4180, 'RO ', '291', 'Sanmartin'),
4211
+ (4181, 'RO ', '291', 'Sanmartin(Chinteni)'),
4212
+ (4182, 'RO ', '291', 'Sannicoara'),
4213
+ (4183, 'RO ', '291', 'Sanpaul'),
4214
+ (4184, 'RO ', '291', 'Santejude'),
4215
+ (4185, 'RO ', '291', 'Santejude-Vale'),
4216
+ (4186, 'RO ', '291', 'Santioana'),
4217
+ (4187, 'RO ', '291', 'Sarata'),
4218
+ (4188, 'RO ', '291', 'Sardu'),
4219
+ (4189, 'RO ', '291', 'Satu Lung'),
4220
+ (4190, 'RO ', '291', 'Saula'),
4221
+ (4191, 'RO ', '291', 'Sava'),
4222
+ (4192, 'RO ', '291', 'Savadisla'),
4223
+ (4193, 'RO ', '291', 'Scrind-Frasinet'),
4224
+ (4194, 'RO ', '291', 'Sic'),
4225
+ (4195, 'RO ', '291', 'Sicfa'),
4226
+ (4196, 'RO ', '291', 'Sigau'),
4227
+ (4197, 'RO ', '291', 'Silivas'),
4228
+ (4198, 'RO ', '291', 'Smida'),
4229
+ (4199, 'RO ', '291', 'Soimeni'),
4230
+ (4200, 'RO ', '291', 'Somcutu Mic'),
4231
+ (4201, 'RO ', '291', 'Somesu Cald'),
4232
+ (4202, 'RO ', '291', 'Somesu Rece'),
4233
+ (4203, 'RO ', '291', 'Soporu de Campie'),
4234
+ (4204, 'RO ', '291', 'Stejeris'),
4235
+ (4205, 'RO ', '291', 'Stoiana'),
4236
+ (4206, 'RO ', '291', 'Stolna'),
4237
+ (4207, 'RO ', '291', 'Straja (Capusu Mare)'),
4238
+ (4208, 'RO ', '291', 'Straja (Cojocna)'),
4239
+ (4209, 'RO ', '291', 'Strambu'),
4240
+ (4210, 'RO ', '291', 'Suaras'),
4241
+ (4211, 'RO ', '291', 'Suatu'),
4242
+ (4212, 'RO ', '291', 'Sub Coasta'),
4243
+ (4213, 'RO ', '291', 'Suceagu'),
4244
+ (4214, 'RO ', '291', 'Sucutard'),
4245
+ (4215, 'RO ', '291', 'Sumurducu'),
4246
+ (4216, 'RO ', '291', 'Surduc'),
4247
+ (4217, 'RO ', '291', 'Taga'),
4248
+ (4218, 'RO ', '291', 'Targusor'),
4249
+ (4219, 'RO ', '291', 'Tarnita'),
4250
+ (4220, 'RO ', '291', 'Tarpiu'),
4251
+ (4221, 'RO ', '291', 'Tauseni'),
4252
+ (4222, 'RO ', '291', 'Tauti'),
4253
+ (4223, 'RO ', '291', 'Ticu'),
4254
+ (4224, 'RO ', '291', 'Ticu-Colonie'),
4255
+ (4225, 'RO ', '291', 'Tiocu de Jos'),
4256
+ (4226, 'RO ', '291', 'Tiocu de Sus'),
4257
+ (4227, 'RO ', '291', 'Tioltiur'),
4258
+ (4228, 'RO ', '291', 'Topa Mica'),
4259
+ (4229, 'RO ', '291', 'Tranisu'),
4260
+ (4230, 'RO ', '291', 'Tritenii de Jos'),
4261
+ (4231, 'RO ', '291', 'Tritenii de Sus'),
4262
+ (4232, 'RO ', '291', 'Tritenii-Hotar'),
4263
+ (4233, 'RO ', '291', 'Turda'),
4264
+ (4234, 'RO ', '291', 'Turea'),
4265
+ (4235, 'RO ', '291', 'Tureni'),
4266
+ (4236, 'RO ', '291', 'Turmasi'),
4267
+ (4237, 'RO ', '291', 'Unguras'),
4268
+ (4238, 'RO ', '291', 'Urca'),
4269
+ (4239, 'RO ', '291', 'Urisor'),
4270
+ (4240, 'RO ', '291', 'Vad'),
4271
+ (4241, 'RO ', '291', 'Vaida-Camaras'),
4272
+ (4242, 'RO ', '291', 'Valcele'),
4273
+ (4243, 'RO ', '291', 'Valcelele'),
4274
+ (4244, 'RO ', '291', 'Vale'),
4275
+ (4245, 'RO ', '291', 'Valea Calda'),
4276
+ (4246, 'RO ', '291', 'Valea Caseielului'),
4277
+ (4247, 'RO ', '291', 'Valea Ciresoii'),
4278
+ (4248, 'RO ', '291', 'Valea Draganului'),
4279
+ (4249, 'RO ', '291', 'Valea Florilor'),
4280
+ (4250, 'RO ', '291', 'Valea Garboului'),
4281
+ (4251, 'RO ', '291', 'Valea Grosilor'),
4282
+ (4252, 'RO ', '291', 'Valea Ierii'),
4283
+ (4253, 'RO ', '291', 'Valea lui Cati'),
4284
+ (4254, 'RO ', '291', 'Valea lui Opris'),
4285
+ (4255, 'RO ', '291', 'Valea Luncii'),
4286
+ (4256, 'RO ', '291', 'Valea Ungurasului'),
4287
+ (4257, 'RO ', '291', 'Valea Vadului'),
4288
+ (4258, 'RO ', '291', 'Valeni (Caianu)'),
4289
+ (4259, 'RO ', '291', 'Valeni (Calatele)'),
4290
+ (4260, 'RO ', '291', 'Valisoara '),
4291
+ (4261, 'RO ', '291', 'Vanatori'),
4292
+ (4262, 'RO ', '291', 'Vechea'),
4293
+ (4263, 'RO ', '291', 'Viisoara'),
4294
+ (4264, 'RO ', '291', 'Visagu'),
4295
+ (4265, 'RO ', '291', 'Visea'),
4296
+ (4266, 'RO ', '291', 'Vistea'),
4297
+ (4267, 'RO ', '291', 'Vlaha'),
4298
+ (4268, 'RO ', '291', 'Vultureni'),
4299
+ (4269, 'RO ', '291', 'Zorenii de Vale'),
4300
+ (4270, 'RO ', '292', '2 Mai'),
4301
+ (4271, 'RO ', '292', '23-Aug'),
4302
+ (4272, 'RO ', '292', 'Abrud'),
4303
+ (4273, 'RO ', '292', 'Adamclisi'),
4304
+ (4274, 'RO ', '292', 'Agigea'),
4305
+ (4275, 'RO ', '292', 'Albesti'),
4306
+ (4276, 'RO ', '292', 'Aliman'),
4307
+ (4277, 'RO ', '292', 'Almalau'),
4308
+ (4278, 'RO ', '292', 'Amzacea'),
4309
+ (4279, 'RO ', '292', 'Arsa'),
4310
+ (4280, 'RO ', '292', 'Aurora'),
4311
+ (4281, 'RO ', '292', 'Baltagesti'),
4312
+ (4282, 'RO ', '292', 'Baneasa'),
4313
+ (4283, 'RO ', '292', 'Baraganu'),
4314
+ (4284, 'RO ', '292', 'Biruinta'),
4315
+ (4285, 'RO ', '292', 'Bugeac'),
4316
+ (4286, 'RO ', '292', 'Calugareni'),
4317
+ (4287, 'RO ', '292', 'Canlia'),
4318
+ (4288, 'RO ', '292', 'Capidava'),
4319
+ (4289, 'RO ', '292', 'Carvan'),
4320
+ (4290, 'RO ', '292', 'Cascioarele'),
4321
+ (4291, 'RO ', '292', 'Casian'),
4322
+ (4292, 'RO ', '292', 'Casicea'),
4323
+ (4293, 'RO ', '292', 'Castelu'),
4324
+ (4294, 'RO ', '292', 'Cerchezu'),
4325
+ (4295, 'RO ', '292', 'Cernavoda'),
4326
+ (4296, 'RO ', '292', 'Cheia'),
4327
+ (4297, 'RO ', '292', 'Chirnogeni'),
4328
+ (4298, 'RO ', '292', 'Ciobanita'),
4329
+ (4299, 'RO ', '292', 'Ciobanu'),
4330
+ (4300, 'RO ', '292', 'Ciocarlia'),
4331
+ (4301, 'RO ', '292', 'Ciocarlia de Sus'),
4332
+ (4302, 'RO ', '292', 'Closca'),
4333
+ (4303, 'RO ', '292', 'Cobadin'),
4334
+ (4304, 'RO ', '292', 'Cochirleni'),
4335
+ (4305, 'RO ', '292', 'Cogealac'),
4336
+ (4306, 'RO ', '292', 'Comana'),
4337
+ (4307, 'RO ', '292', 'Conacu'),
4338
+ (4308, 'RO ', '292', 'Constanta'),
4339
+ (4309, 'RO ', '292', 'Corbu'),
4340
+ (4310, 'RO ', '292', 'Coslugea'),
4341
+ (4311, 'RO ', '292', 'Costinesti'),
4342
+ (4312, 'RO ', '292', 'Cotu Vaii'),
4343
+ (4313, 'RO ', '292', 'Crangu'),
4344
+ (4314, 'RO ', '292', 'Credinta'),
4345
+ (4315, 'RO ', '292', 'Crisan'),
4346
+ (4316, 'RO ', '292', 'Crucea'),
4347
+ (4317, 'RO ', '292', 'Cumpana'),
4348
+ (4318, 'RO ', '292', 'Cuza Voda'),
4349
+ (4319, 'RO ', '292', 'Darabani'),
4350
+ (4320, 'RO ', '292', 'Deleni'),
4351
+ (4321, 'RO ', '292', 'Dobromir'),
4352
+ (4322, 'RO ', '292', 'Dobromiru din Deal'),
4353
+ (4323, 'RO ', '292', 'Dorobantu'),
4354
+ (4324, 'RO ', '292', 'Dropia'),
4355
+ (4325, 'RO ', '292', 'Dulcesti'),
4356
+ (4326, 'RO ', '292', 'Dulgheru'),
4357
+ (4327, 'RO ', '292', 'Dumbraveni'),
4358
+ (4328, 'RO ', '292', 'Dunarea'),
4359
+ (4329, 'RO ', '292', 'Dunareni'),
4360
+ (4330, 'RO ', '292', 'Eforie Nord'),
4361
+ (4331, 'RO ', '292', 'Eforie Sud'),
4362
+ (4332, 'RO ', '292', 'Esechioi'),
4363
+ (4333, 'RO ', '292', 'Faclia'),
4364
+ (4334, 'RO ', '292', 'Fantana Mare'),
4365
+ (4335, 'RO ', '292', 'Fantanele'),
4366
+ (4336, 'RO ', '292', 'Faurei'),
4367
+ (4337, 'RO ', '292', 'Floriile'),
4368
+ (4338, 'RO ', '292', 'Furnica'),
4369
+ (4339, 'RO ', '292', 'Galbiori'),
4370
+ (4340, 'RO ', '292', 'Galita'),
4371
+ (4341, 'RO ', '292', 'Garliciu'),
4372
+ (4342, 'RO ', '292', 'Garlita '),
4373
+ (4343, 'RO ', '292', 'General Scarisoreanu'),
4374
+ (4344, 'RO ', '292', 'Gherghina'),
4375
+ (4345, 'RO ', '292', 'Ghindaresti'),
4376
+ (4346, 'RO ', '292', 'Goruni'),
4377
+ (4347, 'RO ', '292', 'Gradina'),
4378
+ (4348, 'RO ', '292', 'Gura Dobrogei'),
4379
+ (4349, 'RO ', '292', 'Harsova'),
4380
+ (4350, 'RO ', '292', 'Horia'),
4381
+ (4351, 'RO ', '292', 'Independenta'),
4382
+ (4352, 'RO ', '292', 'Ion Corvin'),
4383
+ (4353, 'RO ', '292', 'Istria'),
4384
+ (4354, 'RO ', '292', 'Ivrinezu Mare'),
4385
+ (4355, 'RO ', '292', 'Ivrinezu Mic'),
4386
+ (4356, 'RO ', '292', 'Izvoarele'),
4387
+ (4357, 'RO ', '292', 'Izvoru Mare'),
4388
+ (4358, 'RO ', '292', 'Jupiter'),
4389
+ (4359, 'RO ', '292', 'Lanurile'),
4390
+ (4360, 'RO ', '292', 'Lazu'),
4391
+ (4361, 'RO ', '292', 'Lespezi'),
4392
+ (4362, 'RO ', '292', 'Limanu'),
4393
+ (4363, 'RO ', '292', 'Lipnita'),
4394
+ (4364, 'RO ', '292', 'Lumina'),
4395
+ (4365, 'RO ', '292', 'Luminita'),
4396
+ (4366, 'RO ', '292', 'Magura'),
4397
+ (4367, 'RO ', '292', 'Mamaia'),
4398
+ (4368, 'RO ', '292', 'Mamaia-Sat'),
4399
+ (4369, 'RO ', '292', 'Mangalia'),
4400
+ (4370, 'RO ', '292', 'Medgidia'),
4401
+ (4371, 'RO ', '292', 'Mereni'),
4402
+ (4372, 'RO ', '292', 'Mihai Viteazu'),
4403
+ (4373, 'RO ', '292', 'Mihail Kogalniceanu'),
4404
+ (4374, 'RO ', '292', 'Miorita'),
4405
+ (4375, 'RO ', '292', 'Mircea Voda'),
4406
+ (4376, 'RO ', '292', 'Mireasa'),
4407
+ (4377, 'RO ', '292', 'Miristea'),
4408
+ (4378, 'RO ', '292', 'Mosneni'),
4409
+ (4379, 'RO ', '292', 'Movila Verde'),
4410
+ (4380, 'RO ', '292', 'Movilita'),
4411
+ (4381, 'RO ', '292', 'Murfatlar'),
4412
+ (4382, 'RO ', '292', 'Navodari'),
4413
+ (4383, 'RO ', '292', 'Navodari Tabara'),
4414
+ (4384, 'RO ', '292', 'Nazarcea'),
4415
+ (4385, 'RO ', '292', 'Negresti'),
4416
+ (4386, 'RO ', '292', 'Negru Voda'),
4417
+ (4387, 'RO ', '292', 'Negureni'),
4418
+ (4388, 'RO ', '292', 'Neptun'),
4419
+ (4389, 'RO ', '292', 'Nicolae Balcescu'),
4420
+ (4390, 'RO ', '292', 'Nisipari'),
4421
+ (4391, 'RO ', '292', 'Nistoresti'),
4422
+ (4392, 'RO ', '292', 'Nuntasi'),
4423
+ (4393, 'RO ', '292', 'Oituz'),
4424
+ (4394, 'RO ', '292', 'Olimp'),
4425
+ (4395, 'RO ', '292', 'Olteni'),
4426
+ (4396, 'RO ', '292', 'Oltina'),
4427
+ (4397, 'RO ', '292', 'Osmancea'),
4428
+ (4398, 'RO ', '292', 'Ostrov'),
4429
+ (4399, 'RO ', '292', 'Ovidiu'),
4430
+ (4400, 'RO ', '292', 'Padureni'),
4431
+ (4401, 'RO ', '292', 'Palazu Mare'),
4432
+ (4402, 'RO ', '292', 'Palazu Mic'),
4433
+ (4403, 'RO ', '292', 'Pantelimon'),
4434
+ (4404, 'RO ', '292', 'Pantelimon de Jos'),
4435
+ (4405, 'RO ', '292', 'Pecineaga'),
4436
+ (4406, 'RO ', '292', 'Pelinu'),
4437
+ (4407, 'RO ', '292', 'Pestera'),
4438
+ (4408, 'RO ', '292', 'Petrosani'),
4439
+ (4409, 'RO ', '292', 'Piatra'),
4440
+ (4410, 'RO ', '292', 'Pietreni'),
4441
+ (4411, 'RO ', '292', 'Plopeni'),
4442
+ (4412, 'RO ', '292', 'Poarta Alba'),
4443
+ (4413, 'RO ', '292', 'Poiana'),
4444
+ (4414, 'RO ', '292', 'Potarnichea'),
4445
+ (4415, 'RO ', '292', 'Ramnicu de Jos'),
4446
+ (4416, 'RO ', '292', 'Ramnicu de Sus'),
4447
+ (4417, 'RO ', '292', 'Raristea'),
4448
+ (4418, 'RO ', '292', 'Rasova'),
4449
+ (4419, 'RO ', '292', 'Razoarele'),
4450
+ (4420, 'RO ', '292', 'Remus Opreanu'),
4451
+ (4421, 'RO ', '292', 'Runcu'),
4452
+ (4422, 'RO ', '292', 'Sacele'),
4453
+ (4423, 'RO ', '292', 'Saligny'),
4454
+ (4424, 'RO ', '292', 'Sanatoriul Agigea'),
4455
+ (4425, 'RO ', '292', 'Saraiu'),
4456
+ (4426, 'RO ', '292', 'Satu Nou (Mircea Voda)'),
4457
+ (4427, 'RO ', '292', 'Satu Nou (Oltina)'),
4458
+ (4428, 'RO ', '292', 'Saturn'),
4459
+ (4429, 'RO ', '292', 'Schitu'),
4460
+ (4430, 'RO ', '292', 'Seimeni'),
4461
+ (4431, 'RO ', '292', 'Seimenii Mici'),
4462
+ (4432, 'RO ', '292', 'Sibioara'),
4463
+ (4433, 'RO ', '292', 'Silistea'),
4464
+ (4434, 'RO ', '292', 'Siminoc'),
4465
+ (4435, 'RO ', '292', 'Sinoie'),
4466
+ (4436, 'RO ', '292', 'Sipotele'),
4467
+ (4437, 'RO ', '292', 'Siriu'),
4468
+ (4438, 'RO ', '292', 'Statiunea Zoologica Marina Agigea'),
4469
+ (4439, 'RO ', '292', 'Stefan cel Mare'),
4470
+ (4440, 'RO ', '292', 'Straja'),
4471
+ (4441, 'RO ', '292', 'Stupina'),
4472
+ (4442, 'RO ', '292', 'Targusor'),
4473
+ (4443, 'RO ', '292', 'Tariverde'),
4474
+ (4444, 'RO ', '292', 'Tataru'),
4475
+ (4445, 'RO ', '292', 'Techirghiol'),
4476
+ (4446, 'RO ', '292', 'Tepes Voda'),
4477
+ (4447, 'RO ', '292', 'Tibrinu'),
4478
+ (4448, 'RO ', '292', 'Tichilesti'),
4479
+ (4449, 'RO ', '292', 'Topalu'),
4480
+ (4450, 'RO ', '292', 'Topraisar'),
4481
+ (4451, 'RO ', '292', 'Tortoman'),
4482
+ (4452, 'RO ', '292', 'Traian'),
4483
+ (4453, 'RO ', '292', 'Tufani'),
4484
+ (4454, 'RO ', '292', 'Tuzla'),
4485
+ (4455, 'RO ', '292', 'Urluia'),
4486
+ (4456, 'RO ', '292', 'Vadu '),
4487
+ (4457, 'RO ', '292', 'Vadu Oii'),
4488
+ (4458, 'RO ', '292', 'Valcelele'),
4489
+ (4459, 'RO ', '292', 'Valea Dacilor'),
4490
+ (4460, 'RO ', '292', 'Valeni'),
4491
+ (4461, 'RO ', '292', 'Valu lui Traian'),
4492
+ (4462, 'RO ', '292', 'Vama Veche'),
4493
+ (4463, 'RO ', '292', 'Vartop'),
4494
+ (4464, 'RO ', '292', 'Venus'),
4495
+ (4465, 'RO ', '292', 'Viile'),
4496
+ (4466, 'RO ', '292', 'Viisoara'),
4497
+ (4467, 'RO ', '292', 'Viroaga'),
4498
+ (4468, 'RO ', '292', 'Vlahii'),
4499
+ (4469, 'RO ', '292', 'Vulturu'),
4500
+ (4470, 'RO ', '292', 'Zorile'),
4501
+ (4471, 'RO ', '293', 'Aita Mare'),
4502
+ (4472, 'RO ', '293', 'Aita Medie'),
4503
+ (4473, 'RO ', '293', 'Aita Seaca'),
4504
+ (4474, 'RO ', '293', 'Albis'),
4505
+ (4475, 'RO ', '293', 'Alungeni'),
4506
+ (4476, 'RO ', '293', 'Anghelus'),
4507
+ (4477, 'RO ', '293', 'Aninoasa'),
4508
+ (4478, 'RO ', '293', 'Araci'),
4509
+ (4479, 'RO ', '293', 'Arcus'),
4510
+ (4480, 'RO ', '293', 'Ariusd'),
4511
+ (4481, 'RO ', '293', 'Bacel'),
4512
+ (4482, 'RO ', '293', 'Baraolt'),
4513
+ (4483, 'RO ', '293', 'Barcani'),
4514
+ (4484, 'RO ', '293', 'Batani'),
4515
+ (4485, 'RO ', '293', 'Batanii Mari'),
4516
+ (4486, 'RO ', '293', 'Batanii Mici'),
4517
+ (4487, 'RO ', '293', 'Belani'),
4518
+ (4488, 'RO ', '293', 'Belin'),
4519
+ (4489, 'RO ', '293', 'Belin-Vale'),
4520
+ (4490, 'RO ', '293', 'Biborteni'),
4521
+ (4491, 'RO ', '293', 'Bicfalau'),
4522
+ (4492, 'RO ', '293', 'Bita'),
4523
+ (4493, 'RO ', '293', 'Bixad'),
4524
+ (4494, 'RO ', '293', 'Bodoc'),
4525
+ (4495, 'RO ', '293', 'Bodos'),
4526
+ (4496, 'RO ', '293', 'Borosneu Mare'),
4527
+ (4497, 'RO ', '293', 'Borosneu Mic'),
4528
+ (4498, 'RO ', '293', 'Bradet'),
4529
+ (4499, 'RO ', '293', 'Bradut'),
4530
+ (4500, 'RO ', '293', 'Brates'),
4531
+ (4501, 'RO ', '293', 'Bretcu'),
4532
+ (4502, 'RO ', '293', 'Calnic'),
4533
+ (4503, 'RO ', '293', 'Capeni'),
4534
+ (4504, 'RO ', '293', 'Carpinenii'),
4535
+ (4505, 'RO ', '293', 'Casinu Mic'),
4536
+ (4506, 'RO ', '293', 'Catalina'),
4537
+ (4507, 'RO ', '293', 'Cernat'),
4538
+ (4508, 'RO ', '293', 'Chichis'),
4539
+ (4509, 'RO ', '293', 'Chilieni'),
4540
+ (4510, 'RO ', '293', 'Chiurus'),
4541
+ (4511, 'RO ', '293', 'Comandau'),
4542
+ (4512, 'RO ', '293', 'Coseni'),
4543
+ (4513, 'RO ', '293', 'Covasna'),
4544
+ (4514, 'RO ', '293', 'Crasna'),
4545
+ (4515, 'RO ', '293', 'Dalnic'),
4546
+ (4516, 'RO ', '293', 'Dobarlau'),
4547
+ (4517, 'RO ', '293', 'Dobolii De Jos'),
4548
+ (4518, 'RO ', '293', 'Dobolii de Sus'),
4549
+ (4519, 'RO ', '293', 'Doboseni'),
4550
+ (4520, 'RO ', '293', 'Estelnic'),
4551
+ (4521, 'RO ', '293', 'Filia'),
4552
+ (4522, 'RO ', '293', 'Floroaia'),
4553
+ (4523, 'RO ', '293', 'Fotos'),
4554
+ (4524, 'RO ', '293', 'Ghelinta'),
4555
+ (4525, 'RO ', '293', 'Ghidfalau'),
4556
+ (4526, 'RO ', '293', 'Haghig'),
4557
+ (4527, 'RO ', '293', 'Harale'),
4558
+ (4528, 'RO ', '293', 'Hatuica'),
4559
+ (4529, 'RO ', '293', 'Herculian'),
4560
+ (4530, 'RO ', '293', 'Hetea'),
4561
+ (4531, 'RO ', '293', 'Hilib'),
4562
+ (4532, 'RO ', '293', 'Iaras'),
4563
+ (4533, 'RO ', '293', 'Icafalau'),
4564
+ (4534, 'RO ', '293', 'Ilieni'),
4565
+ (4535, 'RO ', '293', 'Imeni'),
4566
+ (4536, 'RO ', '293', 'Intorsura Buzaului'),
4567
+ (4537, 'RO ', '293', 'Ladauti'),
4568
+ (4538, 'RO ', '293', 'Lemnia'),
4569
+ (4539, 'RO ', '293', 'Let'),
4570
+ (4540, 'RO ', '293', 'Lisnau'),
4571
+ (4541, 'RO ', '293', 'Lisnau-Vale'),
4572
+ (4542, 'RO ', '293', 'Lunca Marcusului'),
4573
+ (4543, 'RO ', '293', 'Lunca Ozunului'),
4574
+ (4544, 'RO ', '293', 'Lunga'),
4575
+ (4545, 'RO ', '293', 'Lutoasa'),
4576
+ (4546, 'RO ', '293', 'Magherus'),
4577
+ (4547, 'RO ', '293', 'Malnas'),
4578
+ (4548, 'RO ', '293', 'Malnas-Bai'),
4579
+ (4549, 'RO ', '293', 'Marcus'),
4580
+ (4550, 'RO ', '293', 'Marcusa'),
4581
+ (4551, 'RO ', '293', 'Martanus'),
4582
+ (4552, 'RO ', '293', 'Martineni');
4583
+ INSERT INTO `directory_country_region_city` (`city_id`, `country_id`, `region_id`, `cityname`) VALUES
4584
+ (4553, 'RO ', '293', 'Mereni'),
4585
+ (4554, 'RO ', '293', 'Merisor'),
4586
+ (4555, 'RO ', '293', 'Micfalau'),
4587
+ (4556, 'RO ', '293', 'Miclosoara'),
4588
+ (4557, 'RO ', '293', 'Moacsa'),
4589
+ (4558, 'RO ', '293', 'Oituz'),
4590
+ (4559, 'RO ', '293', 'Ojdula'),
4591
+ (4560, 'RO ', '293', 'Olteni'),
4592
+ (4561, 'RO ', '293', 'Ozun'),
4593
+ (4562, 'RO ', '293', 'Ozunca-Bai'),
4594
+ (4563, 'RO ', '293', 'Pachia'),
4595
+ (4564, 'RO ', '293', 'Padureni'),
4596
+ (4565, 'RO ', '293', 'Papauti'),
4597
+ (4566, 'RO ', '293', 'Peteni'),
4598
+ (4567, 'RO ', '293', 'Petriceni'),
4599
+ (4568, 'RO ', '293', 'Poian'),
4600
+ (4569, 'RO ', '293', 'Racosul de Sus'),
4601
+ (4570, 'RO ', '293', 'Reci'),
4602
+ (4571, 'RO ', '293', 'Saciova'),
4603
+ (4572, 'RO ', '293', 'Sancraiu'),
4604
+ (4573, 'RO ', '293', 'SantionLunca'),
4605
+ (4574, 'RO ', '293', 'Sanzieni'),
4606
+ (4575, 'RO ', '293', 'Saramas'),
4607
+ (4576, 'RO ', '293', 'Scradoasa'),
4608
+ (4577, 'RO ', '293', 'Sfantu Gheorghe'),
4609
+ (4578, 'RO ', '293', 'Sita Buzaului'),
4610
+ (4579, 'RO ', '293', 'Surcea'),
4611
+ (4580, 'RO ', '293', 'Talisoara'),
4612
+ (4581, 'RO ', '293', 'Tamasfalau'),
4613
+ (4582, 'RO ', '293', 'Targu Secuiesc'),
4614
+ (4583, 'RO ', '293', 'Telechia'),
4615
+ (4584, 'RO ', '293', 'Tufalau'),
4616
+ (4585, 'RO ', '293', 'Turia'),
4617
+ (4586, 'RO ', '293', 'Valcele'),
4618
+ (4587, 'RO ', '293', 'Valea Crisului'),
4619
+ (4588, 'RO ', '293', 'Valea Dobarlaului'),
4620
+ (4589, 'RO ', '293', 'Valea Mare'),
4621
+ (4590, 'RO ', '293', 'Valea Mica'),
4622
+ (4591, 'RO ', '293', 'Valea Scurta'),
4623
+ (4592, 'RO ', '293', 'Valea Seaca'),
4624
+ (4593, 'RO ', '293', 'Valea Zalanului'),
4625
+ (4594, 'RO ', '293', 'Varghis'),
4626
+ (4595, 'RO ', '293', 'Zabala'),
4627
+ (4596, 'RO ', '293', 'Zabratau'),
4628
+ (4597, 'RO ', '293', 'Zagon'),
4629
+ (4598, 'RO ', '293', 'Zalan'),
4630
+ (4599, 'RO ', '293', 'Zoltan'),
4631
+ (4600, 'RO ', '294', 'Adanca'),
4632
+ (4601, 'RO ', '294', 'Aninoasa'),
4633
+ (4602, 'RO ', '294', 'Aninosani'),
4634
+ (4603, 'RO ', '294', 'Bacesti'),
4635
+ (4604, 'RO ', '294', 'Badeni'),
4636
+ (4605, 'RO ', '294', 'Badulesti'),
4637
+ (4606, 'RO ', '294', 'Baldana'),
4638
+ (4607, 'RO ', '294', 'Baleni'),
4639
+ (4608, 'RO ', '294', 'Baleni-Romani'),
4640
+ (4609, 'RO ', '294', 'Baleni-Sarbi'),
4641
+ (4610, 'RO ', '294', 'Balteni'),
4642
+ (4611, 'RO ', '294', 'Banesti'),
4643
+ (4612, 'RO ', '294', 'Baraceni'),
4644
+ (4613, 'RO ', '294', 'Barbuceanu'),
4645
+ (4614, 'RO ', '294', 'Barbuletu'),
4646
+ (4615, 'RO ', '294', 'Bechinesti'),
4647
+ (4616, 'RO ', '294', 'Bela'),
4648
+ (4617, 'RO ', '294', 'Berevoesti'),
4649
+ (4618, 'RO ', '294', 'Bezdead'),
4650
+ (4619, 'RO ', '294', 'Bilciuresti'),
4651
+ (4620, 'RO ', '294', 'Blidari'),
4652
+ (4621, 'RO ', '294', 'Boboci'),
4653
+ (4622, 'RO ', '294', 'Bolovani'),
4654
+ (4623, 'RO ', '294', 'Boteni'),
4655
+ (4624, 'RO ', '294', 'Brancoveanu'),
4656
+ (4625, 'RO ', '294', 'Branesti'),
4657
+ (4626, 'RO ', '294', 'Branistea'),
4658
+ (4627, 'RO ', '294', 'Bratestii de Jos'),
4659
+ (4628, 'RO ', '294', 'Brebu'),
4660
+ (4629, 'RO ', '294', 'Brezoaele'),
4661
+ (4630, 'RO ', '294', 'Brezoaia '),
4662
+ (4631, 'RO ', '294', 'Brosteni (Bezdead)'),
4663
+ (4632, 'RO ', '294', 'Brosteni (Produlesti)'),
4664
+ (4633, 'RO ', '294', 'Brosteni (Visina)'),
4665
+ (4634, 'RO ', '294', 'Buciumeni'),
4666
+ (4635, 'RO ', '294', 'Bucsani'),
4667
+ (4636, 'RO ', '294', 'Bujoreanca'),
4668
+ (4637, 'RO ', '294', 'Bumbuia'),
4669
+ (4638, 'RO ', '294', 'Bungetu'),
4670
+ (4639, 'RO ', '294', 'Burduca'),
4671
+ (4640, 'RO ', '294', 'Butimanu'),
4672
+ (4641, 'RO ', '294', 'Butoiu de Jos'),
4673
+ (4642, 'RO ', '294', 'Butoiu de Sus'),
4674
+ (4643, 'RO ', '294', 'Calugareni (Cobia)'),
4675
+ (4644, 'RO ', '294', 'Calugareni (Contesti)'),
4676
+ (4645, 'RO ', '294', 'Candesti'),
4677
+ (4646, 'RO ', '294', 'Candesti-Deal'),
4678
+ (4647, 'RO ', '294', 'Candesti-Vale'),
4679
+ (4648, 'RO ', '294', 'Caprioru'),
4680
+ (4649, 'RO ', '294', 'Capsuna'),
4681
+ (4650, 'RO ', '294', 'Capu Coastei'),
4682
+ (4651, 'RO ', '294', 'Carlanesti'),
4683
+ (4652, 'RO ', '294', 'Catanele'),
4684
+ (4653, 'RO ', '294', 'Catunu (Cornesti)'),
4685
+ (4654, 'RO ', '294', 'Catunu (Salcioara)'),
4686
+ (4655, 'RO ', '294', 'Cazaci'),
4687
+ (4656, 'RO ', '294', 'Chirca'),
4688
+ (4657, 'RO ', '294', 'Ciocanari'),
4689
+ (4658, 'RO ', '294', 'Ciocanesti'),
4690
+ (4659, 'RO ', '294', 'Coada Izvorului'),
4691
+ (4660, 'RO ', '294', 'Cobia'),
4692
+ (4661, 'RO ', '294', 'Cobiuta'),
4693
+ (4662, 'RO ', '294', 'Cocani'),
4694
+ (4663, 'RO ', '294', 'Cojasca'),
4695
+ (4664, 'RO ', '294', 'Cojocaru'),
4696
+ (4665, 'RO ', '294', 'Colacu'),
4697
+ (4666, 'RO ', '294', 'Colanu'),
4698
+ (4667, 'RO ', '294', 'Colibasi'),
4699
+ (4668, 'RO ', '294', 'Comisani'),
4700
+ (4669, 'RO ', '294', 'Contesti'),
4701
+ (4670, 'RO ', '294', 'Corbii Mari'),
4702
+ (4671, 'RO ', '294', 'Cornatelu'),
4703
+ (4672, 'RO ', '294', 'Cornesti'),
4704
+ (4673, 'RO ', '294', 'Costesti'),
4705
+ (4674, 'RO ', '294', 'Costestii din Deal'),
4706
+ (4675, 'RO ', '294', 'Costestii din Vale'),
4707
+ (4676, 'RO ', '294', 'Costisata'),
4708
+ (4677, 'RO ', '294', 'Craciunesti'),
4709
+ (4678, 'RO ', '294', 'Crangasi'),
4710
+ (4679, 'RO ', '294', 'Crangurile'),
4711
+ (4680, 'RO ', '294', 'Crangurile de Jos'),
4712
+ (4681, 'RO ', '294', 'Crangurile de Sus'),
4713
+ (4682, 'RO ', '294', 'Cretu'),
4714
+ (4683, 'RO ', '294', 'Cretulesti'),
4715
+ (4684, 'RO ', '294', 'Crevedia'),
4716
+ (4685, 'RO ', '294', 'Cricovu Dulce'),
4717
+ (4686, 'RO ', '294', 'Cristeasca'),
4718
+ (4687, 'RO ', '294', 'Crivatu'),
4719
+ (4688, 'RO ', '294', 'Croitori'),
4720
+ (4689, 'RO ', '294', 'Crovu'),
4721
+ (4690, 'RO ', '294', 'Cucuteni'),
4722
+ (4691, 'RO ', '294', 'Cuparu'),
4723
+ (4692, 'RO ', '294', 'Cuza Voda'),
4724
+ (4693, 'RO ', '294', 'Dambovicioara'),
4725
+ (4694, 'RO ', '294', 'Darmanesti'),
4726
+ (4695, 'RO ', '294', 'Darza'),
4727
+ (4696, 'RO ', '294', 'Dealu Frumos'),
4728
+ (4697, 'RO ', '294', 'Dealu Mare'),
4729
+ (4698, 'RO ', '294', 'Decindea'),
4730
+ (4699, 'RO ', '294', 'Decindeni'),
4731
+ (4700, 'RO ', '294', 'Diaconesti'),
4732
+ (4701, 'RO ', '294', 'Dobra'),
4733
+ (4702, 'RO ', '294', 'Dobresti'),
4734
+ (4703, 'RO ', '294', 'Doicesti'),
4735
+ (4704, 'RO ', '294', 'Dragaesti-Pamanteni'),
4736
+ (4705, 'RO ', '294', 'Dragaesti-Ungureni'),
4737
+ (4706, 'RO ', '294', 'Dragodana'),
4738
+ (4707, 'RO ', '294', 'Dragodanesti'),
4739
+ (4708, 'RO ', '294', 'Dragomiresti'),
4740
+ (4709, 'RO ', '294', 'Dumbrava'),
4741
+ (4710, 'RO ', '294', 'Fagetu'),
4742
+ (4711, 'RO ', '294', 'Fantanele'),
4743
+ (4712, 'RO ', '294', 'Feteni'),
4744
+ (4713, 'RO ', '294', 'Fieni'),
4745
+ (4714, 'RO ', '294', 'Fierbinti'),
4746
+ (4715, 'RO ', '294', 'Finta'),
4747
+ (4716, 'RO ', '294', 'Finta Mare'),
4748
+ (4717, 'RO ', '294', 'Finta Veche'),
4749
+ (4718, 'RO ', '294', 'Frasin-Deal'),
4750
+ (4719, 'RO ', '294', 'Frasinu'),
4751
+ (4720, 'RO ', '294', 'Frasin-Vale'),
4752
+ (4721, 'RO ', '294', 'Fusea'),
4753
+ (4722, 'RO ', '294', 'Gaesti'),
4754
+ (4723, 'RO ', '294', 'Gamanesti'),
4755
+ (4724, 'RO ', '294', 'Garleni'),
4756
+ (4725, 'RO ', '294', 'Geangoesti'),
4757
+ (4726, 'RO ', '294', 'Gemenea-Bratulesti'),
4758
+ (4727, 'RO ', '294', 'Gheboaia'),
4759
+ (4728, 'RO ', '294', 'Gheboieni'),
4760
+ (4729, 'RO ', '294', 'Ghergani'),
4761
+ (4730, 'RO ', '294', 'Gherghesti'),
4762
+ (4731, 'RO ', '294', 'Gherghitesti'),
4763
+ (4732, 'RO ', '294', 'Ghimpati'),
4764
+ (4733, 'RO ', '294', 'Ghinesti'),
4765
+ (4734, 'RO ', '294', 'Ghirdoveni'),
4766
+ (4735, 'RO ', '294', 'Glod'),
4767
+ (4736, 'RO ', '294', 'Glodeni'),
4768
+ (4737, 'RO ', '294', 'Glodeni (Pucioasa)'),
4769
+ (4738, 'RO ', '294', 'Glogoveanu'),
4770
+ (4739, 'RO ', '294', 'Gorgota'),
4771
+ (4740, 'RO ', '294', 'Greci'),
4772
+ (4741, 'RO ', '294', 'Grozavesti'),
4773
+ (4742, 'RO ', '294', 'Gulia'),
4774
+ (4743, 'RO ', '294', 'Gura Barbuletului'),
4775
+ (4744, 'RO ', '294', 'Gura Foii'),
4776
+ (4745, 'RO ', '294', 'Gura Ocnitei'),
4777
+ (4746, 'RO ', '294', 'Gura Sutii'),
4778
+ (4747, 'RO ', '294', 'Gura Vulcanei'),
4779
+ (4748, 'RO ', '294', 'Gusoiu'),
4780
+ (4749, 'RO ', '294', 'Habeni'),
4781
+ (4750, 'RO ', '294', 'Hagioaica'),
4782
+ (4751, 'RO ', '294', 'Hanu lui Pala'),
4783
+ (4752, 'RO ', '294', 'Helesteu'),
4784
+ (4753, 'RO ', '294', 'Hulubesti'),
4785
+ (4754, 'RO ', '294', 'I. L. Caragiale'),
4786
+ (4755, 'RO ', '294', 'Iazu'),
4787
+ (4756, 'RO ', '294', 'Ibrianu'),
4788
+ (4757, 'RO ', '294', 'Iedera'),
4789
+ (4758, 'RO ', '294', 'Iedera de Jos'),
4790
+ (4759, 'RO ', '294', 'Iedera de Sus'),
4791
+ (4760, 'RO ', '294', 'Ilfoveni'),
4792
+ (4761, 'RO ', '294', 'Ionesti'),
4793
+ (4762, 'RO ', '294', 'Izvoarele'),
4794
+ (4763, 'RO ', '294', 'Izvoru (Valea Lunga)'),
4795
+ (4764, 'RO ', '294', 'Izvoru (Visina)'),
4796
+ (4765, 'RO ', '294', 'Jugureni'),
4797
+ (4766, 'RO ', '294', 'Laculete'),
4798
+ (4767, 'RO ', '294', 'Laculete-Gara'),
4799
+ (4768, 'RO ', '294', 'Lazuri'),
4800
+ (4769, 'RO ', '294', 'Livezile (Glodeni)'),
4801
+ (4770, 'RO ', '294', 'Livezile (Valea Mare)'),
4802
+ (4771, 'RO ', '294', 'Lucianca'),
4803
+ (4772, 'RO ', '294', 'Lucieni'),
4804
+ (4773, 'RO ', '294', 'Ludesti'),
4805
+ (4774, 'RO ', '294', 'Lunca (Moroeni)'),
4806
+ (4775, 'RO ', '294', 'Lunca (Voinesti)'),
4807
+ (4776, 'RO ', '294', 'Lunguletu'),
4808
+ (4777, 'RO ', '294', 'Magura (Bezdead)'),
4809
+ (4778, 'RO ', '294', 'Magura (Hulubesti)'),
4810
+ (4779, 'RO ', '294', 'Malu cu Flori'),
4811
+ (4780, 'RO ', '294', 'Malu Mierii'),
4812
+ (4781, 'RO ', '294', 'Malurile'),
4813
+ (4782, 'RO ', '294', 'Manastioara'),
4814
+ (4783, 'RO ', '294', 'Manastirea'),
4815
+ (4784, 'RO ', '294', 'Manesti'),
4816
+ (4785, 'RO ', '294', 'Manga'),
4817
+ (4786, 'RO ', '294', 'Marcesti'),
4818
+ (4787, 'RO ', '294', 'Marginenii de Sus'),
4819
+ (4788, 'RO ', '294', 'Maruntisu'),
4820
+ (4789, 'RO ', '294', 'Matasaru'),
4821
+ (4790, 'RO ', '294', 'Matraca'),
4822
+ (4791, 'RO ', '294', 'Mavrodin'),
4823
+ (4792, 'RO ', '294', 'Mereni (Contesti)'),
4824
+ (4793, 'RO ', '294', 'Mereni (Titu)'),
4825
+ (4794, 'RO ', '294', 'Merii'),
4826
+ (4795, 'RO ', '294', 'Merisoru'),
4827
+ (4796, 'RO ', '294', 'Mesteacan'),
4828
+ (4797, 'RO ', '294', 'Miclosanii Mari'),
4829
+ (4798, 'RO ', '294', 'Miclosanii Mici'),
4830
+ (4799, 'RO ', '294', 'Mija'),
4831
+ (4800, 'RO ', '294', 'Milosari'),
4832
+ (4801, 'RO ', '294', 'Mircea Voda'),
4833
+ (4802, 'RO ', '294', 'Mislea'),
4834
+ (4803, 'RO ', '294', 'Miulesti'),
4835
+ (4804, 'RO ', '294', 'Moara Noua'),
4836
+ (4805, 'RO ', '294', 'Mogosani'),
4837
+ (4806, 'RO ', '294', 'Mogosesti'),
4838
+ (4807, 'RO ', '294', 'Moreni'),
4839
+ (4808, 'RO ', '294', 'Moroeni'),
4840
+ (4809, 'RO ', '294', 'Morteni'),
4841
+ (4810, 'RO ', '294', 'Motaieni'),
4842
+ (4811, 'RO ', '294', 'Movila (Niculesti)'),
4843
+ (4812, 'RO ', '294', 'Movila (Salcioara)'),
4844
+ (4813, 'RO ', '294', 'Neajlovu'),
4845
+ (4814, 'RO ', '294', 'Niculesti'),
4846
+ (4815, 'RO ', '294', 'Nisipurile'),
4847
+ (4816, 'RO ', '294', 'Nucet'),
4848
+ (4817, 'RO ', '294', 'Ochiuri'),
4849
+ (4818, 'RO ', '294', 'Ocnita'),
4850
+ (4819, 'RO ', '294', 'Odaia Turcului'),
4851
+ (4820, 'RO ', '294', 'Odobesti'),
4852
+ (4821, 'RO ', '294', 'Olteni (Lucieni)'),
4853
+ (4822, 'RO ', '294', 'Olteni (Uliesti)'),
4854
+ (4823, 'RO ', '294', 'Oncesti'),
4855
+ (4824, 'RO ', '294', 'Padureni'),
4856
+ (4825, 'RO ', '294', 'Patroaia-Deal'),
4857
+ (4826, 'RO ', '294', 'Patroaia-Vale'),
4858
+ (4827, 'RO ', '294', 'Persinari'),
4859
+ (4828, 'RO ', '294', 'Petresti'),
4860
+ (4829, 'RO ', '294', 'Petresti (Corbii Mari)'),
4861
+ (4830, 'RO ', '294', 'Piatra'),
4862
+ (4831, 'RO ', '294', 'Picior de Munte'),
4863
+ (4832, 'RO ', '294', 'Pietrari'),
4864
+ (4833, 'RO ', '294', 'Pietrosita'),
4865
+ (4834, 'RO ', '294', 'Pitaru'),
4866
+ (4835, 'RO ', '294', 'Plopu'),
4867
+ (4836, 'RO ', '294', 'Podu Corbencii'),
4868
+ (4837, 'RO ', '294', 'Podu Cristinii'),
4869
+ (4838, 'RO ', '294', 'Podu Rizii'),
4870
+ (4839, 'RO ', '294', 'Poiana'),
4871
+ (4840, 'RO ', '294', 'Poroinica'),
4872
+ (4841, 'RO ', '294', 'Postarnacu'),
4873
+ (4842, 'RO ', '294', 'Potlogeni-Deal'),
4874
+ (4843, 'RO ', '294', 'Potlogeni-Vale'),
4875
+ (4844, 'RO ', '294', 'Potlogi'),
4876
+ (4845, 'RO ', '294', 'Potocelu'),
4877
+ (4846, 'RO ', '294', 'Priboiu (Branesti)'),
4878
+ (4847, 'RO ', '294', 'Priboiu (Tatarani)'),
4879
+ (4848, 'RO ', '294', 'Priseaca'),
4880
+ (4849, 'RO ', '294', 'Produlesti'),
4881
+ (4850, 'RO ', '294', 'Pucheni'),
4882
+ (4851, 'RO ', '294', 'Pucheni (Moroeni)'),
4883
+ (4852, 'RO ', '294', 'Pucioasa'),
4884
+ (4853, 'RO ', '294', 'Pucioasa-Sat'),
4885
+ (4854, 'RO ', '294', 'Puntea de Greci'),
4886
+ (4855, 'RO ', '294', 'Putu cu Salcie'),
4887
+ (4856, 'RO ', '294', 'Racari'),
4888
+ (4857, 'RO ', '294', 'Raciu'),
4889
+ (4858, 'RO ', '294', 'Racovita'),
4890
+ (4859, 'RO ', '294', 'Ragu'),
4891
+ (4860, 'RO ', '294', 'Rancaciov'),
4892
+ (4861, 'RO ', '294', 'Rascaeti'),
4893
+ (4862, 'RO ', '294', 'Ratesti'),
4894
+ (4863, 'RO ', '294', 'Ratoaia'),
4895
+ (4864, 'RO ', '294', 'Rau Alb'),
4896
+ (4865, 'RO ', '294', 'Rau Alb de Jos'),
4897
+ (4866, 'RO ', '294', 'Rau Alb de Sus'),
4898
+ (4867, 'RO ', '294', 'Razvad'),
4899
+ (4868, 'RO ', '294', 'Romanesti'),
4900
+ (4869, 'RO ', '294', 'Runcu'),
4901
+ (4870, 'RO ', '294', 'Sabiesti'),
4902
+ (4871, 'RO ', '294', 'Sacueni'),
4903
+ (4872, 'RO ', '294', 'Salcioara'),
4904
+ (4873, 'RO ', '294', 'Salcioara (Matasaru)'),
4905
+ (4874, 'RO ', '294', 'Salcuta'),
4906
+ (4875, 'RO ', '294', 'Samurcasi'),
4907
+ (4876, 'RO ', '294', 'Saru'),
4908
+ (4877, 'RO ', '294', 'Sateni'),
4909
+ (4878, 'RO ', '294', 'Satu Nou'),
4910
+ (4879, 'RO ', '294', 'Scheiu de Jos'),
4911
+ (4880, 'RO ', '294', 'Scheiu de Sus'),
4912
+ (4881, 'RO ', '294', 'Schela'),
4913
+ (4882, 'RO ', '294', 'Selaru'),
4914
+ (4883, 'RO ', '294', 'Serbaneasa'),
4915
+ (4884, 'RO ', '294', 'Serdanu'),
4916
+ (4885, 'RO ', '294', 'Silistea (Raciu)'),
4917
+ (4886, 'RO ', '294', 'Silistea (Runcu)'),
4918
+ (4887, 'RO ', '294', 'Slobozia'),
4919
+ (4888, 'RO ', '294', 'Slobozia Moara'),
4920
+ (4889, 'RO ', '294', 'Sotanga'),
4921
+ (4890, 'RO ', '294', 'Sperieteni'),
4922
+ (4891, 'RO ', '294', 'Statesti'),
4923
+ (4892, 'RO ', '294', 'Stavropolia'),
4924
+ (4893, 'RO ', '294', 'Straosti'),
4925
+ (4894, 'RO ', '294', 'stratonesti'),
4926
+ (4895, 'RO ', '294', 'Stubeie Tisa'),
4927
+ (4896, 'RO ', '294', 'Sultanu'),
4928
+ (4897, 'RO ', '294', 'Suta Seaca'),
4929
+ (4898, 'RO ', '294', 'Suvita'),
4930
+ (4899, 'RO ', '294', 'Targoviste'),
4931
+ (4900, 'RO ', '294', 'Tartasesti'),
4932
+ (4901, 'RO ', '294', 'Tatarani'),
4933
+ (4902, 'RO ', '294', 'Teis'),
4934
+ (4903, 'RO ', '294', 'Telesti'),
4935
+ (4904, 'RO ', '294', 'Tetcoiu'),
4936
+ (4905, 'RO ', '294', 'Titu'),
4937
+ (4906, 'RO ', '294', 'Toculesti'),
4938
+ (4907, 'RO ', '294', 'Tomsani'),
4939
+ (4908, 'RO ', '294', 'Udresti'),
4940
+ (4909, 'RO ', '294', 'Uliesti'),
4941
+ (4910, 'RO ', '294', 'Ulmetu'),
4942
+ (4911, 'RO ', '294', 'Ulmi'),
4943
+ (4912, 'RO ', '294', 'Ungureni (Butimanu)'),
4944
+ (4913, 'RO ', '294', 'Ungureni (Corbii Mari)'),
4945
+ (4914, 'RO ', '294', 'Ungureni (Cornesti)'),
4946
+ (4915, 'RO ', '294', 'Ungureni (Dragomiresti)'),
4947
+ (4916, 'RO ', '294', 'Urseiu'),
4948
+ (4917, 'RO ', '294', 'Urziceanca'),
4949
+ (4918, 'RO ', '294', 'Vacaresti'),
4950
+ (4919, 'RO ', '294', 'Vadu Stanchii'),
4951
+ (4920, 'RO ', '294', 'Valea Caselor'),
4952
+ (4921, 'RO ', '294', 'Valea Dadei'),
4953
+ (4922, 'RO ', '294', 'Valea Leurzii'),
4954
+ (4923, 'RO ', '294', 'Valea lui Dan'),
4955
+ (4924, 'RO ', '294', 'Valea Lunga'),
4956
+ (4925, 'RO ', '294', 'Valea Lunga-Cricov'),
4957
+ (4926, 'RO ', '294', 'Valea Lunga-Gorgota'),
4958
+ (4927, 'RO ', '294', 'Valea Lunga-Ogrea'),
4959
+ (4928, 'RO ', '294', 'Valea Mare'),
4960
+ (4929, 'RO ', '294', 'Valea Mare (Candesti)'),
4961
+ (4930, 'RO ', '294', 'Valea Mare (Valea Lunga)'),
4962
+ (4931, 'RO ', '294', 'Valea Voievozilor'),
4963
+ (4932, 'RO ', '294', 'Valeni-Dambovita'),
4964
+ (4933, 'RO ', '294', 'Varfuri'),
4965
+ (4934, 'RO ', '294', 'Viforata'),
4966
+ (4935, 'RO ', '294', 'Viisoara'),
4967
+ (4936, 'RO ', '294', 'Visina'),
4968
+ (4937, 'RO ', '294', 'Visinesti'),
4969
+ (4938, 'RO ', '294', 'Vizuresti'),
4970
+ (4939, 'RO ', '294', 'Vladeni'),
4971
+ (4940, 'RO ', '294', 'Vlasceni'),
4972
+ (4941, 'RO ', '294', 'Voia'),
4973
+ (4942, 'RO ', '294', 'Voinesti'),
4974
+ (4943, 'RO ', '294', 'Vulcana de Sus'),
4975
+ (4944, 'RO ', '294', 'Vulcana-Bai'),
4976
+ (4945, 'RO ', '294', 'Vulcana-Pandele'),
4977
+ (4946, 'RO ', '294', 'Vultureanca'),
4978
+ (4947, 'RO ', '294', 'Zavoiu'),
4979
+ (4948, 'RO ', '294', 'Zidurile'),
4980
+ (4949, 'RO ', '295', 'Afumati'),
4981
+ (4950, 'RO ', '295', 'Albesti'),
4982
+ (4951, 'RO ', '295', 'Almaj'),
4983
+ (4952, 'RO ', '295', 'Almajel'),
4984
+ (4953, 'RO ', '295', 'Amarasti'),
4985
+ (4954, 'RO ', '295', 'Amarastii de Jos'),
4986
+ (4955, 'RO ', '295', 'Amarastii de Sus'),
4987
+ (4956, 'RO ', '295', 'Apele Vii'),
4988
+ (4957, 'RO ', '295', 'Argetoaia'),
4989
+ (4958, 'RO ', '295', 'Badosi'),
4990
+ (4959, 'RO ', '295', 'Bailesti'),
4991
+ (4960, 'RO ', '295', 'Balasan'),
4992
+ (4961, 'RO ', '295', 'Balota de Jos'),
4993
+ (4962, 'RO ', '295', 'Balota de Sus'),
4994
+ (4963, 'RO ', '295', 'Balta'),
4995
+ (4964, 'RO ', '295', 'Balta Verde'),
4996
+ (4965, 'RO ', '295', 'Baranu'),
4997
+ (4966, 'RO ', '295', 'Barboi'),
4998
+ (4967, 'RO ', '295', 'Barca'),
4999
+ (4968, 'RO ', '295', 'Basarabi'),
5000
+ (4969, 'RO ', '295', 'Bascov'),
5001
+ (4970, 'RO ', '295', 'Bazdana'),
5002
+ (4971, 'RO ', '295', 'Bechet'),
5003
+ (4972, 'RO ', '295', 'Bechet (Orodel)'),
5004
+ (4973, 'RO ', '295', 'Beharca'),
5005
+ (4974, 'RO ', '295', 'Belcinu'),
5006
+ (4975, 'RO ', '295', 'Belot'),
5007
+ (4976, 'RO ', '295', 'Benesti'),
5008
+ (4977, 'RO ', '295', 'Berbesu'),
5009
+ (4978, 'RO ', '295', 'Bistret'),
5010
+ (4979, 'RO ', '295', 'Bistretu Nou'),
5011
+ (4980, 'RO ', '295', 'Bobeanu'),
5012
+ (4981, 'RO ', '295', 'Bodaiesti'),
5013
+ (4982, 'RO ', '295', 'Bodaiestii de Sus'),
5014
+ (4983, 'RO ', '295', 'Bogea'),
5015
+ (4984, 'RO ', '295', 'Bojoiu'),
5016
+ (4985, 'RO ', '295', 'Booveni'),
5017
+ (4986, 'RO ', '295', 'Botosesti-Paia'),
5018
+ (4987, 'RO ', '295', 'Boureni'),
5019
+ (4988, 'RO ', '295', 'Brabeti'),
5020
+ (4989, 'RO ', '295', 'Brabova'),
5021
+ (4990, 'RO ', '295', 'Bradesti'),
5022
+ (4991, 'RO ', '295', 'Bradestii Batrani'),
5023
+ (4992, 'RO ', '295', 'Bralostita'),
5024
+ (4993, 'RO ', '295', 'Brandusa'),
5025
+ (4994, 'RO ', '295', 'Braniste (Daneti)'),
5026
+ (4995, 'RO ', '295', 'Braniste (Filiasi)'),
5027
+ (4996, 'RO ', '295', 'Braniste (Podari)'),
5028
+ (4997, 'RO ', '295', 'Bratovoesti'),
5029
+ (4998, 'RO ', '295', 'Breasta'),
5030
+ (4999, 'RO ', '295', 'Bucicani'),
5031
+ (5000, 'RO ', '295', 'Bucovat'),
5032
+ (5001, 'RO ', '295', 'Bucovicior'),
5033
+ (5002, 'RO ', '295', 'Bulzesti'),
5034
+ (5003, 'RO ', '295', 'Busu'),
5035
+ (5004, 'RO ', '295', 'Busuletu'),
5036
+ (5005, 'RO ', '295', 'Buzduc'),
5037
+ (5006, 'RO ', '295', 'Caciulatesti'),
5038
+ (5007, 'RO ', '295', 'Caciulatu'),
5039
+ (5008, 'RO ', '295', 'Calafat'),
5040
+ (5009, 'RO ', '295', 'Calarasi'),
5041
+ (5010, 'RO ', '295', 'Calopar'),
5042
+ (5011, 'RO ', '295', 'Calugarei'),
5043
+ (5012, 'RO ', '295', 'Campeni'),
5044
+ (5013, 'RO ', '295', 'Caraula'),
5045
+ (5014, 'RO ', '295', 'Carcea'),
5046
+ (5015, 'RO ', '295', 'Carligei'),
5047
+ (5016, 'RO ', '295', 'Carna'),
5048
+ (5017, 'RO ', '295', 'Carpen'),
5049
+ (5018, 'RO ', '295', 'Carstovani'),
5050
+ (5019, 'RO ', '295', 'Caruia'),
5051
+ (5020, 'RO ', '295', 'Castranova'),
5052
+ (5021, 'RO ', '295', 'Castrele Traiane'),
5053
+ (5022, 'RO ', '295', 'Catane'),
5054
+ (5023, 'RO ', '295', 'Catanele Noi'),
5055
+ (5024, 'RO ', '295', 'Celaru'),
5056
+ (5025, 'RO ', '295', 'Cerat'),
5057
+ (5026, 'RO ', '295', 'Cernatesti'),
5058
+ (5027, 'RO ', '295', 'Cetate'),
5059
+ (5028, 'RO ', '295', 'Cetatuia (Cioroiasi)'),
5060
+ (5029, 'RO ', '295', 'Cetatuia (Vela)'),
5061
+ (5030, 'RO ', '295', 'Chiasu'),
5062
+ (5031, 'RO ', '295', 'Ciocanele'),
5063
+ (5032, 'RO ', '295', 'Cioroiasi'),
5064
+ (5033, 'RO ', '295', 'Cioroiu Nou'),
5065
+ (5034, 'RO ', '295', 'Ciupercenii Noi'),
5066
+ (5035, 'RO ', '295', 'Ciupercenii Vechi'),
5067
+ (5036, 'RO ', '295', 'Ciutura'),
5068
+ (5037, 'RO ', '295', 'Cleanov'),
5069
+ (5038, 'RO ', '295', 'Comanicea'),
5070
+ (5039, 'RO ', '295', 'Comosteni'),
5071
+ (5040, 'RO ', '295', 'Corlate'),
5072
+ (5041, 'RO ', '295', 'Cornetu'),
5073
+ (5042, 'RO ', '295', 'Cornita'),
5074
+ (5043, 'RO ', '295', 'Cornu'),
5075
+ (5044, 'RO ', '295', 'Cosoveni'),
5076
+ (5045, 'RO ', '295', 'Cotofenii din Dos'),
5077
+ (5046, 'RO ', '295', 'Cotofenii din Fata'),
5078
+ (5047, 'RO ', '295', 'Cotu'),
5079
+ (5048, 'RO ', '295', 'Covei'),
5080
+ (5049, 'RO ', '295', 'Craiova'),
5081
+ (5050, 'RO ', '295', 'Criva'),
5082
+ (5051, 'RO ', '295', 'Crovna'),
5083
+ (5052, 'RO ', '295', 'Curmatura'),
5084
+ (5053, 'RO ', '295', 'Dabuleni'),
5085
+ (5054, 'RO ', '295', 'Daneti'),
5086
+ (5055, 'RO ', '295', 'Desa'),
5087
+ (5056, 'RO ', '295', 'Desnatui'),
5088
+ (5057, 'RO ', '295', 'Diosti'),
5089
+ (5058, 'RO ', '295', 'Dobresti'),
5090
+ (5059, 'RO ', '295', 'Dobridor'),
5091
+ (5060, 'RO ', '295', 'Dobromira'),
5092
+ (5061, 'RO ', '295', 'Dobrotesti'),
5093
+ (5062, 'RO ', '295', 'Domnu Tudor'),
5094
+ (5063, 'RO ', '295', 'Dragoaia'),
5095
+ (5064, 'RO ', '295', 'Dragotesti'),
5096
+ (5065, 'RO ', '295', 'Dranic'),
5097
+ (5066, 'RO ', '295', 'Dudovicesti'),
5098
+ (5067, 'RO ', '295', 'Dutulesti'),
5099
+ (5068, 'RO ', '295', 'Facai'),
5100
+ (5069, 'RO ', '295', 'Fantanele (Radovan)'),
5101
+ (5070, 'RO ', '295', 'Fantanele (Teslui)'),
5102
+ (5071, 'RO ', '295', 'Fantani'),
5103
+ (5072, 'RO ', '295', 'Farcas'),
5104
+ (5073, 'RO ', '295', 'Filaret'),
5105
+ (5074, 'RO ', '295', 'Filiasi'),
5106
+ (5075, 'RO ', '295', 'Floran'),
5107
+ (5076, 'RO ', '295', 'Floresti'),
5108
+ (5077, 'RO ', '295', 'Foisor'),
5109
+ (5078, 'RO ', '295', 'Frasin'),
5110
+ (5079, 'RO ', '295', 'Fratila'),
5111
+ (5080, 'RO ', '295', 'Fratostita'),
5112
+ (5081, 'RO ', '295', 'Gabru'),
5113
+ (5082, 'RO ', '295', 'Gaia'),
5114
+ (5083, 'RO ', '295', 'Galicea Mare'),
5115
+ (5084, 'RO ', '295', 'Galiciuica'),
5116
+ (5085, 'RO ', '295', 'Gangiova'),
5117
+ (5086, 'RO ', '295', 'Garlesti'),
5118
+ (5087, 'RO ', '295', 'Geblesti'),
5119
+ (5088, 'RO ', '295', 'Georocel'),
5120
+ (5089, 'RO ', '295', 'Georocu Mare'),
5121
+ (5090, 'RO ', '295', 'Ghercesti'),
5122
+ (5091, 'RO ', '295', 'Ghidici'),
5123
+ (5092, 'RO ', '295', 'Ghindeni'),
5124
+ (5093, 'RO ', '295', 'Ghizdavesti'),
5125
+ (5094, 'RO ', '295', 'Gighera'),
5126
+ (5095, 'RO ', '295', 'Giubega'),
5127
+ (5096, 'RO ', '295', 'Giurgita'),
5128
+ (5097, 'RO ', '295', 'Gogosesti'),
5129
+ (5098, 'RO ', '295', 'Gogosita'),
5130
+ (5099, 'RO ', '295', 'Gogosu'),
5131
+ (5100, 'RO ', '295', 'Goicea'),
5132
+ (5101, 'RO ', '295', 'Goiesti'),
5133
+ (5102, 'RO ', '295', 'Golenti'),
5134
+ (5103, 'RO ', '295', 'Golfin'),
5135
+ (5104, 'RO ', '295', 'Golumbelu'),
5136
+ (5105, 'RO ', '295', 'Golumbu'),
5137
+ (5106, 'RO ', '295', 'Gradistea'),
5138
+ (5107, 'RO ', '295', 'Grecesti'),
5139
+ (5108, 'RO ', '295', 'Gropanele'),
5140
+ (5109, 'RO ', '295', 'Gruita'),
5141
+ (5110, 'RO ', '295', 'Gubaucea'),
5142
+ (5111, 'RO ', '295', 'Gura Racului'),
5143
+ (5112, 'RO ', '295', 'Gura Vaii'),
5144
+ (5113, 'RO ', '295', 'Horezu-Poenari'),
5145
+ (5114, 'RO ', '295', 'Hunia'),
5146
+ (5115, 'RO ', '295', 'Infratirea'),
5147
+ (5116, 'RO ', '295', 'Intorsura'),
5148
+ (5117, 'RO ', '295', 'Iordachesti'),
5149
+ (5118, 'RO ', '295', 'Isalnita'),
5150
+ (5119, 'RO ', '295', 'Italieni'),
5151
+ (5120, 'RO ', '295', 'Izvoare'),
5152
+ (5121, 'RO ', '295', 'Izvor'),
5153
+ (5122, 'RO ', '295', 'Jieni'),
5154
+ (5123, 'RO ', '295', 'Jiul'),
5155
+ (5124, 'RO ', '295', 'Lacrita Mare'),
5156
+ (5125, 'RO ', '295', 'Lacrita Mica'),
5157
+ (5126, 'RO ', '295', 'Langa'),
5158
+ (5127, 'RO ', '295', 'Lazu'),
5159
+ (5128, 'RO ', '295', 'Leamna de Jos'),
5160
+ (5129, 'RO ', '295', 'Leamna de Sus'),
5161
+ (5130, 'RO ', '295', 'Leordoasa'),
5162
+ (5131, 'RO ', '295', 'Leu'),
5163
+ (5132, 'RO ', '295', 'Lipovu'),
5164
+ (5133, 'RO ', '295', 'Lipovu de Sus'),
5165
+ (5134, 'RO ', '295', 'Listeava'),
5166
+ (5135, 'RO ', '295', 'Livezi'),
5167
+ (5136, 'RO ', '295', 'Locusteni'),
5168
+ (5137, 'RO ', '295', 'Luncsoru'),
5169
+ (5138, 'RO ', '295', 'Macesu de Jos'),
5170
+ (5139, 'RO ', '295', 'Macesu de Sus'),
5171
+ (5140, 'RO ', '295', 'Maglavit'),
5172
+ (5141, 'RO ', '295', 'Malaesti'),
5173
+ (5142, 'RO ', '295', 'Malaica'),
5174
+ (5143, 'RO ', '295', 'Malu Mare'),
5175
+ (5144, 'RO ', '295', 'Malumnic'),
5176
+ (5145, 'RO ', '295', 'Maracinele'),
5177
+ (5146, 'RO ', '295', 'Marotinu de Jos'),
5178
+ (5147, 'RO ', '295', 'Marotinu de Sus'),
5179
+ (5148, 'RO ', '295', 'Marsani'),
5180
+ (5149, 'RO ', '295', 'Marza'),
5181
+ (5150, 'RO ', '295', 'Melinesti'),
5182
+ (5151, 'RO ', '295', 'Meteu'),
5183
+ (5152, 'RO ', '295', 'Mihaita'),
5184
+ (5153, 'RO ', '295', 'Milesti'),
5185
+ (5154, 'RO ', '295', 'Milovan'),
5186
+ (5155, 'RO ', '295', 'Mischii'),
5187
+ (5156, 'RO ', '295', 'Mlecanesti'),
5188
+ (5157, 'RO ', '295', 'Mofleni'),
5189
+ (5158, 'RO ', '295', 'Moflesti'),
5190
+ (5159, 'RO ', '295', 'Moreni'),
5191
+ (5160, 'RO ', '295', 'Mosna'),
5192
+ (5161, 'RO ', '295', 'Mosneni'),
5193
+ (5162, 'RO ', '295', 'Motatei'),
5194
+ (5163, 'RO ', '295', 'Motatei-Gara'),
5195
+ (5164, 'RO ', '295', 'Motoci'),
5196
+ (5165, 'RO ', '295', 'Muereni'),
5197
+ (5166, 'RO ', '295', 'Muierusu'),
5198
+ (5167, 'RO ', '295', 'Murgasi'),
5199
+ (5168, 'RO ', '295', 'Murta'),
5200
+ (5169, 'RO ', '295', 'Nedeia'),
5201
+ (5170, 'RO ', '295', 'Negoi'),
5202
+ (5171, 'RO ', '295', 'Negoiesti'),
5203
+ (5172, 'RO ', '295', 'Nisipuri'),
5204
+ (5173, 'RO ', '295', 'Nistoi'),
5205
+ (5174, 'RO ', '295', 'Novac'),
5206
+ (5175, 'RO ', '295', 'Obedin'),
5207
+ (5176, 'RO ', '295', 'Ocolna'),
5208
+ (5177, 'RO ', '295', 'Odoleni'),
5209
+ (5178, 'RO ', '295', 'Orodel'),
5210
+ (5179, 'RO ', '295', 'Ostroveni'),
5211
+ (5180, 'RO ', '295', 'Padea'),
5212
+ (5181, 'RO ', '295', 'Palilula'),
5213
+ (5182, 'RO ', '295', 'Panaghia'),
5214
+ (5183, 'RO ', '295', 'Pereni'),
5215
+ (5184, 'RO ', '295', 'Perisor'),
5216
+ (5185, 'RO ', '295', 'Picaturile'),
5217
+ (5186, 'RO ', '295', 'Pielesti'),
5218
+ (5187, 'RO ', '295', 'Pietroaia'),
5219
+ (5188, 'RO ', '295', 'Pioresti'),
5220
+ (5189, 'RO ', '295', 'Piria'),
5221
+ (5190, 'RO ', '295', 'Piscani'),
5222
+ (5191, 'RO ', '295', 'Piscu Lung'),
5223
+ (5192, 'RO ', '295', 'Piscu Nou'),
5224
+ (5193, 'RO ', '295', 'Piscu Sadovei'),
5225
+ (5194, 'RO ', '295', 'Piscu Vechi'),
5226
+ (5195, 'RO ', '295', 'Pisculet'),
5227
+ (5196, 'RO ', '295', 'Plenita'),
5228
+ (5197, 'RO ', '295', 'Plesoi'),
5229
+ (5198, 'RO ', '295', 'Plopsor'),
5230
+ (5199, 'RO ', '295', 'Plopu-Amarasti'),
5231
+ (5200, 'RO ', '295', 'Plosca'),
5232
+ (5201, 'RO ', '295', 'Podari'),
5233
+ (5202, 'RO ', '295', 'Poiana Fantanii'),
5234
+ (5203, 'RO ', '295', 'Poiana Mare'),
5235
+ (5204, 'RO ', '295', 'Pometesti'),
5236
+ (5205, 'RO ', '295', 'Popanzalesti'),
5237
+ (5206, 'RO ', '295', 'Popeasa'),
5238
+ (5207, 'RO ', '295', 'Popoveni'),
5239
+ (5208, 'RO ', '295', 'Potmeltu'),
5240
+ (5209, 'RO ', '295', 'Prapor'),
5241
+ (5210, 'RO ', '295', 'Preajba'),
5242
+ (5211, 'RO ', '295', 'Preajba de Jos'),
5243
+ (5212, 'RO ', '295', 'Preajba de Padure'),
5244
+ (5213, 'RO ', '295', 'Predesti'),
5245
+ (5214, 'RO ', '295', 'Predestii Mici'),
5246
+ (5215, 'RO ', '295', 'Prejoi'),
5247
+ (5216, 'RO ', '295', 'Prunet'),
5248
+ (5217, 'RO ', '295', 'Putinei'),
5249
+ (5218, 'RO ', '295', 'Puturi'),
5250
+ (5219, 'RO ', '295', 'Racarii de Jos'),
5251
+ (5220, 'RO ', '295', 'Racarii de Sus'),
5252
+ (5221, 'RO ', '295', 'Rachita de Jos'),
5253
+ (5222, 'RO ', '295', 'Rachita de Sus'),
5254
+ (5223, 'RO ', '295', 'Radomir'),
5255
+ (5224, 'RO ', '295', 'Radovan'),
5256
+ (5225, 'RO ', '295', 'Rasnicu Batran'),
5257
+ (5226, 'RO ', '295', 'Rasnicu Oghian'),
5258
+ (5227, 'RO ', '295', 'Rast'),
5259
+ (5228, 'RO ', '295', 'Robanesti'),
5260
+ (5229, 'RO ', '295', 'Robanestii de Jos'),
5261
+ (5230, 'RO ', '295', 'Robanestii de Sus'),
5262
+ (5231, 'RO ', '295', 'Rojiste'),
5263
+ (5232, 'RO ', '295', 'Romanesti'),
5264
+ (5233, 'RO ', '295', 'Rosieni'),
5265
+ (5234, 'RO ', '295', 'Rupturile'),
5266
+ (5235, 'RO ', '295', 'Sadova'),
5267
+ (5236, 'RO ', '295', 'Salcia'),
5268
+ (5237, 'RO ', '295', 'Salcuta'),
5269
+ (5238, 'RO ', '295', 'Salcuta (Calopar)'),
5270
+ (5239, 'RO ', '295', 'Saliste'),
5271
+ (5240, 'RO ', '295', 'Sapata'),
5272
+ (5241, 'RO ', '295', 'Sarata'),
5273
+ (5242, 'RO ', '295', 'Sarbatoarea'),
5274
+ (5243, 'RO ', '295', 'Sarsca'),
5275
+ (5244, 'RO ', '295', 'Scaesti'),
5276
+ (5245, 'RO ', '295', 'Schitu'),
5277
+ (5246, 'RO ', '295', 'Seaca De Camp'),
5278
+ (5247, 'RO ', '295', 'Seaca de Padure'),
5279
+ (5248, 'RO ', '295', 'Secu'),
5280
+ (5249, 'RO ', '295', 'Secui'),
5281
+ (5250, 'RO ', '295', 'Seculesti'),
5282
+ (5251, 'RO ', '295', 'Segarcea'),
5283
+ (5252, 'RO ', '295', 'Seglet'),
5284
+ (5253, 'RO ', '295', 'Sfircea'),
5285
+ (5254, 'RO ', '295', 'Silistea Crucii'),
5286
+ (5255, 'RO ', '295', 'Simnicu de Jos'),
5287
+ (5256, 'RO ', '295', 'Simnicu de Sus'),
5288
+ (5257, 'RO ', '295', 'Sitoaia'),
5289
+ (5258, 'RO ', '295', 'Smadovicioara de Secu'),
5290
+ (5259, 'RO ', '295', 'Smardan'),
5291
+ (5260, 'RO ', '295', 'Sopot'),
5292
+ (5261, 'RO ', '295', 'Soreni'),
5293
+ (5262, 'RO ', '295', 'Spineni'),
5294
+ (5263, 'RO ', '295', 'Stefanel'),
5295
+ (5264, 'RO ', '295', 'Stiubei'),
5296
+ (5265, 'RO ', '295', 'Stoicesti'),
5297
+ (5266, 'RO ', '295', 'Suharu'),
5298
+ (5267, 'RO ', '295', 'Sumandra'),
5299
+ (5268, 'RO ', '295', 'Talpas'),
5300
+ (5269, 'RO ', '295', 'Tamburesti'),
5301
+ (5270, 'RO ', '295', 'Tandara'),
5302
+ (5271, 'RO ', '295', 'Tartal'),
5303
+ (5272, 'RO ', '295', 'Tatomiresti'),
5304
+ (5273, 'RO ', '295', 'Teasc'),
5305
+ (5274, 'RO ', '295', 'Teascu din Deal'),
5306
+ (5275, 'RO ', '295', 'Tencanau'),
5307
+ (5276, 'RO ', '295', 'Terpezita'),
5308
+ (5277, 'RO ', '295', 'Teslui'),
5309
+ (5278, 'RO ', '295', 'Tiu'),
5310
+ (5279, 'RO ', '295', 'Toceni'),
5311
+ (5280, 'RO ', '295', 'Tuglui'),
5312
+ (5281, 'RO ', '295', 'Tunarii Noi'),
5313
+ (5282, 'RO ', '295', 'Tunarii Vechi'),
5314
+ (5283, 'RO ', '295', 'Ungureni'),
5315
+ (5284, 'RO ', '295', 'Ungurenii Mici'),
5316
+ (5285, 'RO ', '295', 'Unirea'),
5317
+ (5286, 'RO ', '295', 'Urdinita'),
5318
+ (5287, 'RO ', '295', 'Urieni'),
5319
+ (5288, 'RO ', '295', 'Ursoaia'),
5320
+ (5289, 'RO ', '295', 'Urzica Mare'),
5321
+ (5290, 'RO ', '295', 'Urzicuta'),
5322
+ (5291, 'RO ', '295', 'Uscaci'),
5323
+ (5292, 'RO ', '295', 'Valea Fantanilor'),
5324
+ (5293, 'RO ', '295', 'Valea lui Patru'),
5325
+ (5294, 'RO ', '295', 'Valea Lungului'),
5326
+ (5295, 'RO ', '295', 'Valea Mare'),
5327
+ (5296, 'RO ', '295', 'Valea Muierii de Jos'),
5328
+ (5297, 'RO ', '295', 'Valea Stanciului'),
5329
+ (5298, 'RO ', '295', 'Vartop'),
5330
+ (5299, 'RO ', '295', 'Varvor'),
5331
+ (5300, 'RO ', '295', 'Varvoru de Jos'),
5332
+ (5301, 'RO ', '295', 'Vela'),
5333
+ (5302, 'RO ', '295', 'Veleni'),
5334
+ (5303, 'RO ', '295', 'Velesti'),
5335
+ (5304, 'RO ', '295', 'Verbicioara'),
5336
+ (5305, 'RO ', '295', 'Verbita'),
5337
+ (5306, 'RO ', '295', 'Viisoara-Mosneni'),
5338
+ (5307, 'RO ', '295', 'Vladimir'),
5339
+ (5308, 'RO ', '295', 'Voita'),
5340
+ (5309, 'RO ', '295', 'Zanoaga(Dolj)'),
5341
+ (5310, 'RO ', '295', 'Zaval'),
5342
+ (5311, 'RO ', '295', 'Zlatari'),
5343
+ (5312, 'RO ', '295', 'Zvorsca'),
5344
+ (5313, 'RO ', '296', 'Adam'),
5345
+ (5314, 'RO ', '296', 'Aldesti'),
5346
+ (5315, 'RO ', '296', 'Balabanesti'),
5347
+ (5316, 'RO ', '296', 'Balasesti'),
5348
+ (5317, 'RO ', '296', 'Baleni'),
5349
+ (5318, 'RO ', '296', 'Balintesti'),
5350
+ (5319, 'RO ', '296', 'Baltareti'),
5351
+ (5320, 'RO ', '296', 'Baneasa'),
5352
+ (5321, 'RO ', '296', 'Barcea'),
5353
+ (5322, 'RO ', '296', 'Beresti'),
5354
+ (5323, 'RO ', '296', 'Beresti-Meria'),
5355
+ (5324, 'RO ', '296', 'Blanzi'),
5356
+ (5325, 'RO ', '296', 'Brahasesti'),
5357
+ (5326, 'RO ', '296', 'Branesti'),
5358
+ (5327, 'RO ', '296', 'Branistea'),
5359
+ (5328, 'RO ', '296', 'Branistea (Nicoresti)'),
5360
+ (5329, 'RO ', '296', 'Bratulesti'),
5361
+ (5330, 'RO ', '296', 'Bucesti'),
5362
+ (5331, 'RO ', '296', 'Buciumeni'),
5363
+ (5332, 'RO ', '296', 'Bursucani'),
5364
+ (5333, 'RO ', '296', 'Calmatui'),
5365
+ (5334, 'RO ', '296', 'Carapcesti'),
5366
+ (5335, 'RO ', '296', 'Carlomanesti'),
5367
+ (5336, 'RO ', '296', 'Cauiesti'),
5368
+ (5337, 'RO ', '296', 'Cavadinesti'),
5369
+ (5338, 'RO ', '296', 'Certesti'),
5370
+ (5339, 'RO ', '296', 'Chiraftei'),
5371
+ (5340, 'RO ', '296', 'Ciorasti'),
5372
+ (5341, 'RO ', '296', 'Cismele'),
5373
+ (5342, 'RO ', '296', 'Ciuresti'),
5374
+ (5343, 'RO ', '296', 'Ciurestii Noi'),
5375
+ (5344, 'RO ', '296', 'Coasta Lupei'),
5376
+ (5345, 'RO ', '296', 'Comanesti'),
5377
+ (5346, 'RO ', '296', 'Condrea'),
5378
+ (5347, 'RO ', '296', 'Corcioveni'),
5379
+ (5348, 'RO ', '296', 'Corni'),
5380
+ (5349, 'RO ', '296', 'Corod'),
5381
+ (5350, 'RO ', '296', 'Cositeni'),
5382
+ (5351, 'RO ', '296', 'Cosmesti'),
5383
+ (5352, 'RO ', '296', 'Cosmestii-Vale'),
5384
+ (5353, 'RO ', '296', 'Costache Negri'),
5385
+ (5354, 'RO ', '296', 'Costi'),
5386
+ (5355, 'RO ', '296', 'Cotoroaia'),
5387
+ (5356, 'RO ', '296', 'Craiesti'),
5388
+ (5357, 'RO ', '296', 'Crangeni'),
5389
+ (5358, 'RO ', '296', 'Cruceanu'),
5390
+ (5359, 'RO ', '296', 'Cuca'),
5391
+ (5360, 'RO ', '296', 'Cudalbi'),
5392
+ (5361, 'RO ', '296', 'Cuza Voda'),
5393
+ (5362, 'RO ', '296', 'Dobrinesti'),
5394
+ (5363, 'RO ', '296', 'Draganesti'),
5395
+ (5364, 'RO ', '296', 'Draguseni'),
5396
+ (5365, 'RO ', '296', 'Fantanele'),
5397
+ (5366, 'RO ', '296', 'Fantani'),
5398
+ (5367, 'RO ', '296', 'Fartanesti'),
5399
+ (5368, 'RO ', '296', 'Foltesti'),
5400
+ (5369, 'RO ', '296', 'Frumusita'),
5401
+ (5370, 'RO ', '296', 'Frunzeasca'),
5402
+ (5371, 'RO ', '296', 'Fundeanu'),
5403
+ (5372, 'RO ', '296', 'Fundeni'),
5404
+ (5373, 'RO ', '296', 'Fundenii Noi'),
5405
+ (5374, 'RO ', '296', 'Furcenii Noi'),
5406
+ (5375, 'RO ', '296', 'Furcenii Vechi'),
5407
+ (5376, 'RO ', '296', 'Galati'),
5408
+ (5377, 'RO ', '296', 'Ganesti'),
5409
+ (5378, 'RO ', '296', 'Gara Berheci'),
5410
+ (5379, 'RO ', '296', 'Gara Ghidigeni'),
5411
+ (5380, 'RO ', '296', 'Garbovat'),
5412
+ (5381, 'RO ', '296', 'Gefu'),
5413
+ (5382, 'RO ', '296', 'Ghidigeni'),
5414
+ (5383, 'RO ', '296', 'Ghinghesti'),
5415
+ (5384, 'RO ', '296', 'Gohor'),
5416
+ (5385, 'RO ', '296', 'Grivita'),
5417
+ (5386, 'RO ', '296', 'Grozavesti'),
5418
+ (5387, 'RO ', '296', 'Gura Garbovatului'),
5419
+ (5388, 'RO ', '296', 'Hantesti'),
5420
+ (5389, 'RO ', '296', 'Hanu Conachi'),
5421
+ (5390, 'RO ', '296', 'Hustiu'),
5422
+ (5391, 'RO ', '296', 'Ijdileni'),
5423
+ (5392, 'RO ', '296', 'Independenta'),
5424
+ (5393, 'RO ', '296', 'Ionasesti'),
5425
+ (5394, 'RO ', '296', 'Ireasca'),
5426
+ (5395, 'RO ', '296', 'Ivesti'),
5427
+ (5396, 'RO ', '296', 'Izvoarele'),
5428
+ (5397, 'RO ', '296', 'Jorasti'),
5429
+ (5398, 'RO ', '296', 'Liesti'),
5430
+ (5399, 'RO ', '296', 'Liesti (Priponesti)'),
5431
+ (5400, 'RO ', '296', 'Lozova'),
5432
+ (5401, 'RO ', '296', 'Lunca'),
5433
+ (5402, 'RO ', '296', 'Lungesti'),
5434
+ (5403, 'RO ', '296', 'Lungoci'),
5435
+ (5404, 'RO ', '296', 'Lupele'),
5436
+ (5405, 'RO ', '296', 'Maciseni'),
5437
+ (5406, 'RO ', '296', 'Malu Alb'),
5438
+ (5407, 'RO ', '296', 'Malureni'),
5439
+ (5408, 'RO ', '296', 'Mandresti'),
5440
+ (5409, 'RO ', '296', 'Mastacani'),
5441
+ (5410, 'RO ', '296', 'Matca'),
5442
+ (5411, 'RO ', '296', 'Mihail Kogalniceanu'),
5443
+ (5412, 'RO ', '296', 'Moscu'),
5444
+ (5413, 'RO ', '296', 'Movileni'),
5445
+ (5414, 'RO ', '296', 'Movileni (sendreni)'),
5446
+ (5415, 'RO ', '296', 'Munteni'),
5447
+ (5416, 'RO ', '296', 'Namoloasa'),
5448
+ (5417, 'RO ', '296', 'Namoloasa-Sat'),
5449
+ (5418, 'RO ', '296', 'Nartesti'),
5450
+ (5419, 'RO ', '296', 'Negrea'),
5451
+ (5420, 'RO ', '296', 'Negrilesti'),
5452
+ (5421, 'RO ', '296', 'Nicopole'),
5453
+ (5422, 'RO ', '296', 'Nicoresti'),
5454
+ (5423, 'RO ', '296', 'Oancea'),
5455
+ (5424, 'RO ', '296', 'Odaia Manolache'),
5456
+ (5425, 'RO ', '296', 'Onciu'),
5457
+ (5426, 'RO ', '296', 'Pechea'),
5458
+ (5427, 'RO ', '296', 'Piscu'),
5459
+ (5428, 'RO ', '296', 'Piscu Corbului'),
5460
+ (5429, 'RO ', '296', 'Plesa'),
5461
+ (5430, 'RO ', '296', 'Plevna'),
5462
+ (5431, 'RO ', '296', 'Podoleni'),
5463
+ (5432, 'RO ', '296', 'Poiana'),
5464
+ (5433, 'RO ', '296', 'Posta'),
5465
+ (5434, 'RO ', '296', 'Priponesti'),
5466
+ (5435, 'RO ', '296', 'Priponestii de Jos'),
5467
+ (5436, 'RO ', '296', 'Prodanesti'),
5468
+ (5437, 'RO ', '296', 'Pupezeni'),
5469
+ (5438, 'RO ', '296', 'Puricani'),
5470
+ (5439, 'RO ', '296', 'Radesti'),
5471
+ (5440, 'RO ', '296', 'Rediu'),
5472
+ (5441, 'RO ', '296', 'Rogojeni'),
5473
+ (5442, 'RO ', '296', 'Roscani'),
5474
+ (5443, 'RO ', '296', 'Salcia'),
5475
+ (5444, 'RO ', '296', 'Sarbi'),
5476
+ (5445, 'RO ', '296', 'Saseni'),
5477
+ (5446, 'RO ', '296', 'Satu Nou'),
5478
+ (5447, 'RO ', '296', 'Scanteiesti'),
5479
+ (5448, 'RO ', '296', 'Schela'),
5480
+ (5449, 'RO ', '296', 'Sendreni'),
5481
+ (5450, 'RO ', '296', 'Serbestii Vechi'),
5482
+ (5451, 'RO ', '296', 'Silistea'),
5483
+ (5452, 'RO ', '296', 'Sipote'),
5484
+ (5453, 'RO ', '296', 'Sivita'),
5485
+ (5454, 'RO ', '296', 'Slivna'),
5486
+ (5455, 'RO ', '296', 'Slobozia Blaneasa'),
5487
+ (5456, 'RO ', '296', 'Slobozia Conachi'),
5488
+ (5457, 'RO ', '296', 'Slobozia Corni'),
5489
+ (5458, 'RO ', '296', 'Slobozia Oancea'),
5490
+ (5459, 'RO ', '296', 'Smardan'),
5491
+ (5460, 'RO ', '296', 'Smulti'),
5492
+ (5461, 'RO ', '296', 'Stietesti'),
5493
+ (5462, 'RO ', '296', 'Stoicani'),
5494
+ (5463, 'RO ', '296', 'Suceveni'),
5495
+ (5464, 'RO ', '296', 'Suhurlui'),
5496
+ (5465, 'RO ', '296', 'Talpigi'),
5497
+ (5466, 'RO ', '296', 'Tamaoani'),
5498
+ (5467, 'RO ', '296', 'Taplau'),
5499
+ (5468, 'RO ', '296', 'Targu Bujor'),
5500
+ (5469, 'RO ', '296', 'Tatarca'),
5501
+ (5470, 'RO ', '296', 'Tecucelu Sec'),
5502
+ (5471, 'RO ', '296', 'Tecuci'),
5503
+ (5472, 'RO ', '296', 'Tepu'),
5504
+ (5473, 'RO ', '296', 'Tepu de Sus'),
5505
+ (5474, 'RO ', '296', 'Tiganesti'),
5506
+ (5475, 'RO ', '296', 'Toflea'),
5507
+ (5476, 'RO ', '296', 'Torcesti'),
5508
+ (5477, 'RO ', '296', 'Traian'),
5509
+ (5478, 'RO ', '296', 'Tudor Vladimirescu'),
5510
+ (5479, 'RO ', '296', 'Tulucesti'),
5511
+ (5480, 'RO ', '296', 'Umbraresti'),
5512
+ (5481, 'RO ', '296', 'Umbraresti (Targu Bujor)'),
5513
+ (5482, 'RO ', '296', 'Umbraresti-Deal'),
5514
+ (5483, 'RO ', '296', 'Ungureni'),
5515
+ (5484, 'RO ', '296', 'Urlesti'),
5516
+ (5485, 'RO ', '296', 'Vadeni'),
5517
+ (5486, 'RO ', '296', 'Valea Marului'),
5518
+ (5487, 'RO ', '296', 'Vames'),
5519
+ (5488, 'RO ', '296', 'Vanatori'),
5520
+ (5489, 'RO ', '296', 'Varlezi'),
5521
+ (5490, 'RO ', '296', 'Vasile Alecsandri'),
5522
+ (5491, 'RO ', '296', 'Viile'),
5523
+ (5492, 'RO ', '296', 'Visina'),
5524
+ (5493, 'RO ', '296', 'Vizuresti'),
5525
+ (5494, 'RO ', '296', 'Vladesti'),
5526
+ (5495, 'RO ', '296', 'Zarnesti'),
5527
+ (5496, 'RO ', '296', 'Zimbru'),
5528
+ (5497, 'RO ', '297', 'Adunatii-Copaceni'),
5529
+ (5498, 'RO ', '297', 'Anghelesti'),
5530
+ (5499, 'RO ', '297', 'Bacu'),
5531
+ (5500, 'RO ', '297', 'Balanu'),
5532
+ (5501, 'RO ', '297', 'Baneasa'),
5533
+ (5502, 'RO ', '297', 'Banesti'),
5534
+ (5503, 'RO ', '297', 'Bila'),
5535
+ (5504, 'RO ', '297', 'Bolintin-Deal'),
5536
+ (5505, 'RO ', '297', 'Bolintin-Vale'),
5537
+ (5506, 'RO ', '297', 'Branistari'),
5538
+ (5507, 'RO ', '297', 'Branistea'),
5539
+ (5508, 'RO ', '297', 'Bucsani'),
5540
+ (5509, 'RO ', '297', 'Budeni'),
5541
+ (5510, 'RO ', '297', 'Bulbucata'),
5542
+ (5511, 'RO ', '297', 'Buturugeni'),
5543
+ (5512, 'RO ', '297', 'Calugareni'),
5544
+ (5513, 'RO ', '297', 'Camineasca'),
5545
+ (5514, 'RO ', '297', 'Campurelu'),
5546
+ (5515, 'RO ', '297', 'Carpenisu'),
5547
+ (5516, 'RO ', '297', 'Cartojani'),
5548
+ (5517, 'RO ', '297', 'Cascioarele (Gaiseni)'),
5549
+ (5518, 'RO ', '297', 'Cascioarele (Ulmi)'),
5550
+ (5519, 'RO ', '297', 'Cetatea'),
5551
+ (5520, 'RO ', '297', 'Cetatuia'),
5552
+ (5521, 'RO ', '297', 'Chiriacu'),
5553
+ (5522, 'RO ', '297', 'Clejani'),
5554
+ (5523, 'RO ', '297', 'Colibasi'),
5555
+ (5524, 'RO ', '297', 'Comana'),
5556
+ (5525, 'RO ', '297', 'Comasca'),
5557
+ (5526, 'RO ', '297', 'Copaciu'),
5558
+ (5527, 'RO ', '297', 'Corbeanca'),
5559
+ (5528, 'RO ', '297', 'Cosoba'),
5560
+ (5529, 'RO ', '297', 'Cranguri'),
5561
+ (5530, 'RO ', '297', 'Crevedia Mare'),
5562
+ (5531, 'RO ', '297', 'Crevedia Mica'),
5563
+ (5532, 'RO ', '297', 'Crivina'),
5564
+ (5533, 'RO ', '297', 'Crucea de Piatra'),
5565
+ (5534, 'RO ', '297', 'Cucuruzu'),
5566
+ (5535, 'RO ', '297', 'Cupele'),
5567
+ (5536, 'RO ', '297', 'Daia'),
5568
+ (5537, 'RO ', '297', 'Darasti-Vlasca'),
5569
+ (5538, 'RO ', '297', 'Dealu'),
5570
+ (5539, 'RO ', '297', 'Dimitrie Cantemir'),
5571
+ (5540, 'RO ', '297', 'Dobreni'),
5572
+ (5541, 'RO ', '297', 'Draganeasca'),
5573
+ (5542, 'RO ', '297', 'Draganescu'),
5574
+ (5543, 'RO ', '297', 'Draghiceanu'),
5575
+ (5544, 'RO ', '297', 'Facau'),
5576
+ (5545, 'RO ', '297', 'Falastoaca'),
5577
+ (5546, 'RO ', '297', 'Floresti'),
5578
+ (5547, 'RO ', '297', 'Floresti-Stoenesti'),
5579
+ (5548, 'RO ', '297', 'Frasinu'),
5580
+ (5549, 'RO ', '297', 'Fratesti'),
5581
+ (5550, 'RO ', '297', 'Gaiseanca'),
5582
+ (5551, 'RO ', '297', 'Gaiseni'),
5583
+ (5552, 'RO ', '297', 'Gaujani'),
5584
+ (5553, 'RO ', '297', 'Ghimpati'),
5585
+ (5554, 'RO ', '297', 'Ghionea'),
5586
+ (5555, 'RO ', '297', 'Ghizdaru'),
5587
+ (5556, 'RO ', '297', 'Giurgiu'),
5588
+ (5557, 'RO ', '297', 'Gogosari'),
5589
+ (5558, 'RO ', '297', 'Goleasca'),
5590
+ (5559, 'RO ', '297', 'Gorneni'),
5591
+ (5560, 'RO ', '297', 'Gostinari'),
5592
+ (5561, 'RO ', '297', 'Gostinu'),
5593
+ (5562, 'RO ', '297', 'Gradinari'),
5594
+ (5563, 'RO ', '297', 'Gradistea'),
5595
+ (5564, 'RO ', '297', 'Greaca'),
5596
+ (5565, 'RO ', '297', 'Herasti'),
5597
+ (5566, 'RO ', '297', 'Hobaia'),
5598
+ (5567, 'RO ', '297', 'Hodivoaia'),
5599
+ (5568, 'RO ', '297', 'Hotarele'),
5600
+ (5569, 'RO ', '297', 'Hulubesti'),
5601
+ (5570, 'RO ', '297', 'Ianculesti'),
5602
+ (5571, 'RO ', '297', 'Icoana'),
5603
+ (5572, 'RO ', '297', 'Iepuresti'),
5604
+ (5573, 'RO ', '297', 'Isvoarele'),
5605
+ (5574, 'RO ', '297', 'Izvoarele'),
5606
+ (5575, 'RO ', '297', 'Izvoru (Gogosari)'),
5607
+ (5576, 'RO ', '297', 'Izvoru (Vanatorii Mici)'),
5608
+ (5577, 'RO ', '297', 'Joita'),
5609
+ (5578, 'RO ', '297', 'Letca Noua'),
5610
+ (5579, 'RO ', '297', 'Letca Veche'),
5611
+ (5580, 'RO ', '297', 'Malu'),
5612
+ (5581, 'RO ', '297', 'Malu Spart'),
5613
+ (5582, 'RO ', '297', 'Marsa'),
5614
+ (5583, 'RO ', '297', 'Mihai Bravu'),
5615
+ (5584, 'RO ', '297', 'Mihai Voda'),
5616
+ (5585, 'RO ', '297', 'Mihailesti'),
5617
+ (5586, 'RO ', '297', 'Milcovatu'),
5618
+ (5587, 'RO ', '297', 'Milosesti'),
5619
+ (5588, 'RO ', '297', 'Mirau'),
5620
+ (5589, 'RO ', '297', 'Mironesti'),
5621
+ (5590, 'RO ', '297', 'Mogosesti'),
5622
+ (5591, 'RO ', '297', 'Mosteni'),
5623
+ (5592, 'RO ', '297', 'Naipu'),
5624
+ (5593, 'RO ', '297', 'Neajlovu'),
5625
+ (5594, 'RO ', '297', 'Novaci'),
5626
+ (5595, 'RO ', '297', 'Obedeni'),
5627
+ (5596, 'RO ', '297', 'Ogrezeni'),
5628
+ (5597, 'RO ', '297', 'Oinacu'),
5629
+ (5598, 'RO ', '297', 'Oncesti'),
5630
+ (5599, 'RO ', '297', 'Padureni'),
5631
+ (5600, 'RO ', '297', 'Palanca'),
5632
+ (5601, 'RO ', '297', 'Petru Rares'),
5633
+ (5602, 'RO ', '297', 'Pietrele'),
5634
+ (5603, 'RO ', '297', 'Pietrisu'),
5635
+ (5604, 'RO ', '297', 'Plopsoru'),
5636
+ (5605, 'RO ', '297', 'Podisor'),
5637
+ (5606, 'RO ', '297', 'Podu Doamnei'),
5638
+ (5607, 'RO ', '297', 'Podu Ilfovatului'),
5639
+ (5608, 'RO ', '297', 'Podu Popa Nae'),
5640
+ (5609, 'RO ', '297', 'Poenari'),
5641
+ (5610, 'RO ', '297', 'Poiana lui Stanga'),
5642
+ (5611, 'RO ', '297', 'Popesti'),
5643
+ (5612, 'RO ', '297', 'Posta'),
5644
+ (5613, 'RO ', '297', 'Priboiu'),
5645
+ (5614, 'RO ', '297', 'Prundu'),
5646
+ (5615, 'RO ', '297', 'Puieni'),
5647
+ (5616, 'RO ', '297', 'Putineiu'),
5648
+ (5617, 'RO ', '297', 'Putu Greci'),
5649
+ (5618, 'RO ', '297', 'Radu Voda'),
5650
+ (5619, 'RO ', '297', 'Ralesti'),
5651
+ (5620, 'RO ', '297', 'Rasuceni'),
5652
+ (5621, 'RO ', '297', 'Remus'),
5653
+ (5622, 'RO ', '297', 'Roata de Jos'),
5654
+ (5623, 'RO ', '297', 'Roata Mica'),
5655
+ (5624, 'RO ', '297', 'Sabareni'),
5656
+ (5625, 'RO ', '297', 'Sadina'),
5657
+ (5626, 'RO ', '297', 'Satu Nou'),
5658
+ (5627, 'RO ', '297', 'Schitu'),
5659
+ (5628, 'RO ', '297', 'Sfantu Gheorghe (Baneasa)'),
5660
+ (5629, 'RO ', '297', 'Sfantu Gheorghe (Crevedia Mare)'),
5661
+ (5630, 'RO ', '297', 'Singureni'),
5662
+ (5631, 'RO ', '297', 'Slobozia'),
5663
+ (5632, 'RO ', '297', 'Stalpu'),
5664
+ (5633, 'RO ', '297', 'Stanesti'),
5665
+ (5634, 'RO ', '297', 'Stejaru'),
5666
+ (5635, 'RO ', '297', 'Sterea'),
5667
+ (5636, 'RO ', '297', 'Stoenesti'),
5668
+ (5637, 'RO ', '297', 'Stoenesti (Floresti-Stoenesti)'),
5669
+ (5638, 'RO ', '297', 'Suseni'),
5670
+ (5639, 'RO ', '297', 'Tantava'),
5671
+ (5640, 'RO ', '297', 'Teisori'),
5672
+ (5641, 'RO ', '297', 'Teiusu'),
5673
+ (5642, 'RO ', '297', 'Tomulesti'),
5674
+ (5643, 'RO ', '297', 'Toporu'),
5675
+ (5644, 'RO ', '297', 'Trestieni'),
5676
+ (5645, 'RO ', '297', 'Uiesti'),
5677
+ (5646, 'RO ', '297', 'Ulmi'),
5678
+ (5647, 'RO ', '297', 'Uzunu'),
5679
+ (5648, 'RO ', '297', 'Vadu Lat'),
5680
+ (5649, 'RO ', '297', 'Valcelele'),
5681
+ (5650, 'RO ', '297', 'Valea Bujorului'),
5682
+ (5651, 'RO ', '297', 'Valea Dragului'),
5683
+ (5652, 'RO ', '297', 'Valea Plopilor'),
5684
+ (5653, 'RO ', '297', 'Valter Maracineanu'),
5685
+ (5654, 'RO ', '297', 'Vanatorii Mari'),
5686
+ (5655, 'RO ', '297', 'Vanatorii Mici'),
5687
+ (5656, 'RO ', '297', 'Varasti'),
5688
+ (5657, 'RO ', '297', 'Varlaam'),
5689
+ (5658, 'RO ', '297', 'Vedea'),
5690
+ (5659, 'RO ', '297', 'Vieru'),
5691
+ (5660, 'RO ', '297', 'Vlad Tepes'),
5692
+ (5661, 'RO ', '297', 'Vlasin'),
5693
+ (5662, 'RO ', '297', 'Zadariciu'),
5694
+ (5663, 'RO ', '297', 'Zboiu'),
5695
+ (5664, 'RO ', '297', 'Zorile'),
5696
+ (5665, 'RO ', '298', 'Albeni'),
5697
+ (5666, 'RO ', '298', 'Alexeni'),
5698
+ (5667, 'RO ', '298', 'Alimpesti'),
5699
+ (5668, 'RO ', '298', 'Alunis'),
5700
+ (5669, 'RO ', '298', 'Andreesti'),
5701
+ (5670, 'RO ', '298', 'Aninisu din Deal'),
5702
+ (5671, 'RO ', '298', 'Aninisu din Vale'),
5703
+ (5672, 'RO ', '298', 'Aninoasa'),
5704
+ (5673, 'RO ', '298', 'Apa Neagra'),
5705
+ (5674, 'RO ', '298', 'Arcani'),
5706
+ (5675, 'RO ', '298', 'Arjoci'),
5707
+ (5676, 'RO ', '298', 'Arpadia'),
5708
+ (5677, 'RO ', '298', 'Arseni'),
5709
+ (5678, 'RO ', '298', 'Arsuri'),
5710
+ (5679, 'RO ', '298', 'Artanu'),
5711
+ (5680, 'RO ', '298', 'Bacesti'),
5712
+ (5681, 'RO ', '298', 'Badesti'),
5713
+ (5682, 'RO ', '298', 'Baia de Fier'),
5714
+ (5683, 'RO ', '298', 'Balacesti'),
5715
+ (5684, 'RO ', '298', 'Balanesti'),
5716
+ (5685, 'RO ', '298', 'Balani'),
5717
+ (5686, 'RO ', '298', 'Balcesti'),
5718
+ (5687, 'RO ', '298', 'Balesti'),
5719
+ (5688, 'RO ', '298', 'Balosani'),
5720
+ (5689, 'RO ', '298', 'Balta'),
5721
+ (5690, 'RO ', '298', 'Balteni'),
5722
+ (5691, 'RO ', '298', 'Baltisoara'),
5723
+ (5692, 'RO ', '298', 'Baniu'),
5724
+ (5693, 'RO ', '298', 'Barbatesti'),
5725
+ (5694, 'RO ', '298', 'Barcaciu'),
5726
+ (5695, 'RO ', '298', 'Barsesti'),
5727
+ (5696, 'RO ', '298', 'Barza'),
5728
+ (5697, 'RO ', '298', 'Barzeiu'),
5729
+ (5698, 'RO ', '298', 'Barzeiu de Gilort'),
5730
+ (5699, 'RO ', '298', 'Bazavani'),
5731
+ (5700, 'RO ', '298', 'Becheni'),
5732
+ (5701, 'RO ', '298', 'Bengesti'),
5733
+ (5702, 'RO ', '298', 'Bengesti-Ciocadia'),
5734
+ (5703, 'RO ', '298', 'Bercesti'),
5735
+ (5704, 'RO ', '298', 'Berlesti'),
5736
+ (5705, 'RO ', '298', 'Bibesti'),
5737
+ (5706, 'RO ', '298', 'Bibulesti'),
5738
+ (5707, 'RO ', '298', 'Bircii'),
5739
+ (5708, 'RO ', '298', 'Blahnita de Jos'),
5740
+ (5709, 'RO ', '298', 'Blahnita de Sus'),
5741
+ (5710, 'RO ', '298', 'Blidari'),
5742
+ (5711, 'RO ', '298', 'Bobaia'),
5743
+ (5712, 'RO ', '298', 'Boboiesti'),
5744
+ (5713, 'RO ', '298', 'Bobu'),
5745
+ (5714, 'RO ', '298', 'Boca'),
5746
+ (5715, 'RO ', '298', 'Bohorel'),
5747
+ (5716, 'RO ', '298', 'Boia'),
5748
+ (5717, 'RO ', '298', 'Bojinu'),
5749
+ (5718, 'RO ', '298', 'Bolboasa'),
5750
+ (5719, 'RO ', '298', 'Bolbocesti'),
5751
+ (5720, 'RO ', '298', 'Bolbosi'),
5752
+ (5721, 'RO ', '298', 'Borascu'),
5753
+ (5722, 'RO ', '298', 'Borosteni'),
5754
+ (5723, 'RO ', '298', 'Botorogi '),
5755
+ (5724, 'RO ', '298', 'Bradet'),
5756
+ (5725, 'RO ', '298', 'Bradetel'),
5757
+ (5726, 'RO ', '298', 'Bradiceni'),
5758
+ (5727, 'RO ', '298', 'Branesti'),
5759
+ (5728, 'RO ', '298', 'Bratesti'),
5760
+ (5729, 'RO ', '298', 'Bratuia'),
5761
+ (5730, 'RO ', '298', 'Brebenei'),
5762
+ (5731, 'RO ', '298', 'Brosteni'),
5763
+ (5732, 'RO ', '298', 'Brostenii de Sus'),
5764
+ (5733, 'RO ', '298', 'Bucsana'),
5765
+ (5734, 'RO ', '298', 'Bucureasa'),
5766
+ (5735, 'RO ', '298', 'Budieni'),
5767
+ (5736, 'RO ', '298', 'Buduhala'),
5768
+ (5737, 'RO ', '298', 'Bulbuceni'),
5769
+ (5738, 'RO ', '298', 'Bumbesti-Jiu'),
5770
+ (5739, 'RO ', '298', 'Bumbesti-Pitic'),
5771
+ (5740, 'RO ', '298', 'Burlani'),
5772
+ (5741, 'RO ', '298', 'Bustuchin'),
5773
+ (5742, 'RO ', '298', 'Busuioci'),
5774
+ (5743, 'RO ', '298', 'Buzesti'),
5775
+ (5744, 'RO ', '298', 'Calaparu'),
5776
+ (5745, 'RO ', '298', 'Calcesti'),
5777
+ (5746, 'RO ', '298', 'Calesti'),
5778
+ (5747, 'RO ', '298', 'Calnic'),
5779
+ (5748, 'RO ', '298', 'Calnicu de sus'),
5780
+ (5749, 'RO ', '298', 'Calugareasa'),
5781
+ (5750, 'RO ', '298', 'Calugareni'),
5782
+ (5751, 'RO ', '298', 'Campofeni'),
5783
+ (5752, 'RO ', '298', 'Campu Mare'),
5784
+ (5753, 'RO ', '298', 'Camuiesti'),
5785
+ (5754, 'RO ', '298', 'Canepesti'),
5786
+ (5755, 'RO ', '298', 'Capreni'),
5787
+ (5756, 'RO ', '298', 'Capu Dealului'),
5788
+ (5757, 'RO ', '298', 'Carbesti'),
5789
+ (5758, 'RO ', '298', 'Carbunesti-Sat'),
5790
+ (5759, 'RO ', '298', 'Carciu'),
5791
+ (5760, 'RO ', '298', 'Carligei'),
5792
+ (5761, 'RO ', '298', 'Carpinis'),
5793
+ (5762, 'RO ', '298', 'Cartiu'),
5794
+ (5763, 'RO ', '298', 'Catunele'),
5795
+ (5764, 'RO ', '298', 'Ceauru'),
5796
+ (5765, 'RO ', '298', 'Celei'),
5797
+ (5766, 'RO ', '298', 'Ceplea'),
5798
+ (5767, 'RO ', '298', 'Ceratu de Copacioasa'),
5799
+ (5768, 'RO ', '298', 'Cernadia'),
5800
+ (5769, 'RO ', '298', 'Cerna-Sat'),
5801
+ (5770, 'RO ', '298', 'Cetatea'),
5802
+ (5771, 'RO ', '298', 'Chiciora'),
5803
+ (5772, 'RO ', '298', 'Chiliu'),
5804
+ (5773, 'RO ', '298', 'Ciocadia'),
5805
+ (5774, 'RO ', '298', 'Cionti'),
5806
+ (5775, 'RO ', '298', 'Ciorari'),
5807
+ (5776, 'RO ', '298', 'Ciuperceni'),
5808
+ (5777, 'RO ', '298', 'Ciupercenii de Oltet'),
5809
+ (5778, 'RO ', '298', 'Clesnesti'),
5810
+ (5779, 'RO ', '298', 'Closani'),
5811
+ (5780, 'RO ', '298', 'Cocoreni'),
5812
+ (5781, 'RO ', '298', 'Cocorova'),
5813
+ (5782, 'RO ', '298', 'Cojani'),
5814
+ (5783, 'RO ', '298', 'Cojmanesti'),
5815
+ (5784, 'RO ', '298', 'Colibasi'),
5816
+ (5785, 'RO ', '298', 'Coltesti'),
5817
+ (5786, 'RO ', '298', 'Condeiesti'),
5818
+ (5787, 'RO ', '298', 'Copacioasa'),
5819
+ (5788, 'RO ', '298', 'Cornesti'),
5820
+ (5789, 'RO ', '298', 'Cornetu'),
5821
+ (5790, 'RO ', '298', 'Corobai'),
5822
+ (5791, 'RO ', '298', 'Corsoru'),
5823
+ (5792, 'RO ', '298', 'Costeni'),
5824
+ (5793, 'RO ', '298', 'Costesti'),
5825
+ (5794, 'RO ', '298', 'Covrigi'),
5826
+ (5795, 'RO ', '298', 'Crasna'),
5827
+ (5796, 'RO ', '298', 'Crasna din Deal'),
5828
+ (5797, 'RO ', '298', 'Cretesti'),
5829
+ (5798, 'RO ', '298', 'Croici'),
5830
+ (5799, 'RO ', '298', 'Cruset'),
5831
+ (5800, 'RO ', '298', 'Curpen'),
5832
+ (5801, 'RO ', '298', 'Cursaru'),
5833
+ (5802, 'RO ', '298', 'Curteana'),
5834
+ (5803, 'RO ', '298', 'Curtisoara'),
5835
+ (5804, 'RO ', '298', 'Dambova'),
5836
+ (5805, 'RO ', '298', 'Danciulesti'),
5837
+ (5806, 'RO ', '298', 'Danesti'),
5838
+ (5807, 'RO ', '298', 'Dealu Leului'),
5839
+ (5808, 'RO ', '298', 'Dealu Pomilor'),
5840
+ (5809, 'RO ', '298', 'Dealu Spirei'),
5841
+ (5810, 'RO ', '298', 'Dealu Viei'),
5842
+ (5811, 'RO ', '298', 'Dealu Viilor'),
5843
+ (5812, 'RO ', '298', 'Deleni'),
5844
+ (5813, 'RO ', '298', 'Didilesti'),
5845
+ (5814, 'RO ', '298', 'Dobrana'),
5846
+ (5815, 'RO ', '298', 'Dobrita'),
5847
+ (5816, 'RO ', '298', 'Dolcesti'),
5848
+ (5817, 'RO ', '298', 'Doseni'),
5849
+ (5818, 'RO ', '298', 'Dragoeni'),
5850
+ (5819, 'RO ', '298', 'Dragoiesti'),
5851
+ (5820, 'RO ', '298', 'Dragotesti'),
5852
+ (5821, 'RO ', '298', 'Dragutesti'),
5853
+ (5822, 'RO ', '298', 'Duculesti'),
5854
+ (5823, 'RO ', '298', 'Dumbraveni'),
5855
+ (5824, 'RO ', '298', 'Fantanele'),
5856
+ (5825, 'RO ', '298', 'Farcasesti'),
5857
+ (5826, 'RO ', '298', 'Farcasesti-Mosneni'),
5858
+ (5827, 'RO ', '298', 'Floresteni'),
5859
+ (5828, 'RO ', '298', 'Floresti'),
5860
+ (5829, 'RO ', '298', 'Francesti'),
5861
+ (5830, 'RO ', '298', 'Frasin'),
5862
+ (5831, 'RO ', '298', 'Fratesti'),
5863
+ (5832, 'RO ', '298', 'Frumusei'),
5864
+ (5833, 'RO ', '298', 'Frunza'),
5865
+ (5834, 'RO ', '298', 'Galcesti'),
5866
+ (5835, 'RO ', '298', 'Galesoaia'),
5867
+ (5836, 'RO ', '298', 'Gamani'),
5868
+ (5837, 'RO ', '298', 'Garbovu'),
5869
+ (5838, 'RO ', '298', 'Gavanesti'),
5870
+ (5839, 'RO ', '298', 'Gilortu'),
5871
+ (5840, 'RO ', '298', 'Glodeni'),
5872
+ (5841, 'RO ', '298', 'Glogova'),
5873
+ (5842, 'RO ', '298', 'Godinesti'),
5874
+ (5843, 'RO ', '298', 'Gornacel'),
5875
+ (5844, 'RO ', '298', 'Gornovita'),
5876
+ (5845, 'RO ', '298', 'Groserea'),
5877
+ (5846, 'RO ', '298', 'Grui'),
5878
+ (5847, 'RO ', '298', 'Gura susitei'),
5879
+ (5848, 'RO ', '298', 'Gura-Menti'),
5880
+ (5849, 'RO ', '298', 'Gureni'),
5881
+ (5850, 'RO ', '298', 'Haiesti'),
5882
+ (5851, 'RO ', '298', 'Halangesti'),
5883
+ (5852, 'RO ', '298', 'Hirisesti'),
5884
+ (5853, 'RO ', '298', 'Hobita'),
5885
+ (5854, 'RO ', '298', 'Hodoreasca'),
5886
+ (5855, 'RO ', '298', 'Horasti'),
5887
+ (5856, 'RO ', '298', 'Horezu'),
5888
+ (5857, 'RO ', '298', 'Hotaroasa'),
5889
+ (5858, 'RO ', '298', 'Hurezani'),
5890
+ (5859, 'RO ', '298', 'Iasi-Gorj'),
5891
+ (5860, 'RO ', '298', 'Iezureni'),
5892
+ (5861, 'RO ', '298', 'Igirosu'),
5893
+ (5862, 'RO ', '298', 'Iliesti'),
5894
+ (5863, 'RO ', '298', 'Insuratei'),
5895
+ (5864, 'RO ', '298', 'Ionesti'),
5896
+ (5865, 'RO ', '298', 'Iormanesti'),
5897
+ (5866, 'RO ', '298', 'Isvarna'),
5898
+ (5867, 'RO ', '298', 'Izvoarele'),
5899
+ (5868, 'RO ', '298', 'Jeristea'),
5900
+ (5869, 'RO ', '298', 'Jiltu'),
5901
+ (5870, 'RO ', '298', 'Jupanesti'),
5902
+ (5871, 'RO ', '298', 'Larga'),
5903
+ (5872, 'RO ', '298', 'Lazaresti'),
5904
+ (5873, 'RO ', '298', 'Lazuri'),
5905
+ (5874, 'RO ', '298', 'Lelesti'),
5906
+ (5875, 'RO ', '298', 'Leurda'),
5907
+ (5876, 'RO ', '298', 'Licurici'),
5908
+ (5877, 'RO ', '298', 'Lihulesti'),
5909
+ (5878, 'RO ', '298', 'Lintea'),
5910
+ (5879, 'RO ', '298', 'Logresti'),
5911
+ (5880, 'RO ', '298', 'Logresti-Mosteni'),
5912
+ (5881, 'RO ', '298', 'Lupoaia'),
5913
+ (5882, 'RO ', '298', 'Lupoita'),
5914
+ (5883, 'RO ', '298', 'Macesu'),
5915
+ (5884, 'RO ', '298', 'Magheresti'),
5916
+ (5885, 'RO ', '298', 'Maiag'),
5917
+ (5886, 'RO ', '298', 'Marinesti'),
5918
+ (5887, 'RO ', '298', 'Maru'),
5919
+ (5888, 'RO ', '298', 'Matasari'),
5920
+ (5889, 'RO ', '298', 'Mazaroi'),
5921
+ (5890, 'RO ', '298', 'Mentii din Dos'),
5922
+ (5891, 'RO ', '298', 'Merfulesti'),
5923
+ (5892, 'RO ', '298', 'Miclosu'),
5924
+ (5893, 'RO ', '298', 'Miculesti'),
5925
+ (5894, 'RO ', '298', 'Mielusei'),
5926
+ (5895, 'RO ', '298', 'Mierea'),
5927
+ (5896, 'RO ', '298', 'Miericeaua'),
5928
+ (5897, 'RO ', '298', 'Miluta'),
5929
+ (5898, 'RO ', '298', 'Mirosloveni'),
5930
+ (5899, 'RO ', '298', 'Mogosani'),
5931
+ (5900, 'RO ', '298', 'Moi '),
5932
+ (5901, 'RO ', '298', 'Motorgi'),
5933
+ (5902, 'RO ', '298', 'Motru'),
5934
+ (5903, 'RO ', '298', 'Motru Sec'),
5935
+ (5904, 'RO ', '298', 'Murgesti'),
5936
+ (5905, 'RO ', '298', 'Murgilesti'),
5937
+ (5906, 'RO ', '298', 'Musculesti'),
5938
+ (5907, 'RO ', '298', 'Musetesti'),
5939
+ (5908, 'RO ', '298', 'Namete'),
5940
+ (5909, 'RO ', '298', 'Negoiesti'),
5941
+ (5910, 'RO ', '298', 'Negomir'),
5942
+ (5911, 'RO ', '298', 'Negreni'),
5943
+ (5912, 'RO ', '298', 'Nistoresti'),
5944
+ (5913, 'RO ', '298', 'Novaci'),
5945
+ (5914, 'RO ', '298', 'Nucetu'),
5946
+ (5915, 'RO ', '298', 'Obarsia'),
5947
+ (5916, 'RO ', '298', 'Obreja'),
5948
+ (5917, 'RO ', '298', 'Ohaba'),
5949
+ (5918, 'RO ', '298', 'Ohaba-Jiu'),
5950
+ (5919, 'RO ', '298', 'Olari'),
5951
+ (5920, 'RO ', '298', 'Olteanu'),
5952
+ (5921, 'RO ', '298', 'Orzesti'),
5953
+ (5922, 'RO ', '298', 'Orzu'),
5954
+ (5923, 'RO ', '298', 'Pades'),
5955
+ (5924, 'RO ', '298', 'Paisani'),
5956
+ (5925, 'RO ', '298', 'Pajistele'),
5957
+ (5926, 'RO ', '298', 'Paltinu'),
5958
+ (5927, 'RO ', '298', 'Parau'),
5959
+ (5928, 'RO ', '298', 'Parau Boia'),
5960
+ (5929, 'RO ', '298', 'Parau de Pripor'),
5961
+ (5930, 'RO ', '298', 'Parau de Vale'),
5962
+ (5931, 'RO ', '298', 'Parau Viu'),
5963
+ (5932, 'RO ', '298', 'Parvulesti'),
5964
+ (5933, 'RO ', '298', 'Pegeni'),
5965
+ (5934, 'RO ', '298', 'Pesteana de Jos'),
5966
+ (5935, 'RO ', '298', 'Pesteana-Jiu'),
5967
+ (5936, 'RO ', '298', 'Pesteana-Vulcan'),
5968
+ (5937, 'RO ', '298', 'Pestisani'),
5969
+ (5938, 'RO ', '298', 'Petrachei'),
5970
+ (5939, 'RO ', '298', 'Petresti'),
5971
+ (5940, 'RO ', '298', 'Picu'),
5972
+ (5941, 'RO ', '298', 'Pieptani'),
5973
+ (5942, 'RO ', '298', 'Pinoasa'),
5974
+ (5943, 'RO ', '298', 'Piscoiu'),
5975
+ (5944, 'RO ', '298', 'Piscuri'),
5976
+ (5945, 'RO ', '298', 'Pistestii din Deal'),
5977
+ (5946, 'RO ', '298', 'Plesa'),
5978
+ (5947, 'RO ', '298', 'Plopsoru'),
5979
+ (5948, 'RO ', '298', 'Plopu'),
5980
+ (5949, 'RO ', '298', 'Plostina'),
5981
+ (5950, 'RO ', '298', 'Pociovalistea'),
5982
+ (5951, 'RO ', '298', 'Pocruia'),
5983
+ (5952, 'RO ', '298', 'Poiana'),
5984
+ (5953, 'RO ', '298', 'Poiana-Seciuri'),
5985
+ (5954, 'RO ', '298', 'Poienari'),
5986
+ (5955, 'RO ', '298', 'Poienita'),
5987
+ (5956, 'RO ', '298', 'Pojaru'),
5988
+ (5957, 'RO ', '298', 'Pojogeni'),
5989
+ (5958, 'RO ', '298', 'Polata'),
5990
+ (5959, 'RO ', '298', 'Polovragi'),
5991
+ (5960, 'RO ', '298', 'Popesti'),
5992
+ (5961, 'RO ', '298', 'Popesti-Stejari'),
5993
+ (5962, 'RO ', '298', 'Preajba Mare'),
5994
+ (5963, 'RO ', '298', 'Prigoria'),
5995
+ (5964, 'RO ', '298', 'Priporu'),
5996
+ (5965, 'RO ', '298', 'Prunesti'),
5997
+ (5966, 'RO ', '298', 'Purcaru'),
5998
+ (5967, 'RO ', '298', 'Rachiti'),
5999
+ (5968, 'RO ', '298', 'Raci'),
6000
+ (5969, 'RO ', '298', 'Racoti'),
6001
+ (5970, 'RO ', '298', 'Racovita'),
6002
+ (5971, 'RO ', '298', 'Radinesti'),
6003
+ (5972, 'RO ', '298', 'Radosi'),
6004
+ (5973, 'RO ', '298', 'Ranca'),
6005
+ (5974, 'RO ', '298', 'Rapa'),
6006
+ (5975, 'RO ', '298', 'Rasova'),
6007
+ (5976, 'RO ', '298', 'Rasovita'),
6008
+ (5977, 'RO ', '298', 'Ratez'),
6009
+ (5978, 'RO ', '298', 'Rogojel'),
6010
+ (5979, 'RO ', '298', 'Rogojeni'),
6011
+ (5980, 'RO ', '298', 'Romanesti'),
6012
+ (5981, 'RO ', '298', 'Rosia de Amaradia'),
6013
+ (5982, 'RO ', '298', 'Rosia-Jiu'),
6014
+ (5983, 'RO ', '298', 'Rosiuta'),
6015
+ (5984, 'RO ', '298', 'Rovinari'),
6016
+ (5985, 'RO ', '298', 'Ruget'),
6017
+ (5986, 'RO ', '298', 'Rugi'),
6018
+ (5987, 'RO ', '298', 'Runcu'),
6019
+ (5988, 'RO ', '298', 'Runcurel'),
6020
+ (5989, 'RO ', '298', 'Sacelu'),
6021
+ (5990, 'RO ', '298', 'Samarinesti'),
6022
+ (5991, 'RO ', '298', 'Sambotin'),
6023
+ (5992, 'RO ', '298', 'Sanatesti'),
6024
+ (5993, 'RO ', '298', 'Sarbesti'),
6025
+ (5994, 'RO ', '298', 'Sardanesti'),
6026
+ (5995, 'RO ', '298', 'Sasa'),
6027
+ (5996, 'RO ', '298', 'Satu Nou'),
6028
+ (5997, 'RO ', '298', 'Saulesti'),
6029
+ (5998, 'RO ', '298', 'Schela'),
6030
+ (5999, 'RO ', '298', 'Scoarta'),
6031
+ (6000, 'RO ', '298', 'Scorusu'),
6032
+ (6001, 'RO ', '298', 'Scrada'),
6033
+ (6002, 'RO ', '298', 'Scurtu'),
6034
+ (6003, 'RO ', '298', 'Seaca'),
6035
+ (6004, 'RO ', '298', 'Seciurile'),
6036
+ (6005, 'RO ', '298', 'Seuca'),
6037
+ (6006, 'RO ', '298', 'Siacu'),
6038
+ (6007, 'RO ', '298', 'Sipotu'),
6039
+ (6008, 'RO ', '298', 'Sitesti'),
6040
+ (6009, 'RO ', '298', 'Sitoaia'),
6041
+ (6010, 'RO ', '298', 'Slamnesti'),
6042
+ (6011, 'RO ', '298', 'Slavuta'),
6043
+ (6012, 'RO ', '298', 'Slivilesti'),
6044
+ (6013, 'RO ', '298', 'Slobozia'),
6045
+ (6014, 'RO ', '298', 'Socu'),
6046
+ (6015, 'RO ', '298', 'Sohodol'),
6047
+ (6016, 'RO ', '298', 'Somanesti'),
6048
+ (6017, 'RO ', '298', 'Spahii'),
6049
+ (6018, 'RO ', '298', 'Stancesti'),
6050
+ (6019, 'RO ', '298', 'Stancesti-Larga'),
6051
+ (6020, 'RO ', '298', 'Stanesti'),
6052
+ (6021, 'RO ', '298', 'Stefanesti'),
6053
+ (6022, 'RO ', '298', 'Steic'),
6054
+ (6023, 'RO ', '298', 'Stejari'),
6055
+ (6024, 'RO ', '298', 'Stejaru'),
6056
+ (6025, 'RO ', '298', 'Stejerei'),
6057
+ (6026, 'RO ', '298', 'Sterpoaia'),
6058
+ (6027, 'RO ', '298', 'Stiucani'),
6059
+ (6028, 'RO ', '298', 'Stoina'),
6060
+ (6029, 'RO ', '298', 'Stolojani'),
6061
+ (6030, 'RO ', '298', 'Stramba-Jiu'),
6062
+ (6031, 'RO ', '298', 'Stramba-Vulcan'),
6063
+ (6032, 'RO ', '298', 'Stramtu'),
6064
+ (6033, 'RO ', '298', 'Stroiesti'),
6065
+ (6034, 'RO ', '298', 'Sura'),
6066
+ (6035, 'RO ', '298', 'Suseni'),
6067
+ (6036, 'RO ', '298', 'Talpasesti'),
6068
+ (6037, 'RO ', '298', 'Talvesti'),
6069
+ (6038, 'RO ', '298', 'Tamasesti'),
6070
+ (6039, 'RO ', '298', 'Tantareni'),
6071
+ (6040, 'RO ', '298', 'Tarculesti'),
6072
+ (6041, 'RO ', '298', 'Targu Carbunesti'),
6073
+ (6042, 'RO ', '298', 'Targu Jiu'),
6074
+ (6043, 'RO ', '298', 'Targu Logresti'),
6075
+ (6044, 'RO ', '298', 'Tehomir'),
6076
+ (6045, 'RO ', '298', 'Telesti'),
6077
+ (6046, 'RO ', '298', 'Tetila'),
6078
+ (6047, 'RO ', '298', 'Ticleni'),
6079
+ (6048, 'RO ', '298', 'Timiseni'),
6080
+ (6049, 'RO ', '298', 'Tirioi'),
6081
+ (6050, 'RO ', '298', 'Tismana'),
6082
+ (6051, 'RO ', '298', 'Toiaga'),
6083
+ (6052, 'RO ', '298', 'Topesti'),
6084
+ (6053, 'RO ', '298', 'Totea'),
6085
+ (6054, 'RO ', '298', 'Totea de Hurezani'),
6086
+ (6055, 'RO ', '298', 'Trestioara'),
6087
+ (6056, 'RO ', '298', 'Trocani'),
6088
+ (6057, 'RO ', '298', 'Turburea'),
6089
+ (6058, 'RO ', '298', 'Turceni'),
6090
+ (6059, 'RO ', '298', 'Turcinesti'),
6091
+ (6060, 'RO ', '298', 'Ulmet'),
6092
+ (6061, 'RO ', '298', 'Ungureni'),
6093
+ (6062, 'RO ', '298', 'Urda de Jos'),
6094
+ (6063, 'RO ', '298', 'Urda de Sus'),
6095
+ (6064, 'RO ', '298', 'Urdari'),
6096
+ (6065, 'RO ', '298', 'Urechesti'),
6097
+ (6066, 'RO ', '298', 'Ursati'),
6098
+ (6067, 'RO ', '298', 'Ursoaia');
6099
+ INSERT INTO `directory_country_region_city` (`city_id`, `country_id`, `region_id`, `cityname`) VALUES
6100
+ (6068, 'RO ', '298', 'Vacarea'),
6101
+ (6069, 'RO ', '298', 'Vagiulesti'),
6102
+ (6070, 'RO ', '298', 'Vaidei'),
6103
+ (6071, 'RO ', '298', 'Vaieni'),
6104
+ (6072, 'RO ', '298', 'Valari'),
6105
+ (6073, 'RO ', '298', 'Valceaua'),
6106
+ (6074, 'RO ', '298', 'Valcele'),
6107
+ (6075, 'RO ', '298', 'Valea '),
6108
+ (6076, 'RO ', '298', 'Valea Bisericii'),
6109
+ (6077, 'RO ', '298', 'Valea cu Apa'),
6110
+ (6078, 'RO ', '298', 'Valea Desului'),
6111
+ (6079, 'RO ', '298', 'Valea Manastirii'),
6112
+ (6080, 'RO ', '298', 'Valea Mare'),
6113
+ (6081, 'RO ', '298', 'Valea Mica'),
6114
+ (6082, 'RO ', '298', 'Valea Motrului'),
6115
+ (6083, 'RO ', '298', 'Valea Perilor'),
6116
+ (6084, 'RO ', '298', 'Valea Pojarului'),
6117
+ (6085, 'RO ', '298', 'Valea Racilor'),
6118
+ (6086, 'RO ', '298', 'Valea Viei'),
6119
+ (6087, 'RO ', '298', 'Valeni'),
6120
+ (6088, 'RO ', '298', 'Valuta'),
6121
+ (6089, 'RO ', '298', 'Vanata'),
6122
+ (6090, 'RO ', '298', 'Vartopu'),
6123
+ (6091, 'RO ', '298', 'Vidin'),
6124
+ (6092, 'RO ', '298', 'Viersani'),
6125
+ (6093, 'RO ', '298', 'Vladimir'),
6126
+ (6094, 'RO ', '298', 'Vladuleni'),
6127
+ (6095, 'RO ', '298', 'Voinigesti'),
6128
+ (6096, 'RO ', '298', 'Voitestii din Deal'),
6129
+ (6097, 'RO ', '298', 'Voitestii din Vale'),
6130
+ (6098, 'RO ', '298', 'Zaicoiu'),
6131
+ (6099, 'RO ', '298', 'Zorlesti'),
6132
+ (6100, 'RO ', '298', 'Zorzila'),
6133
+ (6101, 'RO ', '299', 'Aldea'),
6134
+ (6102, 'RO ', '299', 'Alexandrita'),
6135
+ (6103, 'RO ', '299', 'Alunis'),
6136
+ (6104, 'RO ', '299', 'Andreeni'),
6137
+ (6105, 'RO ', '299', 'Armaseni'),
6138
+ (6106, 'RO ', '299', 'Armasenii Noi'),
6139
+ (6107, 'RO ', '299', 'Arvateni'),
6140
+ (6108, 'RO ', '299', 'Atia'),
6141
+ (6109, 'RO ', '299', 'Atid'),
6142
+ (6110, 'RO ', '299', 'Avramesti'),
6143
+ (6111, 'RO ', '299', 'Badeni'),
6144
+ (6112, 'RO ', '299', 'Baile Chirui'),
6145
+ (6113, 'RO ', '299', 'Baile Homorod'),
6146
+ (6114, 'RO ', '299', 'Baile Tusnad'),
6147
+ (6115, 'RO ', '299', 'Balan'),
6148
+ (6116, 'RO ', '299', 'Bancu'),
6149
+ (6117, 'RO ', '299', 'Baratcos'),
6150
+ (6118, 'RO ', '299', 'Barzava'),
6151
+ (6119, 'RO ', '299', 'Becas'),
6152
+ (6120, 'RO ', '299', 'Bentid'),
6153
+ (6121, 'RO ', '299', 'Beta'),
6154
+ (6122, 'RO ', '299', 'Betesti'),
6155
+ (6123, 'RO ', '299', 'Bilbor'),
6156
+ (6124, 'RO ', '299', 'Bisericani'),
6157
+ (6125, 'RO ', '299', 'Bodogaia'),
6158
+ (6126, 'RO ', '299', 'Borsec'),
6159
+ (6127, 'RO ', '299', 'Borzont'),
6160
+ (6128, 'RO ', '299', 'Bradesti'),
6161
+ (6129, 'RO ', '299', 'Bucin (Joseni)'),
6162
+ (6130, 'RO ', '299', 'Bucin (Praid)'),
6163
+ (6131, 'RO ', '299', 'Bulgareni'),
6164
+ (6132, 'RO ', '299', 'Cadaciu Mare'),
6165
+ (6133, 'RO ', '299', 'Cadaciu Mic'),
6166
+ (6134, 'RO ', '299', 'Calnaci'),
6167
+ (6135, 'RO ', '299', 'Calonda'),
6168
+ (6136, 'RO ', '299', 'Calugareni'),
6169
+ (6137, 'RO ', '299', 'Capalnita'),
6170
+ (6138, 'RO ', '299', 'Capu Corbului'),
6171
+ (6139, 'RO ', '299', 'Carpitus'),
6172
+ (6140, 'RO ', '299', 'Carta'),
6173
+ (6141, 'RO ', '299', 'Casinu Nou'),
6174
+ (6142, 'RO ', '299', 'Cechesti'),
6175
+ (6143, 'RO ', '299', 'Cehetel'),
6176
+ (6144, 'RO ', '299', 'Cetatuia'),
6177
+ (6145, 'RO ', '299', 'Chedia Mare'),
6178
+ (6146, 'RO ', '299', 'Chedia Mica'),
6179
+ (6147, 'RO ', '299', 'Chileni'),
6180
+ (6148, 'RO ', '299', 'Chinusu'),
6181
+ (6149, 'RO ', '299', 'Ciaracio'),
6182
+ (6150, 'RO ', '299', 'Ciba'),
6183
+ (6151, 'RO ', '299', 'Ciceu'),
6184
+ (6152, 'RO ', '299', 'Ciobanis'),
6185
+ (6153, 'RO ', '299', 'Cireseni'),
6186
+ (6154, 'RO ', '299', 'Ciucani'),
6187
+ (6155, 'RO ', '299', 'Ciucsangeorgiu'),
6188
+ (6156, 'RO ', '299', 'Ciumani'),
6189
+ (6157, 'RO ', '299', 'Cobatesti'),
6190
+ (6158, 'RO ', '299', 'Comanesti'),
6191
+ (6159, 'RO ', '299', 'Comiat'),
6192
+ (6160, 'RO ', '299', 'Corbu'),
6193
+ (6161, 'RO ', '299', 'Corund'),
6194
+ (6162, 'RO ', '299', 'Cotormani'),
6195
+ (6163, 'RO ', '299', 'Covacipeter'),
6196
+ (6164, 'RO ', '299', 'Cozmeni'),
6197
+ (6165, 'RO ', '299', 'Craciunel'),
6198
+ (6166, 'RO ', '299', 'Criseni'),
6199
+ (6167, 'RO ', '299', 'Cristuru Secuiesc'),
6200
+ (6168, 'RO ', '299', 'Cusmed'),
6201
+ (6169, 'RO ', '299', 'Daia'),
6202
+ (6170, 'RO ', '299', 'Danesti'),
6203
+ (6171, 'RO ', '299', 'Darjiu'),
6204
+ (6172, 'RO ', '299', 'Dealu'),
6205
+ (6173, 'RO ', '299', 'Dealu Armanului'),
6206
+ (6174, 'RO ', '299', 'Dejutiu'),
6207
+ (6175, 'RO ', '299', 'Delnita'),
6208
+ (6176, 'RO ', '299', 'Desag'),
6209
+ (6177, 'RO ', '299', 'Ditrau'),
6210
+ (6178, 'RO ', '299', 'Dobeni'),
6211
+ (6179, 'RO ', '299', 'Duda'),
6212
+ (6180, 'RO ', '299', 'Eghersec'),
6213
+ (6181, 'RO ', '299', 'Eliseni'),
6214
+ (6182, 'RO ', '299', 'Fagetel (Frumoasa)'),
6215
+ (6183, 'RO ', '299', 'Fagetel (Remetea)'),
6216
+ (6184, 'RO ', '299', 'Fancel'),
6217
+ (6185, 'RO ', '299', 'Fantana Brazilor'),
6218
+ (6186, 'RO ', '299', 'Feliceni'),
6219
+ (6187, 'RO ', '299', 'Filias'),
6220
+ (6188, 'RO ', '299', 'Filpea'),
6221
+ (6189, 'RO ', '299', 'Firtanus'),
6222
+ (6190, 'RO ', '299', 'Firtusu'),
6223
+ (6191, 'RO ', '299', 'Fitod'),
6224
+ (6192, 'RO ', '299', 'Forteni'),
6225
+ (6193, 'RO ', '299', 'Frumoasa'),
6226
+ (6194, 'RO ', '299', 'Fundoaia'),
6227
+ (6195, 'RO ', '299', 'Galautas'),
6228
+ (6196, 'RO ', '299', 'Galautas-Parau'),
6229
+ (6197, 'RO ', '299', 'Gheorgheni'),
6230
+ (6198, 'RO ', '299', 'Ghidut'),
6231
+ (6199, 'RO ', '299', 'Ghipes'),
6232
+ (6200, 'RO ', '299', 'Goagiu'),
6233
+ (6201, 'RO ', '299', 'Hagota'),
6234
+ (6202, 'RO ', '299', 'Harghita-Bai'),
6235
+ (6203, 'RO ', '299', 'Hodosa'),
6236
+ (6204, 'RO ', '299', 'Hoghia'),
6237
+ (6205, 'RO ', '299', 'Hosasau'),
6238
+ (6206, 'RO ', '299', 'Iacobeni'),
6239
+ (6207, 'RO ', '299', 'Iasu'),
6240
+ (6208, 'RO ', '299', 'Ighiu'),
6241
+ (6209, 'RO ', '299', 'Imper'),
6242
+ (6210, 'RO ', '299', 'Ineu'),
6243
+ (6211, 'RO ', '299', 'Inlaceni'),
6244
+ (6212, 'RO ', '299', 'Izvoare'),
6245
+ (6213, 'RO ', '299', 'Izvoru Muresului'),
6246
+ (6214, 'RO ', '299', 'Izvorul Trotusului'),
6247
+ (6215, 'RO ', '299', 'Jigodin-Bai'),
6248
+ (6216, 'RO ', '299', 'Jolotca'),
6249
+ (6217, 'RO ', '299', 'Joseni'),
6250
+ (6218, 'RO ', '299', 'Lacu Rosu'),
6251
+ (6219, 'RO ', '299', 'Lazarea'),
6252
+ (6220, 'RO ', '299', 'Lazaresti'),
6253
+ (6221, 'RO ', '299', 'Laz-Firtanus'),
6254
+ (6222, 'RO ', '299', 'Laz-soimus'),
6255
+ (6223, 'RO ', '299', 'Leliceni'),
6256
+ (6224, 'RO ', '299', 'Liban'),
6257
+ (6225, 'RO ', '299', 'Livezi'),
6258
+ (6226, 'RO ', '299', 'Locodeni'),
6259
+ (6227, 'RO ', '299', 'Lueta'),
6260
+ (6228, 'RO ', '299', 'Lunca de Jos'),
6261
+ (6229, 'RO ', '299', 'Lunca de Sus'),
6262
+ (6230, 'RO ', '299', 'Luncani'),
6263
+ (6231, 'RO ', '299', 'Lupeni'),
6264
+ (6232, 'RO ', '299', 'Lutita'),
6265
+ (6233, 'RO ', '299', 'Madaras'),
6266
+ (6234, 'RO ', '299', 'Martinis'),
6267
+ (6235, 'RO ', '299', 'Martonca'),
6268
+ (6236, 'RO ', '299', 'Matiseni'),
6269
+ (6237, 'RO ', '299', 'Medisoru Mare'),
6270
+ (6238, 'RO ', '299', 'Medisoru Mic'),
6271
+ (6239, 'RO ', '299', 'Meresti'),
6272
+ (6240, 'RO ', '299', 'Miercurea-Ciuc'),
6273
+ (6241, 'RO ', '299', 'Mihaileni'),
6274
+ (6242, 'RO ', '299', 'Mihaileni (simonesti)'),
6275
+ (6243, 'RO ', '299', 'Minele Lueta'),
6276
+ (6244, 'RO ', '299', 'Misentea'),
6277
+ (6245, 'RO ', '299', 'Moglanesti'),
6278
+ (6246, 'RO ', '299', 'Morareni'),
6279
+ (6247, 'RO ', '299', 'Mugeni'),
6280
+ (6248, 'RO ', '299', 'Mujna'),
6281
+ (6249, 'RO ', '299', 'Nadejdea'),
6282
+ (6250, 'RO ', '299', 'Nicoleni'),
6283
+ (6251, 'RO ', '299', 'Nicolesti (Frumoasa)'),
6284
+ (6252, 'RO ', '299', 'Nicolesti (Ulies)'),
6285
+ (6253, 'RO ', '299', 'Nuteni'),
6286
+ (6254, 'RO ', '299', 'Obranesti'),
6287
+ (6255, 'RO ', '299', 'Ocland'),
6288
+ (6256, 'RO ', '299', 'Ocna de Jos'),
6289
+ (6257, 'RO ', '299', 'Ocna de Sus'),
6290
+ (6258, 'RO ', '299', 'Odorheiu Secuiesc'),
6291
+ (6259, 'RO ', '299', 'Oraseni'),
6292
+ (6260, 'RO ', '299', 'Oteni'),
6293
+ (6261, 'RO ', '299', 'Paltinis'),
6294
+ (6262, 'RO ', '299', 'Paltinis-Ciuc'),
6295
+ (6263, 'RO ', '299', 'Pauleni'),
6296
+ (6264, 'RO ', '299', 'Pauleni-Ciuc'),
6297
+ (6265, 'RO ', '299', 'Petecu'),
6298
+ (6266, 'RO ', '299', 'Petreni'),
6299
+ (6267, 'RO ', '299', 'Plaiesii de Jos'),
6300
+ (6268, 'RO ', '299', 'Plaiesii de Sus'),
6301
+ (6269, 'RO ', '299', 'Platonesti'),
6302
+ (6270, 'RO ', '299', 'Plopis'),
6303
+ (6271, 'RO ', '299', 'Poiana Fagului'),
6304
+ (6272, 'RO ', '299', 'Poiana Tarnavei'),
6305
+ (6273, 'RO ', '299', 'Polonita'),
6306
+ (6274, 'RO ', '299', 'Porumbeni'),
6307
+ (6275, 'RO ', '299', 'Porumbenii Mari'),
6308
+ (6276, 'RO ', '299', 'Porumbenii Mici'),
6309
+ (6277, 'RO ', '299', 'Potiond'),
6310
+ (6278, 'RO ', '299', 'Praid'),
6311
+ (6279, 'RO ', '299', 'Preluca'),
6312
+ (6280, 'RO ', '299', 'Puntea Lupului'),
6313
+ (6281, 'RO ', '299', 'Racu'),
6314
+ (6282, 'RO ', '299', 'Rares'),
6315
+ (6283, 'RO ', '299', 'Remetea'),
6316
+ (6284, 'RO ', '299', 'Ruganesti'),
6317
+ (6285, 'RO ', '299', 'Runc'),
6318
+ (6286, 'RO ', '299', 'Sacel'),
6319
+ (6287, 'RO ', '299', 'Sancel'),
6320
+ (6288, 'RO ', '299', 'Sancrai'),
6321
+ (6289, 'RO ', '299', 'SanCraieni'),
6322
+ (6290, 'RO ', '299', 'Sandominic'),
6323
+ (6291, 'RO ', '299', 'Sanmartin'),
6324
+ (6292, 'RO ', '299', 'Sanpaul'),
6325
+ (6293, 'RO ', '299', 'Sansimion'),
6326
+ (6294, 'RO ', '299', 'Santimbru'),
6327
+ (6295, 'RO ', '299', 'Santimbru-Bai'),
6328
+ (6296, 'RO ', '299', 'Sarmas'),
6329
+ (6297, 'RO ', '299', 'Sasveres'),
6330
+ (6298, 'RO ', '299', 'Satu Mare'),
6331
+ (6299, 'RO ', '299', 'Satu Mic'),
6332
+ (6300, 'RO ', '299', 'Satu Nou (Ocland)'),
6333
+ (6301, 'RO ', '299', 'Satu Nou (Racu)'),
6334
+ (6302, 'RO ', '299', 'Secuieni'),
6335
+ (6303, 'RO ', '299', 'Senetea'),
6336
+ (6304, 'RO ', '299', 'Sicasau'),
6337
+ (6305, 'RO ', '299', 'Siclod'),
6338
+ (6306, 'RO ', '299', 'Siculeni'),
6339
+ (6307, 'RO ', '299', 'Simonesti'),
6340
+ (6308, 'RO ', '299', 'Sineu'),
6341
+ (6309, 'RO ', '299', 'Soimeni'),
6342
+ (6310, 'RO ', '299', 'Soimusu Mare'),
6343
+ (6311, 'RO ', '299', 'Soimusu Mic'),
6344
+ (6312, 'RO ', '299', 'Sub Cetate'),
6345
+ (6313, 'RO ', '299', 'Subcetate'),
6346
+ (6314, 'RO ', '299', 'Suseni'),
6347
+ (6315, 'RO ', '299', 'Taietura'),
6348
+ (6316, 'RO ', '299', 'Tamasu'),
6349
+ (6317, 'RO ', '299', 'Tarcesti'),
6350
+ (6318, 'RO ', '299', 'Tarnovita'),
6351
+ (6319, 'RO ', '299', 'Taureni'),
6352
+ (6320, 'RO ', '299', 'Teleac'),
6353
+ (6321, 'RO ', '299', 'Tengheler'),
6354
+ (6322, 'RO ', '299', 'Tibod'),
6355
+ (6323, 'RO ', '299', 'Toleseni'),
6356
+ (6324, 'RO ', '299', 'Tomesti'),
6357
+ (6325, 'RO ', '299', 'Toplita'),
6358
+ (6326, 'RO ', '299', 'Tulghes'),
6359
+ (6327, 'RO ', '299', 'Turdeni'),
6360
+ (6328, 'RO ', '299', 'Tusnad'),
6361
+ (6329, 'RO ', '299', 'Tusnadu Nou'),
6362
+ (6330, 'RO ', '299', 'Uilac'),
6363
+ (6331, 'RO ', '299', 'Ulcani'),
6364
+ (6332, 'RO ', '299', 'Ulies'),
6365
+ (6333, 'RO ', '299', 'Vacaresti'),
6366
+ (6334, 'RO ', '299', 'Valea Boros'),
6367
+ (6335, 'RO ', '299', 'Valea Capelei'),
6368
+ (6336, 'RO ', '299', 'Valea Garbea'),
6369
+ (6337, 'RO ', '299', 'Valea Intunecoasa'),
6370
+ (6338, 'RO ', '299', 'Valea lui Antaloc'),
6371
+ (6339, 'RO ', '299', 'Valea lui Pavel'),
6372
+ (6340, 'RO ', '299', 'Valea Rece'),
6373
+ (6341, 'RO ', '299', 'Valea Rotunda'),
6374
+ (6342, 'RO ', '299', 'Valea Stramba'),
6375
+ (6343, 'RO ', '299', 'Valea Ugra'),
6376
+ (6344, 'RO ', '299', 'Valea Uzului'),
6377
+ (6345, 'RO ', '299', 'Valeni'),
6378
+ (6346, 'RO ', '299', 'Vargatac'),
6379
+ (6347, 'RO ', '299', 'Varsag'),
6380
+ (6348, 'RO ', '299', 'Vasileni'),
6381
+ (6349, 'RO ', '299', 'Vidacut'),
6382
+ (6350, 'RO ', '299', 'Visafolio'),
6383
+ (6351, 'RO ', '299', 'Vlahita'),
6384
+ (6352, 'RO ', '299', 'Voslabeni'),
6385
+ (6353, 'RO ', '299', 'Vrabia'),
6386
+ (6354, 'RO ', '299', 'Zencani'),
6387
+ (6355, 'RO ', '299', 'Zetea'),
6388
+ (6356, 'RO ', '300', 'Abucea'),
6389
+ (6357, 'RO ', '300', 'Almasel'),
6390
+ (6358, 'RO ', '300', 'Almas-Saliste'),
6391
+ (6359, 'RO ', '300', 'Almasu Mic'),
6392
+ (6360, 'RO ', '300', 'Almasu Mic de Munte'),
6393
+ (6361, 'RO ', '300', 'Almasu Sec'),
6394
+ (6362, 'RO ', '300', 'Alun (Bosorod)'),
6395
+ (6363, 'RO ', '300', 'Alun (Bunila)'),
6396
+ (6364, 'RO ', '300', 'Aninoasa'),
6397
+ (6365, 'RO ', '300', 'Aranies'),
6398
+ (6366, 'RO ', '300', 'Archia'),
6399
+ (6367, 'RO ', '300', 'Ardeu'),
6400
+ (6368, 'RO ', '300', 'Aurel Vlaicu'),
6401
+ (6369, 'RO ', '300', 'Bacaia'),
6402
+ (6370, 'RO ', '300', 'Bacea'),
6403
+ (6371, 'RO ', '300', 'Bacia'),
6404
+ (6372, 'RO ', '300', 'Baia de Cris'),
6405
+ (6373, 'RO ', '300', 'Baiesti'),
6406
+ (6374, 'RO ', '300', 'Baita'),
6407
+ (6375, 'RO ', '300', 'Balata'),
6408
+ (6376, 'RO ', '300', 'Baldovin'),
6409
+ (6377, 'RO ', '300', 'Balomir'),
6410
+ (6378, 'RO ', '300', 'Balsa'),
6411
+ (6379, 'RO ', '300', 'Banita'),
6412
+ (6380, 'RO ', '300', 'Banpotoc'),
6413
+ (6381, 'RO ', '300', 'Barastii Hategului'),
6414
+ (6382, 'RO ', '300', 'Barastii Iliei'),
6415
+ (6383, 'RO ', '300', 'Barbura'),
6416
+ (6384, 'RO ', '300', 'Barcea Mare'),
6417
+ (6385, 'RO ', '300', 'Barcea Mica'),
6418
+ (6386, 'RO ', '300', 'Barsau'),
6419
+ (6387, 'RO ', '300', 'Baru'),
6420
+ (6388, 'RO ', '300', 'Barza'),
6421
+ (6389, 'RO ', '300', 'Basarabasa'),
6422
+ (6390, 'RO ', '300', 'Bastea'),
6423
+ (6391, 'RO ', '300', 'Batalar'),
6424
+ (6392, 'RO ', '300', 'Batiz'),
6425
+ (6393, 'RO ', '300', 'Batrana'),
6426
+ (6394, 'RO ', '300', 'Bejan'),
6427
+ (6395, 'RO ', '300', 'Bejan-Tarnavita'),
6428
+ (6396, 'RO ', '300', 'Bercu'),
6429
+ (6397, 'RO ', '300', 'Beriu'),
6430
+ (6398, 'RO ', '300', 'Birtin'),
6431
+ (6399, 'RO ', '300', 'Blajeni'),
6432
+ (6400, 'RO ', '300', 'Blajeni-Vulcan'),
6433
+ (6401, 'RO ', '300', 'Bobaia'),
6434
+ (6402, 'RO ', '300', 'Bobalna'),
6435
+ (6403, 'RO ', '300', 'Bocsa Mare'),
6436
+ (6404, 'RO ', '300', 'Bocsa Mica'),
6437
+ (6405, 'RO ', '300', 'Boholt'),
6438
+ (6406, 'RO ', '300', 'Boia Barzii'),
6439
+ (6407, 'RO ', '300', 'Boita'),
6440
+ (6408, 'RO ', '300', 'Boiu'),
6441
+ (6409, 'RO ', '300', 'Boiu de Jos'),
6442
+ (6410, 'RO ', '300', 'Boiu de Sus'),
6443
+ (6411, 'RO ', '300', 'Bos'),
6444
+ (6412, 'RO ', '300', 'Bosorod'),
6445
+ (6413, 'RO ', '300', 'Boz'),
6446
+ (6414, 'RO ', '300', 'Bozes'),
6447
+ (6415, 'RO ', '300', 'Brad'),
6448
+ (6416, 'RO ', '300', 'Bradatel'),
6449
+ (6417, 'RO ', '300', 'Branisca'),
6450
+ (6418, 'RO ', '300', 'Braseu'),
6451
+ (6419, 'RO ', '300', 'Brazi'),
6452
+ (6420, 'RO ', '300', 'Braznic'),
6453
+ (6421, 'RO ', '300', 'Breazova'),
6454
+ (6422, 'RO ', '300', 'Bretea Muresana'),
6455
+ (6423, 'RO ', '300', 'Bretea Romana'),
6456
+ (6424, 'RO ', '300', 'Bretea Streiului'),
6457
+ (6425, 'RO ', '300', 'Bretelin'),
6458
+ (6426, 'RO ', '300', 'Brotuna'),
6459
+ (6427, 'RO ', '300', 'Buces'),
6460
+ (6428, 'RO ', '300', 'Buces-Vulcan'),
6461
+ (6429, 'RO ', '300', 'Bucium'),
6462
+ (6430, 'RO ', '300', 'Bucium-Orlea'),
6463
+ (6431, 'RO ', '300', 'Bucuresci'),
6464
+ (6432, 'RO ', '300', 'Bujoru'),
6465
+ (6433, 'RO ', '300', 'Bulzestii de Jos'),
6466
+ (6434, 'RO ', '300', 'Bulzestii de sus'),
6467
+ (6435, 'RO ', '300', 'Bunesti'),
6468
+ (6436, 'RO ', '300', 'Bunila'),
6469
+ (6437, 'RO ', '300', 'Burjuc'),
6470
+ (6438, 'RO ', '300', 'Cabesti'),
6471
+ (6439, 'RO ', '300', 'Cainelu de Jos'),
6472
+ (6440, 'RO ', '300', 'Cainelu de Sus'),
6473
+ (6441, 'RO ', '300', 'Calan'),
6474
+ (6442, 'RO ', '300', 'Calanu Mic'),
6475
+ (6443, 'RO ', '300', 'Campu lui Neag'),
6476
+ (6444, 'RO ', '300', 'Campuri de Sus'),
6477
+ (6445, 'RO ', '300', 'Campuri-Surduc'),
6478
+ (6446, 'RO ', '300', 'Caoi'),
6479
+ (6447, 'RO ', '300', 'Caraci'),
6480
+ (6448, 'RO ', '300', 'Carastau'),
6481
+ (6449, 'RO ', '300', 'Carjiti'),
6482
+ (6450, 'RO ', '300', 'Carmazanesti'),
6483
+ (6451, 'RO ', '300', 'Carnesti'),
6484
+ (6452, 'RO ', '300', 'Carpinis'),
6485
+ (6453, 'RO ', '300', 'Castau'),
6486
+ (6454, 'RO ', '300', 'Cazanesti'),
6487
+ (6455, 'RO ', '300', 'Cerbal'),
6488
+ (6456, 'RO ', '300', 'Cerbia'),
6489
+ (6457, 'RO ', '300', 'Cerisor'),
6490
+ (6458, 'RO ', '300', 'Cernisoara Florese'),
6491
+ (6459, 'RO ', '300', 'Certeju de Jos'),
6492
+ (6460, 'RO ', '300', 'Certeju de Sus'),
6493
+ (6461, 'RO ', '300', 'Cherghes'),
6494
+ (6462, 'RO ', '300', 'Chimindia'),
6495
+ (6463, 'RO ', '300', 'Chiscadaga'),
6496
+ (6464, 'RO ', '300', 'Chitid'),
6497
+ (6465, 'RO ', '300', 'Cigmau'),
6498
+ (6466, 'RO ', '300', 'Cimpa'),
6499
+ (6467, 'RO ', '300', 'Cincis-Cerna'),
6500
+ (6468, 'RO ', '300', 'Cioclovina'),
6501
+ (6469, 'RO ', '300', 'Ciopeia'),
6502
+ (6470, 'RO ', '300', 'Ciula Mare'),
6503
+ (6471, 'RO ', '300', 'Ciula Mica'),
6504
+ (6472, 'RO ', '300', 'Ciulpaz'),
6505
+ (6473, 'RO ', '300', 'Ciumita'),
6506
+ (6474, 'RO ', '300', 'Ciungani'),
6507
+ (6475, 'RO ', '300', 'Ciungu Mare'),
6508
+ (6476, 'RO ', '300', 'Clopotiva'),
6509
+ (6477, 'RO ', '300', 'Coaja'),
6510
+ (6478, 'RO ', '300', 'Copaci'),
6511
+ (6479, 'RO ', '300', 'Coroiesti'),
6512
+ (6480, 'RO ', '300', 'Cosesti'),
6513
+ (6481, 'RO ', '300', 'Costesti'),
6514
+ (6482, 'RO ', '300', 'Costesti-Deal'),
6515
+ (6483, 'RO ', '300', 'Covragiu'),
6516
+ (6484, 'RO ', '300', 'Cozia'),
6517
+ (6485, 'RO ', '300', 'Craciunesti'),
6518
+ (6486, 'RO ', '300', 'Craguis'),
6519
+ (6487, 'RO ', '300', 'Cris'),
6520
+ (6488, 'RO ', '300', 'Crisan '),
6521
+ (6489, 'RO ', '300', 'Criscior'),
6522
+ (6490, 'RO ', '300', 'Cristur'),
6523
+ (6491, 'RO ', '300', 'Criva'),
6524
+ (6492, 'RO ', '300', 'Crivadia'),
6525
+ (6493, 'RO ', '300', 'Cucuis'),
6526
+ (6494, 'RO ', '300', 'Cuies'),
6527
+ (6495, 'RO ', '300', 'Curechiu'),
6528
+ (6496, 'RO ', '300', 'Curpenii Silvasului'),
6529
+ (6497, 'RO ', '300', 'Cutin'),
6530
+ (6498, 'RO ', '300', 'Dabaca'),
6531
+ (6499, 'RO ', '300', 'Dalja Mare'),
6532
+ (6500, 'RO ', '300', 'Dalja Mica'),
6533
+ (6501, 'RO ', '300', 'Dancu Mare'),
6534
+ (6502, 'RO ', '300', 'Dancu Mic'),
6535
+ (6503, 'RO ', '300', 'Danulesti'),
6536
+ (6504, 'RO ', '300', 'Dealu Babii'),
6537
+ (6505, 'RO ', '300', 'Dealu Mare'),
6538
+ (6506, 'RO ', '300', 'Dealu Mic'),
6539
+ (6507, 'RO ', '300', 'Deleni'),
6540
+ (6508, 'RO ', '300', 'Densus'),
6541
+ (6509, 'RO ', '300', 'Deva'),
6542
+ (6510, 'RO ', '300', 'Dobra'),
6543
+ (6511, 'RO ', '300', 'Dobrot'),
6544
+ (6512, 'RO ', '300', 'Dragu-Brad'),
6545
+ (6513, 'RO ', '300', 'Dudesti'),
6546
+ (6514, 'RO ', '300', 'Dumbrava'),
6547
+ (6515, 'RO ', '300', 'Dumbrava de Jos'),
6548
+ (6516, 'RO ', '300', 'Dumbrava de Sus'),
6549
+ (6517, 'RO ', '300', 'Dumbravita'),
6550
+ (6518, 'RO ', '300', 'Dumesti'),
6551
+ (6519, 'RO ', '300', 'Dupapiatra '),
6552
+ (6520, 'RO ', '300', 'Fagetel'),
6553
+ (6521, 'RO ', '300', 'Fantana'),
6554
+ (6522, 'RO ', '300', 'Farcadin'),
6555
+ (6523, 'RO ', '300', 'Fata Rosie'),
6556
+ (6524, 'RO ', '300', 'Federi'),
6557
+ (6525, 'RO ', '300', 'Feregi '),
6558
+ (6526, 'RO ', '300', 'Fintoag'),
6559
+ (6527, 'RO ', '300', 'Fizes'),
6560
+ (6528, 'RO ', '300', 'Fizesti'),
6561
+ (6529, 'RO ', '300', 'Folt'),
6562
+ (6530, 'RO ', '300', 'Fornadia'),
6563
+ (6531, 'RO ', '300', 'Furcsoara'),
6564
+ (6532, 'RO ', '300', 'Galati'),
6565
+ (6533, 'RO ', '300', 'Galbina'),
6566
+ (6534, 'RO ', '300', 'Gantaga'),
6567
+ (6535, 'RO ', '300', 'Gelmar'),
6568
+ (6536, 'RO ', '300', 'General Berthelot'),
6569
+ (6537, 'RO ', '300', 'Geoagiu'),
6570
+ (6538, 'RO ', '300', 'Geoagiu-Bai'),
6571
+ (6539, 'RO ', '300', 'Ghelari'),
6572
+ (6540, 'RO ', '300', 'Gialacuta'),
6573
+ (6541, 'RO ', '300', 'Giurgesti'),
6574
+ (6542, 'RO ', '300', 'Glodghilesti'),
6575
+ (6543, 'RO ', '300', 'Godinesti'),
6576
+ (6544, 'RO ', '300', 'Goles'),
6577
+ (6545, 'RO ', '300', 'Gotesti'),
6578
+ (6546, 'RO ', '300', 'Gothatea'),
6579
+ (6547, 'RO ', '300', 'Govajdia'),
6580
+ (6548, 'RO ', '300', 'Gradistea de Munte'),
6581
+ (6549, 'RO ', '300', 'Grid'),
6582
+ (6550, 'RO ', '300', 'Grind'),
6583
+ (6551, 'RO ', '300', 'Grohot'),
6584
+ (6552, 'RO ', '300', 'Grohotele'),
6585
+ (6553, 'RO ', '300', 'Gros'),
6586
+ (6554, 'RO ', '300', 'Grosuri'),
6587
+ (6555, 'RO ', '300', 'Gura Bordului'),
6588
+ (6556, 'RO ', '300', 'Gurasada'),
6589
+ (6557, 'RO ', '300', 'Harau'),
6590
+ (6558, 'RO ', '300', 'Hartagani'),
6591
+ (6559, 'RO ', '300', 'Hasdat'),
6592
+ (6560, 'RO ', '300', 'Hasdau'),
6593
+ (6561, 'RO ', '300', 'Hatagel'),
6594
+ (6562, 'RO ', '300', 'Hateg'),
6595
+ (6563, 'RO ', '300', 'Herepeia'),
6596
+ (6564, 'RO ', '300', 'Hobita'),
6597
+ (6565, 'RO ', '300', 'Hobita-Gradiste'),
6598
+ (6566, 'RO ', '300', 'Holdea'),
6599
+ (6567, 'RO ', '300', 'Homorod'),
6600
+ (6568, 'RO ', '300', 'Hondol'),
6601
+ (6569, 'RO ', '300', 'Hunedoara'),
6602
+ (6570, 'RO ', '300', 'Ilia'),
6603
+ (6571, 'RO ', '300', 'Iscroni'),
6604
+ (6572, 'RO ', '300', 'Izvoarele'),
6605
+ (6573, 'RO ', '300', 'Jeledinti'),
6606
+ (6574, 'RO ', '300', 'Jiet'),
6607
+ (6575, 'RO ', '300', 'Jiu-Paroseni'),
6608
+ (6576, 'RO ', '300', 'Josani'),
6609
+ (6577, 'RO ', '300', 'Lapugiu de jos'),
6610
+ (6578, 'RO ', '300', 'Lapugiu de Sus'),
6611
+ (6579, 'RO ', '300', 'Lapusnic'),
6612
+ (6580, 'RO ', '300', 'Lasau'),
6613
+ (6581, 'RO ', '300', 'Leaut'),
6614
+ (6582, 'RO ', '300', 'Lelese'),
6615
+ (6583, 'RO ', '300', 'Lesnic'),
6616
+ (6584, 'RO ', '300', 'Livada'),
6617
+ (6585, 'RO ', '300', 'Livadia'),
6618
+ (6586, 'RO ', '300', 'Livezi'),
6619
+ (6587, 'RO ', '300', 'Ludestii de Jos'),
6620
+ (6588, 'RO ', '300', 'Ludestii de Sus'),
6621
+ (6589, 'RO ', '300', 'Lunca (Baia de Cris)'),
6622
+ (6590, 'RO ', '300', 'Lunca (Baita)'),
6623
+ (6591, 'RO ', '300', 'Lunca Cernii de Jos '),
6624
+ (6592, 'RO ', '300', 'Lunca Cernii de Sus'),
6625
+ (6593, 'RO ', '300', 'Luncani'),
6626
+ (6594, 'RO ', '300', 'Luncoiu de Jos'),
6627
+ (6595, 'RO ', '300', 'Luncoiu de Sus'),
6628
+ (6596, 'RO ', '300', 'Luncsoara'),
6629
+ (6597, 'RO ', '300', 'Lupeni'),
6630
+ (6598, 'RO ', '300', 'Maceu'),
6631
+ (6599, 'RO ', '300', 'Mada'),
6632
+ (6600, 'RO ', '300', 'Magura'),
6633
+ (6601, 'RO ', '300', 'Magura-Toplita'),
6634
+ (6602, 'RO ', '300', 'Magureni'),
6635
+ (6603, 'RO ', '300', 'Malaiesti'),
6636
+ (6604, 'RO ', '300', 'Manerau'),
6637
+ (6605, 'RO ', '300', 'Martinesti'),
6638
+ (6606, 'RO ', '300', 'Meria'),
6639
+ (6607, 'RO ', '300', 'Merisor (Banita)'),
6640
+ (6608, 'RO ', '300', 'Merisor (Bucuresci)'),
6641
+ (6609, 'RO ', '300', 'Merisoru de Munte'),
6642
+ (6610, 'RO ', '300', 'Mermezeu-Valeni'),
6643
+ (6611, 'RO ', '300', 'Mesteacan (Brad)'),
6644
+ (6612, 'RO ', '300', 'Mesteacan (Rachitova)'),
6645
+ (6613, 'RO ', '300', 'Micanesti'),
6646
+ (6614, 'RO ', '300', 'Mihaiesti'),
6647
+ (6615, 'RO ', '300', 'Mihaileni'),
6648
+ (6616, 'RO ', '300', 'Mintia'),
6649
+ (6617, 'RO ', '300', 'Mosoru'),
6650
+ (6618, 'RO ', '300', 'Muncelu Mare'),
6651
+ (6619, 'RO ', '300', 'Muncelu Mic'),
6652
+ (6620, 'RO ', '300', 'Nadastia de Jos'),
6653
+ (6621, 'RO ', '300', 'Nadastia de Sus'),
6654
+ (6622, 'RO ', '300', 'Nalatvad'),
6655
+ (6623, 'RO ', '300', 'Nandru'),
6656
+ (6624, 'RO ', '300', 'Negoiu'),
6657
+ (6625, 'RO ', '300', 'Nojag'),
6658
+ (6626, 'RO ', '300', 'Nucsoara'),
6659
+ (6627, 'RO ', '300', 'Obarsa'),
6660
+ (6628, 'RO ', '300', 'Ocisor'),
6661
+ (6629, 'RO ', '300', 'Ociu'),
6662
+ (6630, 'RO ', '300', 'Ocolisu Mare'),
6663
+ (6631, 'RO ', '300', 'Ocolisu Mic'),
6664
+ (6632, 'RO ', '300', 'Ohaba'),
6665
+ (6633, 'RO ', '300', 'Ohaba de sub Piatra'),
6666
+ (6634, 'RO ', '300', 'Ohaba Streiului'),
6667
+ (6635, 'RO ', '300', 'Ohaba-Ponor'),
6668
+ (6636, 'RO ', '300', 'Ohaba-Sibisel'),
6669
+ (6637, 'RO ', '300', 'Oprisesti'),
6670
+ (6638, 'RO ', '300', 'Orastie'),
6671
+ (6639, 'RO ', '300', 'Orastioara de Jos'),
6672
+ (6640, 'RO ', '300', 'Orastioara de Sus'),
6673
+ (6641, 'RO ', '300', 'Ormindea '),
6674
+ (6642, 'RO ', '300', 'Ostrov'),
6675
+ (6643, 'RO ', '300', 'Ostrovel'),
6676
+ (6644, 'RO ', '300', 'Ostrovu Mic'),
6677
+ (6645, 'RO ', '300', 'Paclisa'),
6678
+ (6646, 'RO ', '300', 'Panc'),
6679
+ (6647, 'RO ', '300', 'Panc-Saliste'),
6680
+ (6648, 'RO ', '300', 'Paros'),
6681
+ (6649, 'RO ', '300', 'Paucinesti'),
6682
+ (6650, 'RO ', '300', 'Paulesti'),
6683
+ (6651, 'RO ', '300', 'Paulis'),
6684
+ (6652, 'RO ', '300', 'Pesteana'),
6685
+ (6653, 'RO ', '300', 'Pestenita'),
6686
+ (6654, 'RO ', '300', 'Pestera (Baita)'),
6687
+ (6655, 'RO ', '300', 'Pestera (Petrosani)'),
6688
+ (6656, 'RO ', '300', 'Pestera (Salasu de Sus)'),
6689
+ (6657, 'RO ', '300', 'Pestisu Mare'),
6690
+ (6658, 'RO ', '300', 'Pestisu Mic'),
6691
+ (6659, 'RO ', '300', 'Petreni'),
6692
+ (6660, 'RO ', '300', 'Petresti'),
6693
+ (6661, 'RO ', '300', 'Petrila'),
6694
+ (6662, 'RO ', '300', 'Petros'),
6695
+ (6663, 'RO ', '300', 'Petrosani'),
6696
+ (6664, 'RO ', '300', 'Piatra'),
6697
+ (6665, 'RO ', '300', 'Pischinti'),
6698
+ (6666, 'RO ', '300', 'Plai'),
6699
+ (6667, 'RO ', '300', 'Plop'),
6700
+ (6668, 'RO ', '300', 'Plopi'),
6701
+ (6669, 'RO ', '300', 'Podele'),
6702
+ (6670, 'RO ', '300', 'Poganesti'),
6703
+ (6671, 'RO ', '300', 'Poiana'),
6704
+ (6672, 'RO ', '300', 'Poiana Rachitelii'),
6705
+ (6673, 'RO ', '300', 'Poieni (Beriu)'),
6706
+ (6674, 'RO ', '300', 'Poieni (Densus)'),
6707
+ (6675, 'RO ', '300', 'Poienita'),
6708
+ (6676, 'RO ', '300', 'Poienita Tomii'),
6709
+ (6677, 'RO ', '300', 'Poienita Voinii'),
6710
+ (6678, 'RO ', '300', 'Pojoga'),
6711
+ (6679, 'RO ', '300', 'Ponor'),
6712
+ (6680, 'RO ', '300', 'Popesti'),
6713
+ (6681, 'RO ', '300', 'Potingani'),
6714
+ (6682, 'RO ', '300', 'Pravaleni'),
6715
+ (6683, 'RO ', '300', 'Pricaz'),
6716
+ (6684, 'RO ', '300', 'Prihodiste (Bosorod)'),
6717
+ (6685, 'RO ', '300', 'Prihodiste (Vata de Jos)'),
6718
+ (6686, 'RO ', '300', 'Pui'),
6719
+ (6687, 'RO ', '300', 'Racastia'),
6720
+ (6688, 'RO ', '300', 'Rachitaua'),
6721
+ (6689, 'RO ', '300', 'Rachitova'),
6722
+ (6690, 'RO ', '300', 'Radulesti'),
6723
+ (6691, 'RO ', '300', 'Rapas'),
6724
+ (6692, 'RO ', '300', 'Rapoltel'),
6725
+ (6693, 'RO ', '300', 'Rapoltu Mare'),
6726
+ (6694, 'RO ', '300', 'Rascoala'),
6727
+ (6695, 'RO ', '300', 'Rau Alb'),
6728
+ (6696, 'RO ', '300', 'Rau Barbat'),
6729
+ (6697, 'RO ', '300', 'Rau de Mori '),
6730
+ (6698, 'RO ', '300', 'Rau Mic'),
6731
+ (6699, 'RO ', '300', 'Reea'),
6732
+ (6700, 'RO ', '300', 'Renghet'),
6733
+ (6701, 'RO ', '300', 'Ret'),
6734
+ (6702, 'RO ', '300', 'Ribicioara'),
6735
+ (6703, 'RO ', '300', 'Ribita'),
6736
+ (6704, 'RO ', '300', 'Risca'),
6737
+ (6705, 'RO ', '300', 'Risculita'),
6738
+ (6706, 'RO ', '300', 'Romos'),
6739
+ (6707, 'RO ', '300', 'Romosel'),
6740
+ (6708, 'RO ', '300', 'Roscani'),
6741
+ (6709, 'RO ', '300', 'Rosia'),
6742
+ (6710, 'RO ', '300', 'Rovina (Branisca)'),
6743
+ (6711, 'RO ', '300', 'Rovina (Bucuresci)'),
6744
+ (6712, 'RO ', '300', 'Ruda'),
6745
+ (6713, 'RO ', '300', 'Ruda-Brad'),
6746
+ (6714, 'RO ', '300', 'Runcsor'),
6747
+ (6715, 'RO ', '300', 'Runcu Mare'),
6748
+ (6716, 'RO ', '300', 'Runcu Mic'),
6749
+ (6717, 'RO ', '300', 'Rusesti'),
6750
+ (6718, 'RO ', '300', 'Rusi'),
6751
+ (6719, 'RO ', '300', 'Rusor'),
6752
+ (6720, 'RO ', '300', 'Sacamas'),
6753
+ (6721, 'RO ', '300', 'Sacaramb'),
6754
+ (6722, 'RO ', '300', 'Sacel'),
6755
+ (6723, 'RO ', '300', 'Salasu de Jos'),
6756
+ (6724, 'RO ', '300', 'Salasu de Sus'),
6757
+ (6725, 'RO ', '300', 'Salatruc'),
6758
+ (6726, 'RO ', '300', 'Salciva'),
6759
+ (6727, 'RO ', '300', 'Saliste'),
6760
+ (6728, 'RO ', '300', 'Salistioara'),
6761
+ (6729, 'RO ', '300', 'Sancrai'),
6762
+ (6730, 'RO ', '300', 'Sanpetru'),
6763
+ (6731, 'RO ', '300', 'Santamaria de Piatra'),
6764
+ (6732, 'RO ', '300', 'Santamaria-Orlea'),
6765
+ (6733, 'RO ', '300', 'Santandrei'),
6766
+ (6734, 'RO ', '300', 'Santuhalm'),
6767
+ (6735, 'RO ', '300', 'Sarbi'),
6768
+ (6736, 'RO ', '300', 'Sarmizegetusa'),
6769
+ (6737, 'RO ', '300', 'Saulesti'),
6770
+ (6738, 'RO ', '300', 'Sereca'),
6771
+ (6739, 'RO ', '300', 'Serel'),
6772
+ (6740, 'RO ', '300', 'Sesuri'),
6773
+ (6741, 'RO ', '300', 'Sibisel (Beriu)'),
6774
+ (6742, 'RO ', '300', 'Sibisel (Rau de Mori)'),
6775
+ (6743, 'RO ', '300', 'Silvasu de Jos'),
6776
+ (6744, 'RO ', '300', 'Silvasu de Sus'),
6777
+ (6745, 'RO ', '300', 'Simeria'),
6778
+ (6746, 'RO ', '300', 'Simeria Veche'),
6779
+ (6747, 'RO ', '300', 'Slatinioara'),
6780
+ (6748, 'RO ', '300', 'Socet'),
6781
+ (6749, 'RO ', '300', 'Sohodol'),
6782
+ (6750, 'RO ', '300', 'Soimus'),
6783
+ (6751, 'RO ', '300', 'Spini'),
6784
+ (6752, 'RO ', '300', 'Stancesti'),
6785
+ (6753, 'RO ', '300', 'Stancesti-Ohaba'),
6786
+ (6754, 'RO ', '300', 'Stanculesti'),
6787
+ (6755, 'RO ', '300', 'Stanija'),
6788
+ (6756, 'RO ', '300', 'Stauini'),
6789
+ (6757, 'RO ', '300', 'Stei'),
6790
+ (6758, 'RO ', '300', 'Steia'),
6791
+ (6759, 'RO ', '300', 'Stejarel'),
6792
+ (6760, 'RO ', '300', 'Stoieneasa'),
6793
+ (6761, 'RO ', '300', 'Strei'),
6794
+ (6762, 'RO ', '300', 'Strei-Sacel'),
6795
+ (6763, 'RO ', '300', 'Streisangeorgiu'),
6796
+ (6764, 'RO ', '300', 'Stretea'),
6797
+ (6765, 'RO ', '300', 'Subcetate'),
6798
+ (6766, 'RO ', '300', 'Sulighete'),
6799
+ (6767, 'RO ', '300', 'Suseni'),
6800
+ (6768, 'RO ', '300', 'Tamasasa'),
6801
+ (6769, 'RO ', '300', 'Tamasesti'),
6802
+ (6770, 'RO ', '300', 'Tampa'),
6803
+ (6771, 'RO ', '300', 'Taratel'),
6804
+ (6772, 'RO ', '300', 'Tarnava'),
6805
+ (6773, 'RO ', '300', 'Tarnava de Cris'),
6806
+ (6774, 'RO ', '300', 'Tarnavita'),
6807
+ (6775, 'RO ', '300', 'Tarnita'),
6808
+ (6776, 'RO ', '300', 'Tarsa'),
6809
+ (6777, 'RO ', '300', 'Tatarasti'),
6810
+ (6778, 'RO ', '300', 'Tatarastii de Cris'),
6811
+ (6779, 'RO ', '300', 'Tebea'),
6812
+ (6780, 'RO ', '300', 'Techereu'),
6813
+ (6781, 'RO ', '300', 'Teiu'),
6814
+ (6782, 'RO ', '300', 'Teliucu Inferior'),
6815
+ (6783, 'RO ', '300', 'Teliucu Superior'),
6816
+ (6784, 'RO ', '300', 'Ticera'),
6817
+ (6785, 'RO ', '300', 'Tirici'),
6818
+ (6786, 'RO ', '300', 'Tisa'),
6819
+ (6787, 'RO ', '300', 'Tiulesti'),
6820
+ (6788, 'RO ', '300', 'Tomesti'),
6821
+ (6789, 'RO ', '300', 'Tomnatec'),
6822
+ (6790, 'RO ', '300', 'Toplita'),
6823
+ (6791, 'RO ', '300', 'Toplita Muresului'),
6824
+ (6792, 'RO ', '300', 'Totesti'),
6825
+ (6793, 'RO ', '300', 'Totia'),
6826
+ (6794, 'RO ', '300', 'Trestia'),
6827
+ (6795, 'RO ', '300', 'Turdas'),
6828
+ (6796, 'RO ', '300', 'Turmas'),
6829
+ (6797, 'RO ', '300', 'Tustea'),
6830
+ (6798, 'RO ', '300', 'Uibaresti'),
6831
+ (6799, 'RO ', '300', 'Ulies'),
6832
+ (6800, 'RO ', '300', 'Ulm'),
6833
+ (6801, 'RO ', '300', 'Unciuc'),
6834
+ (6802, 'RO ', '300', 'Uric'),
6835
+ (6803, 'RO ', '300', 'Uricani'),
6836
+ (6804, 'RO ', '300', 'Uroi'),
6837
+ (6805, 'RO ', '300', 'Ursici'),
6838
+ (6806, 'RO ', '300', 'Vadu'),
6839
+ (6807, 'RO ', '300', 'Vadu Dobrii'),
6840
+ (6808, 'RO ', '300', 'Vaidei'),
6841
+ (6809, 'RO ', '300', 'Valari'),
6842
+ (6810, 'RO ', '300', 'Valcele'),
6843
+ (6811, 'RO ', '300', 'Valcelele Bune'),
6844
+ (6812, 'RO ', '300', 'Valceluta'),
6845
+ (6813, 'RO ', '300', 'Valea Arsului'),
6846
+ (6814, 'RO ', '300', 'Valea Babii'),
6847
+ (6815, 'RO ', '300', 'Valea Bradului'),
6848
+ (6816, 'RO ', '300', 'Valea Daljii'),
6849
+ (6817, 'RO ', '300', 'Valea de Brazi'),
6850
+ (6818, 'RO ', '300', 'Valea Lunga'),
6851
+ (6819, 'RO ', '300', 'Valea Lupului'),
6852
+ (6820, 'RO ', '300', 'Valea Mare de Cris'),
6853
+ (6821, 'RO ', '300', 'Valea Nandrului'),
6854
+ (6822, 'RO ', '300', 'Valea Poienii'),
6855
+ (6823, 'RO ', '300', 'Valea Sangeorgiului'),
6856
+ (6824, 'RO ', '300', 'Valeni (Baia de Cris)'),
6857
+ (6825, 'RO ', '300', 'Valeni (Geoagiu)'),
6858
+ (6826, 'RO ', '300', 'Valioara'),
6859
+ (6827, 'RO ', '300', 'Valisoara'),
6860
+ (6828, 'RO ', '300', 'Valisoara (Balsa)'),
6861
+ (6829, 'RO ', '300', 'Varmaga'),
6862
+ (6830, 'RO ', '300', 'Vata de Jos'),
6863
+ (6831, 'RO ', '300', 'Vata de Sus'),
6864
+ (6832, 'RO ', '300', 'Vetel'),
6865
+ (6833, 'RO ', '300', 'Vica'),
6866
+ (6834, 'RO ', '300', 'Visca'),
6867
+ (6835, 'RO ', '300', 'Voia'),
6868
+ (6836, 'RO ', '300', 'Vorta'),
6869
+ (6837, 'RO ', '300', 'Vulcan'),
6870
+ (6838, 'RO ', '300', 'Zam'),
6871
+ (6839, 'RO ', '300', 'Zavoi'),
6872
+ (6840, 'RO ', '300', 'Zdrapti'),
6873
+ (6841, 'RO ', '300', 'Zeicani'),
6874
+ (6842, 'RO ', '301', 'Adancata'),
6875
+ (6843, 'RO ', '301', 'Albesti'),
6876
+ (6844, 'RO ', '301', 'Alexeni'),
6877
+ (6845, 'RO ', '301', 'Amara'),
6878
+ (6846, 'RO ', '301', 'Amara Noua'),
6879
+ (6847, 'RO ', '301', 'Andrasesti'),
6880
+ (6848, 'RO ', '301', 'Armasesti'),
6881
+ (6849, 'RO ', '301', 'Axintele'),
6882
+ (6850, 'RO ', '301', 'Balaciu'),
6883
+ (6851, 'RO ', '301', 'Baraganu'),
6884
+ (6852, 'RO ', '301', 'Barbatescu'),
6885
+ (6853, 'RO ', '301', 'Barbulesti'),
6886
+ (6854, 'RO ', '301', 'Barcanesti'),
6887
+ (6855, 'RO ', '301', 'Bitina-Pamanteni'),
6888
+ (6856, 'RO ', '301', 'Bitina-Ungureni'),
6889
+ (6857, 'RO ', '301', 'Bora'),
6890
+ (6858, 'RO ', '301', 'Boranesti'),
6891
+ (6859, 'RO ', '301', 'Bordusani'),
6892
+ (6860, 'RO ', '301', 'Borduselu'),
6893
+ (6861, 'RO ', '301', 'Boteni'),
6894
+ (6862, 'RO ', '301', 'Brazii'),
6895
+ (6863, 'RO ', '301', 'Brosteni'),
6896
+ (6864, 'RO ', '301', 'Bucsa'),
6897
+ (6865, 'RO ', '301', 'Bucu'),
6898
+ (6866, 'RO ', '301', 'Buesti'),
6899
+ (6867, 'RO ', '301', 'Butoiu'),
6900
+ (6868, 'RO ', '301', 'Catrunesti'),
6901
+ (6869, 'RO ', '301', 'Cazanesti'),
6902
+ (6870, 'RO ', '301', 'Cegani'),
6903
+ (6871, 'RO ', '301', 'Chiroiu-Pamanteni'),
6904
+ (6872, 'RO ', '301', 'Chiroiu-Satu Nou'),
6905
+ (6873, 'RO ', '301', 'Chiroiu-Ungureni'),
6906
+ (6874, 'RO ', '301', 'Ciocarlia'),
6907
+ (6875, 'RO ', '301', 'Ciochina'),
6908
+ (6876, 'RO ', '301', 'Ciulnita'),
6909
+ (6877, 'RO ', '301', 'Cocora'),
6910
+ (6878, 'RO ', '301', 'Colelia'),
6911
+ (6879, 'RO ', '301', 'Condeesti'),
6912
+ (6880, 'RO ', '301', 'Copuzu'),
6913
+ (6881, 'RO ', '301', 'Cosambesti'),
6914
+ (6882, 'RO ', '301', 'Cosereni'),
6915
+ (6883, 'RO ', '301', 'Cotorca'),
6916
+ (6884, 'RO ', '301', 'Crasanii de Jos'),
6917
+ (6885, 'RO ', '301', 'Crasanii de Sus'),
6918
+ (6886, 'RO ', '301', 'Crunti'),
6919
+ (6887, 'RO ', '301', 'Dragoesti'),
6920
+ (6888, 'RO ', '301', 'Dridu'),
6921
+ (6889, 'RO ', '301', 'Dridu-Snagov'),
6922
+ (6890, 'RO ', '301', 'Dumitresti'),
6923
+ (6891, 'RO ', '301', 'Facaeni'),
6924
+ (6892, 'RO ', '301', 'Fetesti'),
6925
+ (6893, 'RO ', '301', 'Fetesti-Gara'),
6926
+ (6894, 'RO ', '301', 'Fierbintii de Jos'),
6927
+ (6895, 'RO ', '301', 'Fierbintii de Sus'),
6928
+ (6896, 'RO ', '301', 'Fierbinti-Targ'),
6929
+ (6897, 'RO ', '301', 'Fratilesti'),
6930
+ (6898, 'RO ', '301', 'Fundata'),
6931
+ (6899, 'RO ', '301', 'Garbovi'),
6932
+ (6900, 'RO ', '301', 'Gheorghe Doja'),
6933
+ (6901, 'RO ', '301', 'Gheorghe Lazar'),
6934
+ (6902, 'RO ', '301', 'Gimbasani'),
6935
+ (6903, 'RO ', '301', 'Giurgeni'),
6936
+ (6904, 'RO ', '301', 'Grecii de Jos'),
6937
+ (6905, 'RO ', '301', 'Grindasi'),
6938
+ (6906, 'RO ', '301', 'Grindu'),
6939
+ (6907, 'RO ', '301', 'Grivita'),
6940
+ (6908, 'RO ', '301', 'Gura Ialomitei'),
6941
+ (6909, 'RO ', '301', 'Gura Vaii'),
6942
+ (6910, 'RO ', '301', 'Hagiesti'),
6943
+ (6911, 'RO ', '301', 'Horia'),
6944
+ (6912, 'RO ', '301', 'Iazu'),
6945
+ (6913, 'RO ', '301', 'Ion Ghica'),
6946
+ (6914, 'RO ', '301', 'Ion Roata'),
6947
+ (6915, 'RO ', '301', 'Ivanesti'),
6948
+ (6916, 'RO ', '301', 'Jilavele'),
6949
+ (6917, 'RO ', '301', 'Lacusteni'),
6950
+ (6918, 'RO ', '301', 'Lilieci'),
6951
+ (6919, 'RO ', '301', 'Livedea'),
6952
+ (6920, 'RO ', '301', 'Luciu'),
6953
+ (6921, 'RO ', '301', 'Maia'),
6954
+ (6922, 'RO ', '301', 'Maltezi'),
6955
+ (6923, 'RO ', '301', 'Malu'),
6956
+ (6924, 'RO ', '301', 'Malu Rosu'),
6957
+ (6925, 'RO ', '301', 'Manasia'),
6958
+ (6926, 'RO ', '301', 'Marculesti'),
6959
+ (6927, 'RO ', '301', 'Marsilieni'),
6960
+ (6928, 'RO ', '301', 'Mihail Kogalniceanu'),
6961
+ (6929, 'RO ', '301', 'Milosesti'),
6962
+ (6930, 'RO ', '301', 'Misleanu'),
6963
+ (6931, 'RO ', '301', 'Moldoveni'),
6964
+ (6932, 'RO ', '301', 'Movila'),
6965
+ (6933, 'RO ', '301', 'Movileanca'),
6966
+ (6934, 'RO ', '301', 'Movilita'),
6967
+ (6935, 'RO ', '301', 'Munteni-Buzau'),
6968
+ (6936, 'RO ', '301', 'Murgeanca'),
6969
+ (6937, 'RO ', '301', 'Nenisori'),
6970
+ (6938, 'RO ', '301', 'Nicolesti'),
6971
+ (6939, 'RO ', '301', 'Ograda'),
6972
+ (6940, 'RO ', '301', 'Orboesti'),
6973
+ (6941, 'RO ', '301', 'Orezu'),
6974
+ (6942, 'RO ', '301', 'Paltinisu'),
6975
+ (6943, 'RO ', '301', 'Patru Frati'),
6976
+ (6944, 'RO ', '301', 'Perieti'),
6977
+ (6945, 'RO ', '301', 'Piersica'),
6978
+ (6946, 'RO ', '301', 'Platonesti'),
6979
+ (6947, 'RO ', '301', 'Poiana'),
6980
+ (6948, 'RO ', '301', 'Progresu'),
6981
+ (6949, 'RO ', '301', 'Rasi'),
6982
+ (6950, 'RO ', '301', 'Rasimnicea'),
6983
+ (6951, 'RO ', '301', 'Reviga'),
6984
+ (6952, 'RO ', '301', 'Rosiori'),
6985
+ (6953, 'RO ', '301', 'Rovine'),
6986
+ (6954, 'RO ', '301', 'Salcioara'),
6987
+ (6955, 'RO ', '301', 'Sarateni'),
6988
+ (6956, 'RO ', '301', 'Saveni'),
6989
+ (6957, 'RO ', '301', 'Scanteia'),
6990
+ (6958, 'RO ', '301', 'Sfantu Gheorghe'),
6991
+ (6959, 'RO ', '301', 'Sinesti'),
6992
+ (6960, 'RO ', '301', 'Sintesti'),
6993
+ (6961, 'RO ', '301', 'Slatioarele'),
6994
+ (6962, 'RO ', '301', 'Slobozia'),
6995
+ (6963, 'RO ', '301', 'Slobozia Noua'),
6996
+ (6964, 'RO ', '301', 'Smirna'),
6997
+ (6965, 'RO ', '301', 'Stejaru'),
6998
+ (6966, 'RO ', '301', 'Stelnica'),
6999
+ (6967, 'RO ', '301', 'Suditi'),
7000
+ (6968, 'RO ', '301', 'Tandarei'),
7001
+ (6969, 'RO ', '301', 'Tovarasia'),
7002
+ (6970, 'RO ', '301', 'Traian'),
7003
+ (6971, 'RO ', '301', 'Urziceni'),
7004
+ (6972, 'RO ', '301', 'Valea Bisericii'),
7005
+ (6973, 'RO ', '301', 'Valea Ciorii'),
7006
+ (6974, 'RO ', '301', 'Valea Macrisului'),
7007
+ (6975, 'RO ', '301', 'Vladeni'),
7008
+ (6976, 'RO ', '302', 'Albesti'),
7009
+ (6977, 'RO ', '302', 'Alexandru I. Cuza'),
7010
+ (6978, 'RO ', '302', 'Alexeni'),
7011
+ (6979, 'RO ', '302', 'Alexesti'),
7012
+ (6980, 'RO ', '302', 'Andrieseni'),
7013
+ (6981, 'RO ', '302', 'Arama'),
7014
+ (6982, 'RO ', '302', 'Aroneanu'),
7015
+ (6983, 'RO ', '302', 'Avantu'),
7016
+ (6984, 'RO ', '302', 'Badeni'),
7017
+ (6985, 'RO ', '302', 'Bahluiu'),
7018
+ (6986, 'RO ', '302', 'Baiceni (Cucuteni)'),
7019
+ (6987, 'RO ', '302', 'Baiceni (Todiresti)'),
7020
+ (6988, 'RO ', '302', 'Balciu'),
7021
+ (6989, 'RO ', '302', 'Bals'),
7022
+ (6990, 'RO ', '302', 'Baltati'),
7023
+ (6991, 'RO ', '302', 'Balteni'),
7024
+ (6992, 'RO ', '302', 'Balusesti'),
7025
+ (6993, 'RO ', '302', 'Banu'),
7026
+ (6994, 'RO ', '302', 'Barbatesti'),
7027
+ (6995, 'RO ', '302', 'Barlesti'),
7028
+ (6996, 'RO ', '302', 'Barnova'),
7029
+ (6997, 'RO ', '302', 'Belcesti'),
7030
+ (6998, 'RO ', '302', 'Bivolari'),
7031
+ (6999, 'RO ', '302', 'Blaga'),
7032
+ (7000, 'RO ', '302', 'Bocnita'),
7033
+ (7001, 'RO ', '302', 'Bodesti'),
7034
+ (7002, 'RO ', '302', 'Bogdanesti'),
7035
+ (7003, 'RO ', '302', 'Bogonos'),
7036
+ (7004, 'RO ', '302', 'Bohotin'),
7037
+ (7005, 'RO ', '302', 'Boldesti'),
7038
+ (7006, 'RO ', '302', 'Borosesti'),
7039
+ (7007, 'RO ', '302', 'Borosoaia'),
7040
+ (7008, 'RO ', '302', 'Borsa'),
7041
+ (7009, 'RO ', '302', 'Bosia'),
7042
+ (7010, 'RO ', '302', 'Bosteni'),
7043
+ (7011, 'RO ', '302', 'Boureni (Bals)'),
7044
+ (7012, 'RO ', '302', 'Boureni (Motca)'),
7045
+ (7013, 'RO ', '302', 'Bradicesti'),
7046
+ (7014, 'RO ', '302', 'Braesti'),
7047
+ (7015, 'RO ', '302', 'Bran'),
7048
+ (7016, 'RO ', '302', 'Bratesti'),
7049
+ (7017, 'RO ', '302', 'Bratuleni'),
7050
+ (7018, 'RO ', '302', 'Bratulesti'),
7051
+ (7019, 'RO ', '302', 'Breazu'),
7052
+ (7020, 'RO ', '302', 'Brosteni'),
7053
+ (7021, 'RO ', '302', 'Buda (Braesti)'),
7054
+ (7022, 'RO ', '302', 'Buda (Lespezi)'),
7055
+ (7023, 'RO ', '302', 'Budai'),
7056
+ (7024, 'RO ', '302', 'Budesti'),
7057
+ (7025, 'RO ', '302', 'Buhaeni'),
7058
+ (7026, 'RO ', '302', 'Buhalnita'),
7059
+ (7027, 'RO ', '302', 'Bulbucani'),
7060
+ (7028, 'RO ', '302', 'Bursuc-Deal'),
7061
+ (7029, 'RO ', '302', 'Bursuc-Vale'),
7062
+ (7030, 'RO ', '302', 'Butea'),
7063
+ (7031, 'RO ', '302', 'Buznea'),
7064
+ (7032, 'RO ', '302', 'Carbunari'),
7065
+ (7033, 'RO ', '302', 'Carjoaia'),
7066
+ (7034, 'RO ', '302', 'Carlig'),
7067
+ (7035, 'RO ', '302', 'Carniceni'),
7068
+ (7036, 'RO ', '302', 'Cauesti'),
7069
+ (7037, 'RO ', '302', 'Ceplenita'),
7070
+ (7038, 'RO ', '302', 'Cercu'),
7071
+ (7039, 'RO ', '302', 'Chicerea'),
7072
+ (7040, 'RO ', '302', 'Chilisoaia'),
7073
+ (7041, 'RO ', '302', 'Chiperesti'),
7074
+ (7042, 'RO ', '302', 'Chiscareni'),
7075
+ (7043, 'RO ', '302', 'Cilibiu'),
7076
+ (7044, 'RO ', '302', 'Cioca-Boca'),
7077
+ (7045, 'RO ', '302', 'Ciocarlesti'),
7078
+ (7046, 'RO ', '302', 'Ciohorani'),
7079
+ (7047, 'RO ', '302', 'Ciortesti'),
7080
+ (7048, 'RO ', '302', 'Ciurbesti'),
7081
+ (7049, 'RO ', '302', 'Ciurea'),
7082
+ (7050, 'RO ', '302', 'Coada Stancii'),
7083
+ (7051, 'RO ', '302', 'Coarnele Caprei '),
7084
+ (7052, 'RO ', '302', 'Coasta Magurii'),
7085
+ (7053, 'RO ', '302', 'Cogeasca'),
7086
+ (7054, 'RO ', '302', 'Coltu Cornii'),
7087
+ (7055, 'RO ', '302', 'Comarna'),
7088
+ (7056, 'RO ', '302', 'Contesti'),
7089
+ (7057, 'RO ', '302', 'Corcodel'),
7090
+ (7058, 'RO ', '302', 'Cornesti'),
7091
+ (7059, 'RO ', '302', 'Coropceni'),
7092
+ (7060, 'RO ', '302', 'Cositeni'),
7093
+ (7061, 'RO ', '302', 'Costesti'),
7094
+ (7062, 'RO ', '302', 'Costuleni'),
7095
+ (7063, 'RO ', '302', 'Cotargaci'),
7096
+ (7064, 'RO ', '302', 'Cotnari'),
7097
+ (7065, 'RO ', '302', 'Cotu lui Ivan'),
7098
+ (7066, 'RO ', '302', 'Cotu Morii'),
7099
+ (7067, 'RO ', '302', 'Covasna'),
7100
+ (7068, 'RO ', '302', 'Cozia'),
7101
+ (7069, 'RO ', '302', 'Cozmesti'),
7102
+ (7070, 'RO ', '302', 'Cozmesti (Stolniceni-Prajescu)'),
7103
+ (7071, 'RO ', '302', 'Cristesti'),
7104
+ (7072, 'RO ', '302', 'Cristesti (Braesti)'),
7105
+ (7073, 'RO ', '302', 'Cristesti (Holboca)'),
7106
+ (7074, 'RO ', '302', 'Crivesti (Strunga)'),
7107
+ (7075, 'RO ', '302', 'Crivesti (Vanatori)'),
7108
+ (7076, 'RO ', '302', 'Crucea'),
7109
+ (7077, 'RO ', '302', 'Cucova'),
7110
+ (7078, 'RO ', '302', 'Cucuteni'),
7111
+ (7079, 'RO ', '302', 'Cucuteni (Letcani)'),
7112
+ (7080, 'RO ', '302', 'Curagau'),
7113
+ (7081, 'RO ', '302', 'Curaturi'),
7114
+ (7082, 'RO ', '302', 'Cuza Voda (Ipatele)'),
7115
+ (7083, 'RO ', '302', 'Cuza Voda (Popricani)'),
7116
+ (7084, 'RO ', '302', 'Dadesti'),
7117
+ (7085, 'RO ', '302', 'Dagata'),
7118
+ (7086, 'RO ', '302', 'Dancas'),
7119
+ (7087, 'RO ', '302', 'Dancu'),
7120
+ (7088, 'RO ', '302', 'Deleni'),
7121
+ (7089, 'RO ', '302', 'Deleni (Ciortesti)'),
7122
+ (7090, 'RO ', '302', 'Dobrovat'),
7123
+ (7091, 'RO ', '302', 'Dolhesti'),
7124
+ (7092, 'RO ', '302', 'Domnita'),
7125
+ (7093, 'RO ', '302', 'Dorobant'),
7126
+ (7094, 'RO ', '302', 'Doroscani'),
7127
+ (7095, 'RO ', '302', 'Draguseni'),
7128
+ (7096, 'RO ', '302', 'Dumbrava (Ciurea)'),
7129
+ (7097, 'RO ', '302', 'Dumbravita'),
7130
+ (7098, 'RO ', '302', 'Dumesti'),
7131
+ (7099, 'RO ', '302', 'Dumitrestii Galatii'),
7132
+ (7100, 'RO ', '302', 'Erbiceni'),
7133
+ (7101, 'RO ', '302', 'Fantanele'),
7134
+ (7102, 'RO ', '302', 'Farcaseni'),
7135
+ (7103, 'RO ', '302', 'Fedeleseni'),
7136
+ (7104, 'RO ', '302', 'Feredeni'),
7137
+ (7105, 'RO ', '302', 'Fetesti'),
7138
+ (7106, 'RO ', '302', 'Focuri'),
7139
+ (7107, 'RO ', '302', 'Forasti'),
7140
+ (7108, 'RO ', '302', 'Frasuleni'),
7141
+ (7109, 'RO ', '302', 'Frenciugi'),
7142
+ (7110, 'RO ', '302', 'Ganesti'),
7143
+ (7111, 'RO ', '302', 'Garbesti'),
7144
+ (7112, 'RO ', '302', 'Gastesti'),
7145
+ (7113, 'RO ', '302', 'Gaureni'),
7146
+ (7114, 'RO ', '302', 'Giurgesti'),
7147
+ (7115, 'RO ', '302', 'Glavanesti'),
7148
+ (7116, 'RO ', '302', 'Glodenii Gandului'),
7149
+ (7117, 'RO ', '302', 'Goesti'),
7150
+ (7118, 'RO ', '302', 'Golaiesti'),
7151
+ (7119, 'RO ', '302', 'Gorban'),
7152
+ (7120, 'RO ', '302', 'Goruni'),
7153
+ (7121, 'RO ', '302', 'Gradinari'),
7154
+ (7122, 'RO ', '302', 'Grajduri'),
7155
+ (7123, 'RO ', '302', 'Gropnita'),
7156
+ (7124, 'RO ', '302', 'Grozesti'),
7157
+ (7125, 'RO ', '302', 'Gura Badilitei'),
7158
+ (7126, 'RO ', '302', 'Gura Bohotin'),
7159
+ (7127, 'RO ', '302', 'Habasesti'),
7160
+ (7128, 'RO ', '302', 'Hadambu'),
7161
+ (7129, 'RO ', '302', 'Halaucesti'),
7162
+ (7130, 'RO ', '302', 'Halceni'),
7163
+ (7131, 'RO ', '302', 'Handresti'),
7164
+ (7132, 'RO ', '302', 'Harlau'),
7165
+ (7133, 'RO ', '302', 'Harmanesti'),
7166
+ (7134, 'RO ', '302', 'Harmanestii Noi'),
7167
+ (7135, 'RO ', '302', 'Harmanestii Vechi'),
7168
+ (7136, 'RO ', '302', 'Harpasesti'),
7169
+ (7137, 'RO ', '302', 'Hartoape'),
7170
+ (7138, 'RO ', '302', 'Heci'),
7171
+ (7139, 'RO ', '302', 'Helesteni'),
7172
+ (7140, 'RO ', '302', 'Hermeziu'),
7173
+ (7141, 'RO ', '302', 'Hilita'),
7174
+ (7142, 'RO ', '302', 'Hlincea'),
7175
+ (7143, 'RO ', '302', 'Hodora'),
7176
+ (7144, 'RO ', '302', 'Hoisesti'),
7177
+ (7145, 'RO ', '302', 'Holboca'),
7178
+ (7146, 'RO ', '302', 'Holm'),
7179
+ (7147, 'RO ', '302', 'Homita'),
7180
+ (7148, 'RO ', '302', 'Horlesti'),
7181
+ (7149, 'RO ', '302', 'Horlesti (Rediu)'),
7182
+ (7150, 'RO ', '302', 'Horodistea'),
7183
+ (7151, 'RO ', '302', 'Horpaz'),
7184
+ (7152, 'RO ', '302', 'Humosu'),
7185
+ (7153, 'RO ', '302', 'Iacobeni'),
7186
+ (7154, 'RO ', '302', 'Iasi'),
7187
+ (7155, 'RO ', '302', 'Iazu Nou'),
7188
+ (7156, 'RO ', '302', 'Icuseni'),
7189
+ (7157, 'RO ', '302', 'Iepureni (Movileni)'),
7190
+ (7158, 'RO ', '302', 'Ion Neculce'),
7191
+ (7159, 'RO ', '302', 'Iorcani'),
7192
+ (7160, 'RO ', '302', 'Ipatele'),
7193
+ (7161, 'RO ', '302', 'Isaiia'),
7194
+ (7162, 'RO ', '302', 'Iugani'),
7195
+ (7163, 'RO ', '302', 'Izvoarele'),
7196
+ (7164, 'RO ', '302', 'Jigoreni'),
7197
+ (7165, 'RO ', '302', 'Kogalniceni'),
7198
+ (7166, 'RO ', '302', 'Larga-Jijia'),
7199
+ (7167, 'RO ', '302', 'Lespezi'),
7200
+ (7168, 'RO ', '302', 'Letcani'),
7201
+ (7169, 'RO ', '302', 'Liteni'),
7202
+ (7170, 'RO ', '302', 'Luceni'),
7203
+ (7171, 'RO ', '302', 'Lunca (Grajduri)'),
7204
+ (7172, 'RO ', '302', 'Lunca (Pascani)'),
7205
+ (7173, 'RO ', '302', 'Lunca Cetatuii'),
7206
+ (7174, 'RO ', '302', 'Lunca Rates'),
7207
+ (7175, 'RO ', '302', 'Luncasi'),
7208
+ (7176, 'RO ', '302', 'Lungani'),
7209
+ (7177, 'RO ', '302', 'Lungani (Voinesti)'),
7210
+ (7178, 'RO ', '302', 'Luparia'),
7211
+ (7179, 'RO ', '302', 'Macaresti'),
7212
+ (7180, 'RO ', '302', 'Madarjac'),
7213
+ (7181, 'RO ', '302', 'Madarjesti'),
7214
+ (7182, 'RO ', '302', 'Manastirea'),
7215
+ (7183, 'RO ', '302', 'Manjesti'),
7216
+ (7184, 'RO ', '302', 'Manzatesti'),
7217
+ (7185, 'RO ', '302', 'Maxut'),
7218
+ (7186, 'RO ', '302', 'Medeleni'),
7219
+ (7187, 'RO ', '302', 'Miclauseni'),
7220
+ (7188, 'RO ', '302', 'Mihail Kogalniceanu'),
7221
+ (7189, 'RO ', '302', 'Mircesti'),
7222
+ (7190, 'RO ', '302', 'Mironeasa'),
7223
+ (7191, 'RO ', '302', 'Miroslava'),
7224
+ (7192, 'RO ', '302', 'Miroslovesti'),
7225
+ (7193, 'RO ', '302', 'Mitoc'),
7226
+ (7194, 'RO ', '302', 'Moara Ciornei'),
7227
+ (7195, 'RO ', '302', 'Mogosesti'),
7228
+ (7196, 'RO ', '302', 'Mogosesti-Siret'),
7229
+ (7197, 'RO ', '302', 'Moimesti'),
7230
+ (7198, 'RO ', '302', 'Moreni'),
7231
+ (7199, 'RO ', '302', 'Mosna'),
7232
+ (7200, 'RO ', '302', 'Motca'),
7233
+ (7201, 'RO ', '302', 'Movileni'),
7234
+ (7202, 'RO ', '302', 'Muncelu de Sus'),
7235
+ (7203, 'RO ', '302', 'Munteni'),
7236
+ (7204, 'RO ', '302', 'Oboroceni'),
7237
+ (7205, 'RO ', '302', 'Opriseni'),
7238
+ (7206, 'RO ', '302', 'Orzeni'),
7239
+ (7207, 'RO ', '302', 'Osoi (Comarna)'),
7240
+ (7208, 'RO ', '302', 'Osoi (Sinesti)'),
7241
+ (7209, 'RO ', '302', 'Oteleni'),
7242
+ (7210, 'RO ', '302', 'Padureni (Grajduri)'),
7243
+ (7211, 'RO ', '302', 'Padureni (Popesti)'),
7244
+ (7212, 'RO ', '302', 'Parcovaci'),
7245
+ (7213, 'RO ', '302', 'Pascani'),
7246
+ (7214, 'RO ', '302', 'Paun'),
7247
+ (7215, 'RO ', '302', 'Pausesti'),
7248
+ (7216, 'RO ', '302', 'Perieni'),
7249
+ (7217, 'RO ', '302', 'Petresti'),
7250
+ (7218, 'RO ', '302', 'Picioru Lupului'),
7251
+ (7219, 'RO ', '302', 'Pietraria'),
7252
+ (7220, 'RO ', '302', 'Pietris'),
7253
+ (7221, 'RO ', '302', 'Pietrosu'),
7254
+ (7222, 'RO ', '302', 'Piscu Rusului'),
7255
+ (7223, 'RO ', '302', 'Plugari'),
7256
+ (7224, 'RO ', '302', 'Pocreaca'),
7257
+ (7225, 'RO ', '302', 'Podisu'),
7258
+ (7226, 'RO ', '302', 'Podolenii de Sus'),
7259
+ (7227, 'RO ', '302', 'Podu Iloaiei'),
7260
+ (7228, 'RO ', '302', 'Podu Jijiei'),
7261
+ (7229, 'RO ', '302', 'Poiana (Deleni)'),
7262
+ (7230, 'RO ', '302', 'Poiana (Schitu Duca)'),
7263
+ (7231, 'RO ', '302', 'Poiana cu Cetate'),
7264
+ (7232, 'RO ', '302', 'Poiana de Sus'),
7265
+ (7233, 'RO ', '302', 'Poiana Manastirii'),
7266
+ (7234, 'RO ', '302', 'Poiana Marului'),
7267
+ (7235, 'RO ', '302', 'Poiana scheii'),
7268
+ (7236, 'RO ', '302', 'Poieni'),
7269
+ (7237, 'RO ', '302', 'Poienile'),
7270
+ (7238, 'RO ', '302', 'Popesti'),
7271
+ (7239, 'RO ', '302', 'Popricani'),
7272
+ (7240, 'RO ', '302', 'Potangeni'),
7273
+ (7241, 'RO ', '302', 'Prigoreni'),
7274
+ (7242, 'RO ', '302', 'Prisacani'),
7275
+ (7243, 'RO ', '302', 'Probota'),
7276
+ (7244, 'RO ', '302', 'Proselnici'),
7277
+ (7245, 'RO ', '302', 'Rachiteni'),
7278
+ (7246, 'RO ', '302', 'Radeni'),
7279
+ (7247, 'RO ', '302', 'Raducaneni'),
7280
+ (7248, 'RO ', '302', 'Rasboieni'),
7281
+ (7249, 'RO ', '302', 'Razboieni'),
7282
+ (7250, 'RO ', '302', 'Rediu'),
7283
+ (7251, 'RO ', '302', 'Rediu (Braesti)'),
7284
+ (7252, 'RO ', '302', 'Rediu (Ruginoasa)'),
7285
+ (7253, 'RO ', '302', 'Rediu (Scanteia)'),
7286
+ (7254, 'RO ', '302', 'Rediu Aldei'),
7287
+ (7255, 'RO ', '302', 'Rediu Mitropoliei'),
7288
+ (7256, 'RO ', '302', 'Romanesti'),
7289
+ (7257, 'RO ', '302', 'Roscani'),
7290
+ (7258, 'RO ', '302', 'Rosu'),
7291
+ (7259, 'RO ', '302', 'Rotaria'),
7292
+ (7260, 'RO ', '302', 'Ruginoasa'),
7293
+ (7261, 'RO ', '302', 'Runcu'),
7294
+ (7262, 'RO ', '302', 'Rusenii Noi'),
7295
+ (7263, 'RO ', '302', 'Rusenii Vechi'),
7296
+ (7264, 'RO ', '302', 'Salageni'),
7297
+ (7265, 'RO ', '302', 'Sangeri'),
7298
+ (7266, 'RO ', '302', 'Sarca'),
7299
+ (7267, 'RO ', '302', 'Satu Nou (Belcesti)'),
7300
+ (7268, 'RO ', '302', 'Satu Nou (scheia)'),
7301
+ (7269, 'RO ', '302', 'Satu Nou (Schitu Duca)'),
7302
+ (7270, 'RO ', '302', 'Satu Nou (Siretel)'),
7303
+ (7271, 'RO ', '302', 'Saveni'),
7304
+ (7272, 'RO ', '302', 'Scanteia'),
7305
+ (7273, 'RO ', '302', 'Scheia'),
7306
+ (7274, 'RO ', '302', 'Scheia (Al.I Cuza)'),
7307
+ (7275, 'RO ', '302', 'Schitu Duca'),
7308
+ (7276, 'RO ', '302', 'Schitu Hadambului'),
7309
+ (7277, 'RO ', '302', 'Schitu Stavnic'),
7310
+ (7278, 'RO ', '302', 'Scobalteni'),
7311
+ (7279, 'RO ', '302', 'Scobinti'),
7312
+ (7280, 'RO ', '302', 'Scoposeni (Gorban)'),
7313
+ (7281, 'RO ', '302', 'Scoposeni (Horlesti)'),
7314
+ (7282, 'RO ', '302', 'Sculeni'),
7315
+ (7283, 'RO ', '302', 'Sendreni '),
7316
+ (7284, 'RO ', '302', 'Serbesti'),
7317
+ (7285, 'RO ', '302', 'Sinesti'),
7318
+ (7286, 'RO ', '302', 'Sipote'),
7319
+ (7287, 'RO ', '302', 'Siretel'),
7320
+ (7288, 'RO ', '302', 'Slobozia (Ciurea)'),
7321
+ (7289, 'RO ', '302', 'Slobozia (Deleni)'),
7322
+ (7290, 'RO ', '302', 'Slobozia (Schitu Duca)'),
7323
+ (7291, 'RO ', '302', 'Slobozia (Siretel)'),
7324
+ (7292, 'RO ', '302', 'Slobozia (Voinesti)'),
7325
+ (7293, 'RO ', '302', 'Soci'),
7326
+ (7294, 'RO ', '302', 'Sodomeni'),
7327
+ (7295, 'RO ', '302', 'Sorogari'),
7328
+ (7296, 'RO ', '302', 'Spineni'),
7329
+ (7297, 'RO ', '302', 'Spinoasa'),
7330
+ (7298, 'RO ', '302', 'Spranceana'),
7331
+ (7299, 'RO ', '302', 'Stanca (Comarna)'),
7332
+ (7300, 'RO ', '302', 'Stanca (Victoria)'),
7333
+ (7301, 'RO ', '302', 'Stejarii'),
7334
+ (7302, 'RO ', '302', 'Sticlaria'),
7335
+ (7303, 'RO ', '302', 'Stolniceni-Prajescu'),
7336
+ (7304, 'RO ', '302', 'Stornesti'),
7337
+ (7305, 'RO ', '302', 'Stroesti'),
7338
+ (7306, 'RO ', '302', 'Strunga'),
7339
+ (7307, 'RO ', '302', 'Tabara'),
7340
+ (7308, 'RO ', '302', 'Tansa'),
7341
+ (7309, 'RO ', '302', 'Tansa (Belcesti)'),
7342
+ (7310, 'RO ', '302', 'Targu Frumos'),
7343
+ (7311, 'RO ', '302', 'Tatarusi'),
7344
+ (7312, 'RO ', '302', 'Tautesti'),
7345
+ (7313, 'RO ', '302', 'Tibana'),
7346
+ (7314, 'RO ', '302', 'Tibanesti'),
7347
+ (7315, 'RO ', '302', 'Tiganasi'),
7348
+ (7316, 'RO ', '302', 'Tipilesti'),
7349
+ (7317, 'RO ', '302', 'Todirel'),
7350
+ (7318, 'RO ', '302', 'Todiresti'),
7351
+ (7319, 'RO ', '302', 'Tomesti'),
7352
+ (7320, 'RO ', '302', 'Topile'),
7353
+ (7321, 'RO ', '302', 'Totoesti'),
7354
+ (7322, 'RO ', '302', 'Trifesti'),
7355
+ (7323, 'RO ', '302', 'Tungujei'),
7356
+ (7324, 'RO ', '302', 'Tutora'),
7357
+ (7325, 'RO ', '302', 'Uda'),
7358
+ (7326, 'RO ', '302', 'Ulmi'),
7359
+ (7327, 'RO ', '302', 'Ungheni'),
7360
+ (7328, 'RO ', '302', 'Uricani'),
7361
+ (7329, 'RO ', '302', 'Ursaresti'),
7362
+ (7330, 'RO ', '302', 'Ursita'),
7363
+ (7331, 'RO ', '302', 'Ursoaia'),
7364
+ (7332, 'RO ', '302', 'Valcelele'),
7365
+ (7333, 'RO ', '302', 'Valea Adanca'),
7366
+ (7334, 'RO ', '302', 'Valea Lunga'),
7367
+ (7335, 'RO ', '302', 'Valea Lupului'),
7368
+ (7336, 'RO ', '302', 'Valea Oilor'),
7369
+ (7337, 'RO ', '302', 'Valea Racului'),
7370
+ (7338, 'RO ', '302', 'Valea Satului'),
7371
+ (7339, 'RO ', '302', 'Valea Seaca'),
7372
+ (7340, 'RO ', '302', 'Valea Ursului'),
7373
+ (7341, 'RO ', '302', 'Valenii'),
7374
+ (7342, 'RO ', '302', 'Vanatori'),
7375
+ (7343, 'RO ', '302', 'Vanatori (Popricani)'),
7376
+ (7344, 'RO ', '302', 'Vascani'),
7377
+ (7345, 'RO ', '302', 'Victoria'),
7378
+ (7346, 'RO ', '302', 'Visan'),
7379
+ (7347, 'RO ', '302', 'Vladeni'),
7380
+ (7348, 'RO ', '302', 'Vladiceni'),
7381
+ (7349, 'RO ', '302', 'Vladomira'),
7382
+ (7350, 'RO ', '302', 'Vocotesti'),
7383
+ (7351, 'RO ', '302', 'Voinesti'),
7384
+ (7352, 'RO ', '302', 'Volintiresti'),
7385
+ (7353, 'RO ', '302', 'Vorovesti'),
7386
+ (7354, 'RO ', '302', 'Vulturi'),
7387
+ (7355, 'RO ', '302', 'Zaboloteni'),
7388
+ (7356, 'RO ', '302', 'Zagavia'),
7389
+ (7357, 'RO ', '302', 'Zbereni'),
7390
+ (7358, 'RO ', '302', 'Zberoaia'),
7391
+ (7359, 'RO ', '302', 'Zece Prajini'),
7392
+ (7360, 'RO ', '302', 'Zlodica'),
7393
+ (7361, 'RO ', '302', 'Zmeu'),
7394
+ (7362, 'RO ', '303', '1 Decembrie'),
7395
+ (7363, 'RO ', '303', 'Afumati'),
7396
+ (7364, 'RO ', '303', 'Alunisu'),
7397
+ (7365, 'RO ', '303', 'Balaceanca'),
7398
+ (7366, 'RO ', '303', 'Balotesti'),
7399
+ (7367, 'RO ', '303', 'Balta Neagra'),
7400
+ (7368, 'RO ', '303', 'Balteni'),
7401
+ (7369, 'RO ', '303', 'Berceni'),
7402
+ (7370, 'RO ', '303', 'Bragadiru'),
7403
+ (7371, 'RO ', '303', 'Branesti'),
7404
+ (7372, 'RO ', '303', 'Buciumeni'),
7405
+ (7373, 'RO ', '303', 'Buda'),
7406
+ (7374, 'RO ', '303', 'Buftea'),
7407
+ (7375, 'RO ', '303', 'Burias'),
7408
+ (7376, 'RO ', '303', 'Caciulati'),
7409
+ (7377, 'RO ', '303', 'Caldararu'),
7410
+ (7378, 'RO ', '303', 'Catelu'),
7411
+ (7379, 'RO ', '303', 'Cernica'),
7412
+ (7380, 'RO ', '303', 'Chiajna'),
7413
+ (7381, 'RO ', '303', 'Chitila'),
7414
+ (7382, 'RO ', '303', 'Ciofliceni'),
7415
+ (7383, 'RO ', '303', 'Ciolpani'),
7416
+ (7384, 'RO ', '303', 'Ciorogarla'),
7417
+ (7385, 'RO ', '303', 'Clinceni'),
7418
+ (7386, 'RO ', '303', 'Copaceni'),
7419
+ (7387, 'RO ', '303', 'Corbeanca'),
7420
+ (7388, 'RO ', '303', 'Cornetu'),
7421
+ (7389, 'RO ', '303', 'Cozieni'),
7422
+ (7390, 'RO ', '303', 'Cretesti'),
7423
+ (7391, 'RO ', '303', 'Darasti-Ilfov'),
7424
+ (7392, 'RO ', '303', 'Darvari IF'),
7425
+ (7393, 'RO ', '303', 'Dascalu'),
7426
+ (7394, 'RO ', '303', 'Dimieni'),
7427
+ (7395, 'RO ', '303', 'Dobroesti'),
7428
+ (7396, 'RO ', '303', 'Domnesti'),
7429
+ (7397, 'RO ', '303', 'Dragomiresti-Deal'),
7430
+ (7398, 'RO ', '303', 'Dragomiresti-Vale'),
7431
+ (7399, 'RO ', '303', 'Dudu'),
7432
+ (7400, 'RO ', '303', 'Dumbraveni'),
7433
+ (7401, 'RO ', '303', 'Dumitrana'),
7434
+ (7402, 'RO ', '303', 'Fundeni'),
7435
+ (7403, 'RO ', '303', 'Gagu'),
7436
+ (7404, 'RO ', '303', 'Ganeasa'),
7437
+ (7405, 'RO ', '303', 'Ghermanesti'),
7438
+ (7406, 'RO ', '303', 'Glina'),
7439
+ (7407, 'RO ', '303', 'Gradistea'),
7440
+ (7408, 'RO ', '303', 'Gruiu'),
7441
+ (7409, 'RO ', '303', 'Islaz'),
7442
+ (7410, 'RO ', '303', 'Izvorani'),
7443
+ (7411, 'RO ', '303', 'Jilava'),
7444
+ (7412, 'RO ', '303', 'Lipia'),
7445
+ (7413, 'RO ', '303', 'Magurele'),
7446
+ (7414, 'RO ', '303', 'Maineasca'),
7447
+ (7415, 'RO ', '303', 'Manolache'),
7448
+ (7416, 'RO ', '303', 'Merii Petchii'),
7449
+ (7417, 'RO ', '303', 'Micsunestii Mari'),
7450
+ (7418, 'RO ', '303', 'Moara Domneasca'),
7451
+ (7419, 'RO ', '303', 'Moara Vlasiei'),
7452
+ (7420, 'RO ', '303', 'Mogosoaia'),
7453
+ (7421, 'RO ', '303', 'Nuci'),
7454
+ (7422, 'RO ', '303', 'Olteni'),
7455
+ (7423, 'RO ', '303', 'Ordoreanu'),
7456
+ (7424, 'RO ', '303', 'Ostratu'),
7457
+ (7425, 'RO ', '303', 'Otopeni'),
7458
+ (7426, 'RO ', '303', 'Pantelimon'),
7459
+ (7427, 'RO ', '303', 'Pasarea'),
7460
+ (7428, 'RO ', '303', 'Peris'),
7461
+ (7429, 'RO ', '303', 'Petrachioaia'),
7462
+ (7430, 'RO ', '303', 'Petresti'),
7463
+ (7431, 'RO ', '303', 'Pipera (Voluntari)'),
7464
+ (7432, 'RO ', '303', 'Piscu'),
7465
+ (7433, 'RO ', '303', 'Piteasca'),
7466
+ (7434, 'RO ', '303', 'Popesti-Leordeni'),
7467
+ (7435, 'RO ', '303', 'Posta'),
7468
+ (7436, 'RO ', '303', 'Pruni'),
7469
+ (7437, 'RO ', '303', 'Rosu'),
7470
+ (7438, 'RO ', '303', 'Rudeni'),
7471
+ (7439, 'RO ', '303', 'Saftica'),
7472
+ (7440, 'RO ', '303', 'Santu-Floresti'),
7473
+ (7441, 'RO ', '303', 'Silistea Snagovului'),
7474
+ (7442, 'RO ', '303', 'Sindrilita'),
7475
+ (7443, 'RO ', '303', 'Sintesti'),
7476
+ (7444, 'RO ', '303', 'Sitaru'),
7477
+ (7445, 'RO ', '303', 'Snagov'),
7478
+ (7446, 'RO ', '303', 'Stefanestii de Jos'),
7479
+ (7447, 'RO ', '303', 'Stefanestii de Sus'),
7480
+ (7448, 'RO ', '303', 'Surlari'),
7481
+ (7449, 'RO ', '303', 'Tamasi'),
7482
+ (7450, 'RO ', '303', 'Tancabesti'),
7483
+ (7451, 'RO ', '303', 'Tanganu'),
7484
+ (7452, 'RO ', '303', 'Teghes'),
7485
+ (7453, 'RO ', '303', 'Tunari'),
7486
+ (7454, 'RO ', '303', 'Vanatori'),
7487
+ (7455, 'RO ', '303', 'Varteju'),
7488
+ (7456, 'RO ', '303', 'Vidra'),
7489
+ (7457, 'RO ', '303', 'Vladiceasca'),
7490
+ (7458, 'RO ', '303', 'Voluntari'),
7491
+ (7459, 'RO ', '303', 'Zurbaua'),
7492
+ (7460, 'RO ', '304', 'Ardusat'),
7493
+ (7461, 'RO ', '304', 'Arduzel'),
7494
+ (7462, 'RO ', '304', 'Ariesu de Camp'),
7495
+ (7463, 'RO ', '304', 'Ariesu de Padure'),
7496
+ (7464, 'RO ', '304', 'Arinis'),
7497
+ (7465, 'RO ', '304', 'Aspra'),
7498
+ (7466, 'RO ', '304', 'Asuaju de Jos'),
7499
+ (7467, 'RO ', '304', 'Asuaju de Sus'),
7500
+ (7468, 'RO ', '304', 'Baba'),
7501
+ (7469, 'RO ', '304', 'Baia Mare'),
7502
+ (7470, 'RO ', '304', 'Baia Sprie'),
7503
+ (7471, 'RO ', '304', 'Baile Borsa'),
7504
+ (7472, 'RO ', '304', 'Baita'),
7505
+ (7473, 'RO ', '304', 'Baita de sub Codru'),
7506
+ (7474, 'RO ', '304', 'Baiut'),
7507
+ (7475, 'RO ', '304', 'Bargau'),
7508
+ (7476, 'RO ', '304', 'Barsana'),
7509
+ (7477, 'RO ', '304', 'Basesti'),
7510
+ (7478, 'RO ', '304', 'Berbesti'),
7511
+ (7479, 'RO ', '304', 'Berchez'),
7512
+ (7480, 'RO ', '304', 'Berchezoaia'),
7513
+ (7481, 'RO ', '304', 'Berinta'),
7514
+ (7482, 'RO ', '304', 'Bicaz'),
7515
+ (7483, 'RO ', '304', 'Bistra'),
7516
+ (7484, 'RO ', '304', 'Blidari'),
7517
+ (7485, 'RO ', '304', 'Bocicoel'),
7518
+ (7486, 'RO ', '304', 'Bocicoiu Mare'),
7519
+ (7487, 'RO ', '304', 'Bogdan Voda'),
7520
+ (7488, 'RO ', '304', 'Boiereni'),
7521
+ (7489, 'RO ', '304', 'Boiu Mare'),
7522
+ (7490, 'RO ', '304', 'Bontaieni'),
7523
+ (7491, 'RO ', '304', 'Borcut'),
7524
+ (7492, 'RO ', '304', 'Borsa'),
7525
+ (7493, 'RO ', '304', 'Botiza'),
7526
+ (7494, 'RO ', '304', 'Bozanta Mare'),
7527
+ (7495, 'RO ', '304', 'Bozanta Mica'),
7528
+ (7496, 'RO ', '304', 'Breb'),
7529
+ (7497, 'RO ', '304', 'Brebeni'),
7530
+ (7498, 'RO ', '304', 'Buciumi'),
7531
+ (7499, 'RO ', '304', 'Budesti'),
7532
+ (7500, 'RO ', '304', 'Busag'),
7533
+ (7501, 'RO ', '304', 'Buteasa'),
7534
+ (7502, 'RO ', '304', 'Buzesti'),
7535
+ (7503, 'RO ', '304', 'Calinesti'),
7536
+ (7504, 'RO ', '304', 'Campulung la Tisa'),
7537
+ (7505, 'RO ', '304', 'Carbunari'),
7538
+ (7506, 'RO ', '304', 'Carpinis'),
7539
+ (7507, 'RO ', '304', 'Catalina'),
7540
+ (7508, 'RO ', '304', 'Cavnic'),
7541
+ (7509, 'RO ', '304', 'Cernesti'),
7542
+ (7510, 'RO ', '304', 'Cetatele'),
7543
+ (7511, 'RO ', '304', 'Chechis'),
7544
+ (7512, 'RO ', '304', 'Chelinta'),
7545
+ (7513, 'RO ', '304', 'Chiuzbaia'),
7546
+ (7514, 'RO ', '304', 'Cicarlau'),
7547
+ (7515, 'RO ', '304', 'Ciocotis'),
7548
+ (7516, 'RO ', '304', 'Ciolt'),
7549
+ (7517, 'RO ', '304', 'Ciuta'),
7550
+ (7518, 'RO ', '304', 'Coas'),
7551
+ (7519, 'RO ', '304', 'Codru Butesii'),
7552
+ (7520, 'RO ', '304', 'Coltau'),
7553
+ (7521, 'RO ', '304', 'Coltirea'),
7554
+ (7522, 'RO ', '304', 'Copalnic'),
7555
+ (7523, 'RO ', '304', 'Copalnic-Deal'),
7556
+ (7524, 'RO ', '304', 'Copalnic-Manastur'),
7557
+ (7525, 'RO ', '304', 'Cornesti'),
7558
+ (7526, 'RO ', '304', 'Corni'),
7559
+ (7527, 'RO ', '304', 'Coroieni'),
7560
+ (7528, 'RO ', '304', 'Coruia'),
7561
+ (7529, 'RO ', '304', 'Costeni'),
7562
+ (7530, 'RO ', '304', 'Costiui'),
7563
+ (7531, 'RO ', '304', 'Craciunesti'),
7564
+ (7532, 'RO ', '304', 'Crasna Viseului'),
7565
+ (7533, 'RO ', '304', 'Cufoaia'),
7566
+ (7534, 'RO ', '304', 'Culcea'),
7567
+ (7535, 'RO ', '304', 'Cupseni'),
7568
+ (7536, 'RO ', '304', 'Curtuiusu Mare'),
7569
+ (7537, 'RO ', '304', 'Curtuiusu Mic'),
7570
+ (7538, 'RO ', '304', 'Damacuseni'),
7571
+ (7539, 'RO ', '304', 'Danesti'),
7572
+ (7540, 'RO ', '304', 'Danestii Chioarului'),
7573
+ (7541, 'RO ', '304', 'Dealu Corbului'),
7574
+ (7542, 'RO ', '304', 'Dealu Mare'),
7575
+ (7543, 'RO ', '304', 'Desesti'),
7576
+ (7544, 'RO ', '304', 'Dobricu Lapusului'),
7577
+ (7545, 'RO ', '304', 'Draghia'),
7578
+ (7546, 'RO ', '304', 'Dragomiresti'),
7579
+ (7547, 'RO ', '304', 'Dumbrava'),
7580
+ (7548, 'RO ', '304', 'Dumbravita'),
7581
+ (7549, 'RO ', '304', 'Durusa'),
7582
+ (7550, 'RO ', '304', 'Fanate'),
7583
+ (7551, 'RO ', '304', 'Fantanele'),
7584
+ (7552, 'RO ', '304', 'Farcasa'),
7585
+ (7553, 'RO ', '304', 'Fauresti'),
7586
+ (7554, 'RO ', '304', 'Feresti'),
7587
+ (7555, 'RO ', '304', 'Fericea'),
7588
+ (7556, 'RO ', '304', 'Fersig'),
7589
+ (7557, 'RO ', '304', 'Finteusu Mare'),
7590
+ (7558, 'RO ', '304', 'Finteusu Mic'),
7591
+ (7559, 'RO ', '304', 'Firiza'),
7592
+ (7560, 'RO ', '304', 'Francenii Boiului'),
7593
+ (7561, 'RO ', '304', 'Gardani'),
7594
+ (7562, 'RO ', '304', 'Giulesti'),
7595
+ (7563, 'RO ', '304', 'Glod'),
7596
+ (7564, 'RO ', '304', 'Groape'),
7597
+ (7565, 'RO ', '304', 'Grosi'),
7598
+ (7566, 'RO ', '304', 'Grosii Tiblesului'),
7599
+ (7567, 'RO ', '304', 'Handalu Ilbei'),
7600
+ (7568, 'RO ', '304', 'Harnicesti'),
7601
+ (7569, 'RO ', '304', 'Hideaga'),
7602
+ (7570, 'RO ', '304', 'Hoteni'),
7603
+ (7571, 'RO ', '304', 'Hovrila'),
7604
+ (7572, 'RO ', '304', 'Iadara'),
7605
+ (7573, 'RO ', '304', 'Iapa'),
7606
+ (7574, 'RO ', '304', 'Ieud'),
7607
+ (7575, 'RO ', '304', 'Ilba'),
7608
+ (7576, 'RO ', '304', 'Inau'),
7609
+ (7577, 'RO ', '304', 'Intrerauri'),
7610
+ (7578, 'RO ', '304', 'Izvoarele'),
7611
+ (7579, 'RO ', '304', 'Jugastreni');
7612
+ INSERT INTO `directory_country_region_city` (`city_id`, `country_id`, `region_id`, `cityname`) VALUES
7613
+ (7580, 'RO ', '304', 'Lapus'),
7614
+ (7581, 'RO ', '304', 'Lapusel'),
7615
+ (7582, 'RO ', '304', 'Larga'),
7616
+ (7583, 'RO ', '304', 'Laschia'),
7617
+ (7584, 'RO ', '304', 'Lazu Baciului'),
7618
+ (7585, 'RO ', '304', 'Leordina'),
7619
+ (7586, 'RO ', '304', 'Libotin'),
7620
+ (7587, 'RO ', '304', 'Lucacesti'),
7621
+ (7588, 'RO ', '304', 'Lunca la Tisa'),
7622
+ (7589, 'RO ', '304', 'Magureni'),
7623
+ (7590, 'RO ', '304', 'Manastirea'),
7624
+ (7591, 'RO ', '304', 'Manau'),
7625
+ (7592, 'RO ', '304', 'Mara'),
7626
+ (7593, 'RO ', '304', 'Merisor'),
7627
+ (7594, 'RO ', '304', 'Mesteacan'),
7628
+ (7595, 'RO ', '304', 'Miresu Mare'),
7629
+ (7596, 'RO ', '304', 'Mocira'),
7630
+ (7597, 'RO ', '304', 'Mogosesti'),
7631
+ (7598, 'RO ', '304', 'Moisei'),
7632
+ (7599, 'RO ', '304', 'Nanesti'),
7633
+ (7600, 'RO ', '304', 'Negreia'),
7634
+ (7601, 'RO ', '304', 'Nistru'),
7635
+ (7602, 'RO ', '304', 'Oarta de Jos'),
7636
+ (7603, 'RO ', '304', 'Oarta de Sus'),
7637
+ (7604, 'RO ', '304', 'Ocna Sugatag'),
7638
+ (7605, 'RO ', '304', 'Ocolis'),
7639
+ (7606, 'RO ', '304', 'Odesti'),
7640
+ (7607, 'RO ', '304', 'Oncesti'),
7641
+ (7608, 'RO ', '304', 'Ortita'),
7642
+ (7609, 'RO ', '304', 'Peteritea'),
7643
+ (7610, 'RO ', '304', 'Petrova'),
7644
+ (7611, 'RO ', '304', 'Piatra'),
7645
+ (7612, 'RO ', '304', 'Plopis'),
7646
+ (7613, 'RO ', '304', 'Poiana Botizii'),
7647
+ (7614, 'RO ', '304', 'Poienile de Sub Munte'),
7648
+ (7615, 'RO ', '304', 'Poienile Izei'),
7649
+ (7616, 'RO ', '304', 'Posta'),
7650
+ (7617, 'RO ', '304', 'Preluca Noua'),
7651
+ (7618, 'RO ', '304', 'Preluca Veche'),
7652
+ (7619, 'RO ', '304', 'Pribilesti'),
7653
+ (7620, 'RO ', '304', 'Prislop'),
7654
+ (7621, 'RO ', '304', 'Razoare'),
7655
+ (7622, 'RO ', '304', 'Recea'),
7656
+ (7623, 'RO ', '304', 'Remecioara'),
7657
+ (7624, 'RO ', '304', 'Remetea Chioarului'),
7658
+ (7625, 'RO ', '304', 'Remeti'),
7659
+ (7626, 'RO ', '304', 'Remeti pe Somes'),
7660
+ (7627, 'RO ', '304', 'Repedea'),
7661
+ (7628, 'RO ', '304', 'Rodina'),
7662
+ (7629, 'RO ', '304', 'Rogoz'),
7663
+ (7630, 'RO ', '304', 'Rohia'),
7664
+ (7631, 'RO ', '304', 'Romanesti'),
7665
+ (7632, 'RO ', '304', 'Rona de Jos'),
7666
+ (7633, 'RO ', '304', 'Rona de Sus'),
7667
+ (7634, 'RO ', '304', 'Rozavlea'),
7668
+ (7635, 'RO ', '304', 'Rus'),
7669
+ (7636, 'RO ', '304', 'Ruscova'),
7670
+ (7637, 'RO ', '304', 'Rusor'),
7671
+ (7638, 'RO ', '304', 'Sabisa'),
7672
+ (7639, 'RO ', '304', 'Sacalaseni'),
7673
+ (7640, 'RO ', '304', 'Sacel'),
7674
+ (7641, 'RO ', '304', 'Saliste'),
7675
+ (7642, 'RO ', '304', 'Salistea de Sus'),
7676
+ (7643, 'RO ', '304', 'Salnita'),
7677
+ (7644, 'RO ', '304', 'Salsig'),
7678
+ (7645, 'RO ', '304', 'Salta'),
7679
+ (7646, 'RO ', '304', 'Sapanta'),
7680
+ (7647, 'RO ', '304', 'Sarasau'),
7681
+ (7648, 'RO ', '304', 'Sarbi (Budesti)'),
7682
+ (7649, 'RO ', '304', 'Sarbi (Farcasa)'),
7683
+ (7650, 'RO ', '304', 'Sasar'),
7684
+ (7651, 'RO ', '304', 'Sat-sugatag'),
7685
+ (7652, 'RO ', '304', 'satu nou de jos'),
7686
+ (7653, 'RO ', '304', 'Satu Nou de Sus'),
7687
+ (7654, 'RO ', '304', 'Satulung'),
7688
+ (7655, 'RO ', '304', 'Seini'),
7689
+ (7656, 'RO ', '304', 'Sieu'),
7690
+ (7657, 'RO ', '304', 'Sighetu Marmatiei'),
7691
+ (7658, 'RO ', '304', 'sindresti'),
7692
+ (7659, 'RO ', '304', 'Sisesti'),
7693
+ (7660, 'RO ', '304', 'Slatioara'),
7694
+ (7661, 'RO ', '304', 'Somcuta Mare'),
7695
+ (7662, 'RO ', '304', 'Somes-Uileac'),
7696
+ (7663, 'RO ', '304', 'Stejera'),
7697
+ (7664, 'RO ', '304', 'Stoiceni'),
7698
+ (7665, 'RO ', '304', 'Strambu-Baiut'),
7699
+ (7666, 'RO ', '304', 'Stramtura'),
7700
+ (7667, 'RO ', '304', 'Stremt'),
7701
+ (7668, 'RO ', '304', 'Suciu de Jos'),
7702
+ (7669, 'RO ', '304', 'Suciu de Sus'),
7703
+ (7670, 'RO ', '304', 'Sugau'),
7704
+ (7671, 'RO ', '304', 'Surdesti'),
7705
+ (7672, 'RO ', '304', 'Tamaia'),
7706
+ (7673, 'RO ', '304', 'Tamasesti'),
7707
+ (7674, 'RO ', '304', 'Targu Lapus'),
7708
+ (7675, 'RO ', '304', 'Tautii de Sus'),
7709
+ (7676, 'RO ', '304', 'Tautii-Magheraus'),
7710
+ (7677, 'RO ', '304', 'Teceu Mic'),
7711
+ (7678, 'RO ', '304', 'Ticau'),
7712
+ (7679, 'RO ', '304', 'Tisa'),
7713
+ (7680, 'RO ', '304', 'Tohat'),
7714
+ (7681, 'RO ', '304', 'Trestia'),
7715
+ (7682, 'RO ', '304', 'Tulghies'),
7716
+ (7683, 'RO ', '304', 'Ulmeni'),
7717
+ (7684, 'RO ', '304', 'Ulmoasa'),
7718
+ (7685, 'RO ', '304', 'Unguras'),
7719
+ (7686, 'RO ', '304', 'Ungureni'),
7720
+ (7687, 'RO ', '304', 'Urmenis'),
7721
+ (7688, 'RO ', '304', 'Vad'),
7722
+ (7689, 'RO ', '304', 'Vadu Izei'),
7723
+ (7690, 'RO ', '304', 'Valea Chioarului'),
7724
+ (7691, 'RO ', '304', 'Valea Cufundoasa'),
7725
+ (7692, 'RO ', '304', 'Valea Hotarului'),
7726
+ (7693, 'RO ', '304', 'Valea Neagra'),
7727
+ (7694, 'RO ', '304', 'Valea Stejarului'),
7728
+ (7695, 'RO ', '304', 'Valea Viseului'),
7729
+ (7696, 'RO ', '304', 'Valeni'),
7730
+ (7697, 'RO ', '304', 'Valenii Lapusului'),
7731
+ (7698, 'RO ', '304', 'Valenii Somcutei'),
7732
+ (7699, 'RO ', '304', 'Varai'),
7733
+ (7700, 'RO ', '304', 'Vicea'),
7734
+ (7701, 'RO ', '304', 'Viile Apei'),
7735
+ (7702, 'RO ', '304', 'Vima Mare'),
7736
+ (7703, 'RO ', '304', 'Vima Mica'),
7737
+ (7704, 'RO ', '304', 'Viseu de Jos'),
7738
+ (7705, 'RO ', '304', 'Viseu de Mijloc'),
7739
+ (7706, 'RO ', '304', 'Viseu de Sus'),
7740
+ (7707, 'RO ', '305', '23-Aug'),
7741
+ (7708, 'RO ', '305', 'Adunatii Teiului'),
7742
+ (7709, 'RO ', '305', 'Albulesti'),
7743
+ (7710, 'RO ', '305', 'Almajel'),
7744
+ (7711, 'RO ', '305', 'Alunisul'),
7745
+ (7712, 'RO ', '305', 'Arginesti'),
7746
+ (7713, 'RO ', '305', 'Arvatesti'),
7747
+ (7714, 'RO ', '305', 'Aurora'),
7748
+ (7715, 'RO ', '305', 'Bacles'),
7749
+ (7716, 'RO ', '305', 'Baditesti'),
7750
+ (7717, 'RO ', '305', 'Bahna'),
7751
+ (7718, 'RO ', '305', 'Baia de Arama '),
7752
+ (7719, 'RO ', '305', 'Baia Noua'),
7753
+ (7720, 'RO ', '305', 'Bala'),
7754
+ (7721, 'RO ', '305', 'Bala de Sus'),
7755
+ (7722, 'RO ', '305', 'Balacita'),
7756
+ (7723, 'RO ', '305', 'Balota'),
7757
+ (7724, 'RO ', '305', 'Balotesti'),
7758
+ (7725, 'RO ', '305', 'Balta'),
7759
+ (7726, 'RO ', '305', 'Balta Verde'),
7760
+ (7727, 'RO ', '305', 'Baltanele (Greci)'),
7761
+ (7728, 'RO ', '305', 'Baltanele (Prunisor)'),
7762
+ (7729, 'RO ', '305', 'Baluta'),
7763
+ (7730, 'RO ', '305', 'Balvanesti'),
7764
+ (7731, 'RO ', '305', 'Balvanestii de Jos'),
7765
+ (7732, 'RO ', '305', 'Baraiacu'),
7766
+ (7733, 'RO ', '305', 'Barda'),
7767
+ (7734, 'RO ', '305', 'Barlogeni'),
7768
+ (7735, 'RO ', '305', 'Batoti'),
7769
+ (7736, 'RO ', '305', 'Biban'),
7770
+ (7737, 'RO ', '305', 'Bistretu'),
7771
+ (7738, 'RO ', '305', 'Bistrita'),
7772
+ (7739, 'RO ', '305', 'Blidaru'),
7773
+ (7740, 'RO ', '305', 'Bobaita'),
7774
+ (7741, 'RO ', '305', 'Boceni'),
7775
+ (7742, 'RO ', '305', 'Borogea'),
7776
+ (7743, 'RO ', '305', 'Bragleasa'),
7777
+ (7744, 'RO ', '305', 'Branistea'),
7778
+ (7745, 'RO ', '305', 'Branzeni'),
7779
+ (7746, 'RO ', '305', 'Bratesul'),
7780
+ (7747, 'RO ', '305', 'Bratilovu'),
7781
+ (7748, 'RO ', '305', 'Brativoesti'),
7782
+ (7749, 'RO ', '305', 'Brebina'),
7783
+ (7750, 'RO ', '305', 'Breta'),
7784
+ (7751, 'RO ', '305', 'Breznicioara'),
7785
+ (7752, 'RO ', '305', 'Breznita-Motru'),
7786
+ (7753, 'RO ', '305', 'Breznita-Ocol'),
7787
+ (7754, 'RO ', '305', 'Brosteni'),
7788
+ (7755, 'RO ', '305', 'Bucura'),
7789
+ (7756, 'RO ', '305', 'Budanesti'),
7790
+ (7757, 'RO ', '305', 'Buicani'),
7791
+ (7758, 'RO ', '305', 'Buicesti'),
7792
+ (7759, 'RO ', '305', 'Bunoaica'),
7793
+ (7760, 'RO ', '305', 'Burila Mare'),
7794
+ (7761, 'RO ', '305', 'Burila Mica'),
7795
+ (7762, 'RO ', '305', 'Busesti'),
7796
+ (7763, 'RO ', '305', 'Butoiesti'),
7797
+ (7764, 'RO ', '305', 'Calinestii de Jos'),
7798
+ (7765, 'RO ', '305', 'Calinestii de Sus'),
7799
+ (7766, 'RO ', '305', 'Campu Mare'),
7800
+ (7767, 'RO ', '305', 'Capatanesti'),
7801
+ (7768, 'RO ', '305', 'Caramidaru'),
7802
+ (7769, 'RO ', '305', 'Carceni'),
7803
+ (7770, 'RO ', '305', 'Carjei'),
7804
+ (7771, 'RO ', '305', 'Carsu'),
7805
+ (7772, 'RO ', '305', 'Cazanesti'),
7806
+ (7773, 'RO ', '305', 'Cearangu'),
7807
+ (7774, 'RO ', '305', 'Celnata'),
7808
+ (7775, 'RO ', '305', 'Ceptureni'),
7809
+ (7776, 'RO ', '305', 'Ceranganul'),
7810
+ (7777, 'RO ', '305', 'Cernaia'),
7811
+ (7778, 'RO ', '305', 'Cerna-Varf'),
7812
+ (7779, 'RO ', '305', 'Cerneti'),
7813
+ (7780, 'RO ', '305', 'Cervenita'),
7814
+ (7781, 'RO ', '305', 'Ciochiuta'),
7815
+ (7782, 'RO ', '305', 'Cioroboreni'),
7816
+ (7783, 'RO ', '305', 'Ciovarnasani'),
7817
+ (7784, 'RO ', '305', 'Ciresu'),
7818
+ (7785, 'RO ', '305', 'Coada Cornetului'),
7819
+ (7786, 'RO ', '305', 'Cocorova'),
7820
+ (7787, 'RO ', '305', 'Colaret'),
7821
+ (7788, 'RO ', '305', 'Colibasi'),
7822
+ (7789, 'RO ', '305', 'Comanda'),
7823
+ (7790, 'RO ', '305', 'Comanesti'),
7824
+ (7791, 'RO ', '305', 'Copacioasa'),
7825
+ (7792, 'RO ', '305', 'Corcova'),
7826
+ (7793, 'RO ', '305', 'Cordun'),
7827
+ (7794, 'RO ', '305', 'Corlatel'),
7828
+ (7795, 'RO ', '305', 'Corzu'),
7829
+ (7796, 'RO ', '305', 'Cosovat'),
7830
+ (7797, 'RO ', '305', 'Costesti'),
7831
+ (7798, 'RO ', '305', 'Cotoroaia'),
7832
+ (7799, 'RO ', '305', 'Cozia'),
7833
+ (7800, 'RO ', '305', 'Cracu Lung'),
7834
+ (7801, 'RO ', '305', 'Cracu Muntelui'),
7835
+ (7802, 'RO ', '305', 'Craguesti'),
7836
+ (7803, 'RO ', '305', 'Crainici'),
7837
+ (7804, 'RO ', '305', 'Cremenea'),
7838
+ (7805, 'RO ', '305', 'Crivina'),
7839
+ (7806, 'RO ', '305', 'Croica'),
7840
+ (7807, 'RO ', '305', 'Cujmir'),
7841
+ (7808, 'RO ', '305', 'Cujmiru Mic'),
7842
+ (7809, 'RO ', '305', 'Dalbocita'),
7843
+ (7810, 'RO ', '305', 'Dalma'),
7844
+ (7811, 'RO ', '305', 'Danceu'),
7845
+ (7812, 'RO ', '305', 'Darvari'),
7846
+ (7813, 'RO ', '305', 'Dealu Mare'),
7847
+ (7814, 'RO ', '305', 'Dedovita Noua'),
7848
+ (7815, 'RO ', '305', 'Dedovita Veche'),
7849
+ (7816, 'RO ', '305', 'Deleni'),
7850
+ (7817, 'RO ', '305', 'Delureni'),
7851
+ (7818, 'RO ', '305', 'Devesel'),
7852
+ (7819, 'RO ', '305', 'Dobra'),
7853
+ (7820, 'RO ', '305', 'Draghesti'),
7854
+ (7821, 'RO ', '305', 'Dragotesti'),
7855
+ (7822, 'RO ', '305', 'Drincea'),
7856
+ (7823, 'RO ', '305', 'Drobeta-Turnu Severin'),
7857
+ (7824, 'RO ', '305', 'Dubova'),
7858
+ (7825, 'RO ', '305', 'Dudasu'),
7859
+ (7826, 'RO ', '305', 'Dudasu Schelei'),
7860
+ (7827, 'RO ', '305', 'Dumbrava'),
7861
+ (7828, 'RO ', '305', 'Dumbrava de Jos'),
7862
+ (7829, 'RO ', '305', 'Dumbrava de Mijloc'),
7863
+ (7830, 'RO ', '305', 'Dumbrava de Sus'),
7864
+ (7831, 'RO ', '305', 'Dumbravita'),
7865
+ (7832, 'RO ', '305', 'Dunarea Mica'),
7866
+ (7833, 'RO ', '305', 'Eibenthal'),
7867
+ (7834, 'RO ', '305', 'Ercea'),
7868
+ (7835, 'RO ', '305', 'Erghevita'),
7869
+ (7836, 'RO ', '305', 'Eselnita'),
7870
+ (7837, 'RO ', '305', 'Fantana Domneasca'),
7871
+ (7838, 'RO ', '305', 'Fantanile Negre'),
7872
+ (7839, 'RO ', '305', 'Fata Cremenii'),
7873
+ (7840, 'RO ', '305', 'Fata Motrului'),
7874
+ (7841, 'RO ', '305', 'Fauroaia'),
7875
+ (7842, 'RO ', '305', 'Firizu'),
7876
+ (7843, 'RO ', '305', 'Floresti'),
7877
+ (7844, 'RO ', '305', 'Garbovatu de Jos'),
7878
+ (7845, 'RO ', '305', 'Garbovatu de Sus'),
7879
+ (7846, 'RO ', '305', 'Gardaneasa'),
7880
+ (7847, 'RO ', '305', 'Gardoaia'),
7881
+ (7848, 'RO ', '305', 'Garla Mare'),
7882
+ (7849, 'RO ', '305', 'Garnita'),
7883
+ (7850, 'RO ', '305', 'Gemeni'),
7884
+ (7851, 'RO ', '305', 'Ghelmegioaia'),
7885
+ (7852, 'RO ', '305', 'Gheorghesti'),
7886
+ (7853, 'RO ', '305', 'Giura'),
7887
+ (7854, 'RO ', '305', 'Giurgiani'),
7888
+ (7855, 'RO ', '305', 'Goanta'),
7889
+ (7856, 'RO ', '305', 'Godeanu'),
7890
+ (7857, 'RO ', '305', 'Godeanu (Obarsia-Closani)'),
7891
+ (7858, 'RO ', '305', 'Gogosu'),
7892
+ (7859, 'RO ', '305', 'Golineasa'),
7893
+ (7860, 'RO ', '305', 'Gornenti'),
7894
+ (7861, 'RO ', '305', 'Gornovita'),
7895
+ (7862, 'RO ', '305', 'Govodarva'),
7896
+ (7863, 'RO ', '305', 'Greci'),
7897
+ (7864, 'RO ', '305', 'Grozesti'),
7898
+ (7865, 'RO ', '305', 'Gruia'),
7899
+ (7866, 'RO ', '305', 'Gura Motrului'),
7900
+ (7867, 'RO ', '305', 'Gura Vaii'),
7901
+ (7868, 'RO ', '305', 'Gutu'),
7902
+ (7869, 'RO ', '305', 'Gvardinita'),
7903
+ (7870, 'RO ', '305', 'Halanga'),
7904
+ (7871, 'RO ', '305', 'Higiu'),
7905
+ (7872, 'RO ', '305', 'Hinova'),
7906
+ (7873, 'RO ', '305', 'Hotarani'),
7907
+ (7874, 'RO ', '305', 'Hurducesti'),
7908
+ (7875, 'RO ', '305', 'Husnicioara'),
7909
+ (7876, 'RO ', '305', 'Igiroasa'),
7910
+ (7877, 'RO ', '305', 'Ilovat'),
7911
+ (7878, 'RO ', '305', 'Ilovita'),
7912
+ (7879, 'RO ', '305', 'Ilovu'),
7913
+ (7880, 'RO ', '305', 'Imoasa'),
7914
+ (7881, 'RO ', '305', 'Isverna'),
7915
+ (7882, 'RO ', '305', 'Iupca'),
7916
+ (7883, 'RO ', '305', 'Izimsa'),
7917
+ (7884, 'RO ', '305', 'Izvoarele'),
7918
+ (7885, 'RO ', '305', 'Izvoralu'),
7919
+ (7886, 'RO ', '305', 'Izvoralu de Jos'),
7920
+ (7887, 'RO ', '305', 'Izvoru Anestilor'),
7921
+ (7888, 'RO ', '305', 'Izvoru Barzii'),
7922
+ (7889, 'RO ', '305', 'Izvoru Frumos'),
7923
+ (7890, 'RO ', '305', 'Jiana'),
7924
+ (7891, 'RO ', '305', 'Jiana Mare'),
7925
+ (7892, 'RO ', '305', 'Jiana Veche'),
7926
+ (7893, 'RO ', '305', 'Jidostita'),
7927
+ (7894, 'RO ', '305', 'Jignita'),
7928
+ (7895, 'RO ', '305', 'Jirov'),
7929
+ (7896, 'RO ', '305', 'Jugastru'),
7930
+ (7897, 'RO ', '305', 'Jupanesti'),
7931
+ (7898, 'RO ', '305', 'Lac'),
7932
+ (7899, 'RO ', '305', 'Lazu'),
7933
+ (7900, 'RO ', '305', 'Livezi'),
7934
+ (7901, 'RO ', '305', 'Livezile'),
7935
+ (7902, 'RO ', '305', 'Ludu'),
7936
+ (7903, 'RO ', '305', 'Lumnic'),
7937
+ (7904, 'RO ', '305', 'Lunca Banului'),
7938
+ (7905, 'RO ', '305', 'Luncsoara'),
7939
+ (7906, 'RO ', '305', 'Lupsa de Jos'),
7940
+ (7907, 'RO ', '305', 'Lupsa de Sus'),
7941
+ (7908, 'RO ', '305', 'Magheru'),
7942
+ (7909, 'RO ', '305', 'Magurele'),
7943
+ (7910, 'RO ', '305', 'Malarisca'),
7944
+ (7911, 'RO ', '305', 'Malovat'),
7945
+ (7912, 'RO ', '305', 'Manu'),
7946
+ (7913, 'RO ', '305', 'Marasesti'),
7947
+ (7914, 'RO ', '305', 'Marga'),
7948
+ (7915, 'RO ', '305', 'Marmanu'),
7949
+ (7916, 'RO ', '305', 'Maru Rosu'),
7950
+ (7917, 'RO ', '305', 'Menti'),
7951
+ (7918, 'RO ', '305', 'Meris'),
7952
+ (7919, 'RO ', '305', 'Mijarca'),
7953
+ (7920, 'RO ', '305', 'Moisesti'),
7954
+ (7921, 'RO ', '305', 'Molani'),
7955
+ (7922, 'RO ', '305', 'Mosneni'),
7956
+ (7923, 'RO ', '305', 'Motruleni'),
7957
+ (7924, 'RO ', '305', 'Nadanova'),
7958
+ (7925, 'RO ', '305', 'Negoesti'),
7959
+ (7926, 'RO ', '305', 'Negresti'),
7960
+ (7927, 'RO ', '305', 'Negrusa'),
7961
+ (7928, 'RO ', '305', 'Nevatu'),
7962
+ (7929, 'RO ', '305', 'Nicolae Balcescu'),
7963
+ (7930, 'RO ', '305', 'Noaptesa'),
7964
+ (7931, 'RO ', '305', 'Obarsia de Camp'),
7965
+ (7932, 'RO ', '305', 'Obarsia-Closani'),
7966
+ (7933, 'RO ', '305', 'Ohaba'),
7967
+ (7934, 'RO ', '305', 'Olteanca'),
7968
+ (7935, 'RO ', '305', 'Opranesti'),
7969
+ (7936, 'RO ', '305', 'Oprisor'),
7970
+ (7937, 'RO ', '305', 'Orevita Mare'),
7971
+ (7938, 'RO ', '305', 'Orsova'),
7972
+ (7939, 'RO ', '305', 'Ostrovu Corbului'),
7973
+ (7940, 'RO ', '305', 'Ostrovu Mare'),
7974
+ (7941, 'RO ', '305', 'Padina'),
7975
+ (7942, 'RO ', '305', 'Padina Mare'),
7976
+ (7943, 'RO ', '305', 'Padina Mica'),
7977
+ (7944, 'RO ', '305', 'Paltinisu'),
7978
+ (7945, 'RO ', '305', 'Parlagele'),
7979
+ (7946, 'RO ', '305', 'Parvulesti'),
7980
+ (7947, 'RO ', '305', 'Pasarani'),
7981
+ (7948, 'RO ', '305', 'Patulele'),
7982
+ (7949, 'RO ', '305', 'Paunesti'),
7983
+ (7950, 'RO ', '305', 'Pavat'),
7984
+ (7951, 'RO ', '305', 'Peri'),
7985
+ (7952, 'RO ', '305', 'Pesteana'),
7986
+ (7953, 'RO ', '305', 'Pestenuta'),
7987
+ (7954, 'RO ', '305', 'Petra'),
7988
+ (7955, 'RO ', '305', 'Petris'),
7989
+ (7956, 'RO ', '305', 'Pistrita'),
7990
+ (7957, 'RO ', '305', 'Plai'),
7991
+ (7958, 'RO ', '305', 'Plopi'),
7992
+ (7959, 'RO ', '305', 'Pluta'),
7993
+ (7960, 'RO ', '305', 'Podeni'),
7994
+ (7961, 'RO ', '305', 'Podu Grosului'),
7995
+ (7962, 'RO ', '305', 'Poiana'),
7996
+ (7963, 'RO ', '305', 'Poiana Gruii'),
7997
+ (7964, 'RO ', '305', 'Ponoarele'),
7998
+ (7965, 'RO ', '305', 'Poroina'),
7999
+ (7966, 'RO ', '305', 'Poroina Mare'),
8000
+ (7967, 'RO ', '305', 'Poroinita'),
8001
+ (7968, 'RO ', '305', 'Portile de Fier II'),
8002
+ (7969, 'RO ', '305', 'Posta Veche'),
8003
+ (7970, 'RO ', '305', 'Prejna'),
8004
+ (7971, 'RO ', '305', 'Priboiesti'),
8005
+ (7972, 'RO ', '305', 'Prisaceaua'),
8006
+ (7973, 'RO ', '305', 'Pristol'),
8007
+ (7974, 'RO ', '305', 'Proitesti'),
8008
+ (7975, 'RO ', '305', 'Prunaru'),
8009
+ (7976, 'RO ', '305', 'Prunisor'),
8010
+ (7977, 'RO ', '305', 'Punghina'),
8011
+ (7978, 'RO ', '305', 'Puscasu'),
8012
+ (7979, 'RO ', '305', 'Putinei'),
8013
+ (7980, 'RO ', '305', 'Racova'),
8014
+ (7981, 'RO ', '305', 'Radutesti'),
8015
+ (7982, 'RO ', '305', 'Raiculesti'),
8016
+ (7983, 'RO ', '305', 'Rascolesti'),
8017
+ (7984, 'RO ', '305', 'Recea'),
8018
+ (7985, 'RO ', '305', 'Rocsoreni'),
8019
+ (7986, 'RO ', '305', 'Rogova'),
8020
+ (7987, 'RO ', '305', 'Rosia'),
8021
+ (7988, 'RO ', '305', 'Rosiori'),
8022
+ (7989, 'RO ', '305', 'Rudina'),
8023
+ (7990, 'RO ', '305', 'Runcusoru'),
8024
+ (7991, 'RO ', '305', 'Ruptura'),
8025
+ (7992, 'RO ', '305', 'Salatruc'),
8026
+ (7993, 'RO ', '305', 'Salcia'),
8027
+ (7994, 'RO ', '305', 'Sardanesti'),
8028
+ (7995, 'RO ', '305', 'Satu Mare'),
8029
+ (7996, 'RO ', '305', 'Satu Nou'),
8030
+ (7997, 'RO ', '305', 'Scapau'),
8031
+ (7998, 'RO ', '305', 'Schela Cladovei'),
8032
+ (7999, 'RO ', '305', 'Schinteiesti'),
8033
+ (8000, 'RO ', '305', 'Schitu Topolnitei'),
8034
+ (8001, 'RO ', '305', 'Scorila'),
8035
+ (8002, 'RO ', '305', 'Selistea'),
8036
+ (8003, 'RO ', '305', 'Selisteni'),
8037
+ (8004, 'RO ', '305', 'Selistiuta'),
8038
+ (8005, 'RO ', '305', 'Severinesti'),
8039
+ (8006, 'RO ', '305', 'Sfodea'),
8040
+ (8007, 'RO ', '305', 'Simian'),
8041
+ (8008, 'RO ', '305', 'Sipotu (Ponoarele)'),
8042
+ (8009, 'RO ', '305', 'Sipotu (Poroina Mare)'),
8043
+ (8010, 'RO ', '305', 'Siroca'),
8044
+ (8011, 'RO ', '305', 'Sisesti'),
8045
+ (8012, 'RO ', '305', 'Slasoma'),
8046
+ (8013, 'RO ', '305', 'Slatinicu Mare'),
8047
+ (8014, 'RO ', '305', 'Slatinicu Mic'),
8048
+ (8015, 'RO ', '305', 'Smadovita'),
8049
+ (8016, 'RO ', '305', 'Sovarna'),
8050
+ (8017, 'RO ', '305', 'Sperlesti'),
8051
+ (8018, 'RO ', '305', 'Stancesti'),
8052
+ (8019, 'RO ', '305', 'Stanesti'),
8053
+ (8020, 'RO ', '305', 'Stangaceaua'),
8054
+ (8021, 'RO ', '305', 'Stefan Odobleja'),
8055
+ (8022, 'RO ', '305', 'Stejaru'),
8056
+ (8023, 'RO ', '305', 'Stignita'),
8057
+ (8024, 'RO ', '305', 'Stircovita'),
8058
+ (8025, 'RO ', '305', 'Strehaia'),
8059
+ (8026, 'RO ', '305', 'Stroesti'),
8060
+ (8027, 'RO ', '305', 'Studina'),
8061
+ (8028, 'RO ', '305', 'Suharu'),
8062
+ (8029, 'RO ', '305', 'Susita (Breznita-Ocol)'),
8063
+ (8030, 'RO ', '305', 'susita (Grozesti)'),
8064
+ (8031, 'RO ', '305', 'Svinita'),
8065
+ (8032, 'RO ', '305', 'Talapanu'),
8066
+ (8033, 'RO ', '305', 'Tamna'),
8067
+ (8034, 'RO ', '305', 'Tantaru'),
8068
+ (8035, 'RO ', '305', 'Tarsa'),
8069
+ (8036, 'RO ', '305', 'Tiganasi'),
8070
+ (8037, 'RO ', '305', 'Tismana'),
8071
+ (8038, 'RO ', '305', 'Titerlesti'),
8072
+ (8039, 'RO ', '305', 'Titirigi'),
8073
+ (8040, 'RO ', '305', 'Traian'),
8074
+ (8041, 'RO ', '305', 'Turtaba'),
8075
+ (8042, 'RO ', '305', 'Valea Anilor'),
8076
+ (8043, 'RO ', '305', 'Valea Buna'),
8077
+ (8044, 'RO ', '305', 'Valea Copcii'),
8078
+ (8045, 'RO ', '305', 'Valea Cosustei'),
8079
+ (8046, 'RO ', '305', 'Valea Marcului'),
8080
+ (8047, 'RO ', '305', 'Valea Petrii'),
8081
+ (8048, 'RO ', '305', 'Valea Teiului'),
8082
+ (8049, 'RO ', '305', 'Valea Ursului (Ponoarele)'),
8083
+ (8050, 'RO ', '305', 'Valea Ursului (Tamna)'),
8084
+ (8051, 'RO ', '305', 'Vanatori'),
8085
+ (8052, 'RO ', '305', 'Vanju Mare'),
8086
+ (8053, 'RO ', '305', 'Vanjulet'),
8087
+ (8054, 'RO ', '305', 'Varodia'),
8088
+ (8055, 'RO ', '305', 'Viasu'),
8089
+ (8056, 'RO ', '305', 'Vidimiresti'),
8090
+ (8057, 'RO ', '305', 'Visina'),
8091
+ (8058, 'RO ', '305', 'Vladaia'),
8092
+ (8059, 'RO ', '305', 'Vladasesti'),
8093
+ (8060, 'RO ', '305', 'Vladica'),
8094
+ (8061, 'RO ', '305', 'Voloiac'),
8095
+ (8062, 'RO ', '305', 'Voloicel'),
8096
+ (8063, 'RO ', '305', 'Vrancea'),
8097
+ (8064, 'RO ', '305', 'Vrata'),
8098
+ (8065, 'RO ', '305', 'Zegaia'),
8099
+ (8066, 'RO ', '305', 'Zegujani'),
8100
+ (8067, 'RO ', '306', 'Abud'),
8101
+ (8068, 'RO ', '306', 'Abus'),
8102
+ (8069, 'RO ', '306', 'Acatari'),
8103
+ (8070, 'RO ', '306', 'Adamus'),
8104
+ (8071, 'RO ', '306', 'Adrian'),
8105
+ (8072, 'RO ', '306', 'Agristeu'),
8106
+ (8073, 'RO ', '306', 'Albesti'),
8107
+ (8074, 'RO ', '306', 'Alunis'),
8108
+ (8075, 'RO ', '306', 'Andreneasa'),
8109
+ (8076, 'RO ', '306', 'Apalina'),
8110
+ (8077, 'RO ', '306', 'Apold'),
8111
+ (8078, 'RO ', '306', 'Archita'),
8112
+ (8079, 'RO ', '306', 'Arsita'),
8113
+ (8080, 'RO ', '306', 'Atintis'),
8114
+ (8081, 'RO ', '306', 'Aurel Vlaicu'),
8115
+ (8082, 'RO ', '306', 'Avramesti'),
8116
+ (8083, 'RO ', '306', 'Bagaciu '),
8117
+ (8084, 'RO ', '306', 'Bahnea'),
8118
+ (8085, 'RO ', '306', 'Baita'),
8119
+ (8086, 'RO ', '306', 'Bala'),
8120
+ (8087, 'RO ', '306', 'Balauseri'),
8121
+ (8088, 'RO ', '306', 'Balda'),
8122
+ (8089, 'RO ', '306', 'Band'),
8123
+ (8090, 'RO ', '306', 'Bara'),
8124
+ (8091, 'RO ', '306', 'Barbosi'),
8125
+ (8092, 'RO ', '306', 'Bardesti'),
8126
+ (8093, 'RO ', '306', 'Barza'),
8127
+ (8094, 'RO ', '306', 'Batos'),
8128
+ (8095, 'RO ', '306', 'Bedeni'),
8129
+ (8096, 'RO ', '306', 'Beica de Jos'),
8130
+ (8097, 'RO ', '306', 'Beica de Sus'),
8131
+ (8098, 'RO ', '306', 'Bereni'),
8132
+ (8099, 'RO ', '306', 'Berghia'),
8133
+ (8100, 'RO ', '306', 'Bernadea'),
8134
+ (8101, 'RO ', '306', 'Bezid'),
8135
+ (8102, 'RO ', '306', 'Bicasu'),
8136
+ (8103, 'RO ', '306', 'Bichis'),
8137
+ (8104, 'RO ', '306', 'Bistra Muresului'),
8138
+ (8105, 'RO ', '306', 'Blidireasa'),
8139
+ (8106, 'RO ', '306', 'Bobohalma'),
8140
+ (8107, 'RO ', '306', 'Bogata(Mures)'),
8141
+ (8108, 'RO ', '306', 'Boiu'),
8142
+ (8109, 'RO ', '306', 'Bolintineni'),
8143
+ (8110, 'RO ', '306', 'Bord'),
8144
+ (8111, 'RO ', '306', 'Bordosiu'),
8145
+ (8112, 'RO ', '306', 'Borzia'),
8146
+ (8113, 'RO ', '306', 'Botez'),
8147
+ (8114, 'RO ', '306', 'Botorca'),
8148
+ (8115, 'RO ', '306', 'Bozed'),
8149
+ (8116, 'RO ', '306', 'Bozeni'),
8150
+ (8117, 'RO ', '306', 'Bradetelu'),
8151
+ (8118, 'RO ', '306', 'Brancovenesti'),
8152
+ (8119, 'RO ', '306', 'Breaza'),
8153
+ (8120, 'RO ', '306', 'Budiu Mic'),
8154
+ (8121, 'RO ', '306', 'Cacuciu'),
8155
+ (8122, 'RO ', '306', 'Calimanesti'),
8156
+ (8123, 'RO ', '306', 'Calugareni'),
8157
+ (8124, 'RO ', '306', 'Caluseri'),
8158
+ (8125, 'RO ', '306', 'Campenita'),
8159
+ (8126, 'RO ', '306', 'Campu Cetatii'),
8160
+ (8127, 'RO ', '306', 'Capalna de Sus'),
8161
+ (8128, 'RO ', '306', 'Capusu de Campie'),
8162
+ (8129, 'RO ', '306', 'Casva'),
8163
+ (8130, 'RO ', '306', 'Cecalaca'),
8164
+ (8131, 'RO ', '306', 'cerghid'),
8165
+ (8132, 'RO ', '306', 'Cerghizel'),
8166
+ (8133, 'RO ', '306', 'Ceuas'),
8167
+ (8134, 'RO ', '306', 'Ceuasu de Campie'),
8168
+ (8135, 'RO ', '306', 'Chendu'),
8169
+ (8136, 'RO ', '306', 'Chetani'),
8170
+ (8137, 'RO ', '306', 'Chibed'),
8171
+ (8138, 'RO ', '306', 'Chiheru de Jos'),
8172
+ (8139, 'RO ', '306', 'Chiheru de Sus'),
8173
+ (8140, 'RO ', '306', 'Chinari'),
8174
+ (8141, 'RO ', '306', 'Chirileu'),
8175
+ (8142, 'RO ', '306', 'Cibu'),
8176
+ (8143, 'RO ', '306', 'Cinta'),
8177
+ (8144, 'RO ', '306', 'Cioarga'),
8178
+ (8145, 'RO ', '306', 'Ciobotani'),
8179
+ (8146, 'RO ', '306', 'Cipaieni'),
8180
+ (8147, 'RO ', '306', 'Cipau'),
8181
+ (8148, 'RO ', '306', 'Ciretea'),
8182
+ (8149, 'RO ', '306', 'Cloasterf'),
8183
+ (8150, 'RO ', '306', 'Coasta Grindului'),
8184
+ (8151, 'RO ', '306', 'coasta mare'),
8185
+ (8152, 'RO ', '306', 'Cordos'),
8186
+ (8153, 'RO ', '306', 'Cornesti (Adamus)'),
8187
+ (8154, 'RO ', '306', 'Cornesti (Craciunesti)'),
8188
+ (8155, 'RO ', '306', 'Coroi'),
8189
+ (8156, 'RO ', '306', 'Coroisanmartin'),
8190
+ (8157, 'RO ', '306', 'Corunca'),
8191
+ (8158, 'RO ', '306', 'Cotus'),
8192
+ (8159, 'RO ', '306', 'Cozma'),
8193
+ (8160, 'RO ', '306', 'Craciunesti'),
8194
+ (8161, 'RO ', '306', 'Craiesti'),
8195
+ (8162, 'RO ', '306', 'Craiesti (Adamus)'),
8196
+ (8163, 'RO ', '306', 'Cris'),
8197
+ (8164, 'RO ', '306', 'Cristesti'),
8198
+ (8165, 'RO ', '306', 'Cucerdea'),
8199
+ (8166, 'RO ', '306', 'Cuci'),
8200
+ (8167, 'RO ', '306', 'Cuiesd'),
8201
+ (8168, 'RO ', '306', 'Culpiu'),
8202
+ (8169, 'RO ', '306', 'cund'),
8203
+ (8170, 'RO ', '306', 'Curteni'),
8204
+ (8171, 'RO ', '306', 'Custelnic'),
8205
+ (8172, 'RO ', '306', 'Daia (Apold)'),
8206
+ (8173, 'RO ', '306', 'Daia (Bahnea)'),
8207
+ (8174, 'RO ', '306', 'Dalu'),
8208
+ (8175, 'RO ', '306', 'Dambau'),
8209
+ (8176, 'RO ', '306', 'Dambu'),
8210
+ (8177, 'RO ', '306', 'Damieni'),
8211
+ (8178, 'RO ', '306', 'Danes'),
8212
+ (8179, 'RO ', '306', 'Dataseni'),
8213
+ (8180, 'RO ', '306', 'Deag'),
8214
+ (8181, 'RO ', '306', 'Deaj'),
8215
+ (8182, 'RO ', '306', 'Deda'),
8216
+ (8183, 'RO ', '306', 'Dedrad'),
8217
+ (8184, 'RO ', '306', 'Deleni (Ideciu de Jos)'),
8218
+ (8185, 'RO ', '306', 'Deleni (Pogaceaua)'),
8219
+ (8186, 'RO ', '306', 'DELENII'),
8220
+ (8187, 'RO ', '306', 'Dileu Nou'),
8221
+ (8188, 'RO ', '306', 'Dileu Vechi'),
8222
+ (8189, 'RO ', '306', 'Draculea Bandului'),
8223
+ (8190, 'RO ', '306', 'Drojdii'),
8224
+ (8191, 'RO ', '306', 'Dubistea de Padure'),
8225
+ (8192, 'RO ', '306', 'Dulcea'),
8226
+ (8193, 'RO ', '306', 'Dumbrava'),
8227
+ (8194, 'RO ', '306', 'Dumbravioara'),
8228
+ (8195, 'RO ', '306', 'Dumitreni'),
8229
+ (8196, 'RO ', '306', 'Dupa Deal (Iclanzel)'),
8230
+ (8197, 'RO ', '306', 'Ercea'),
8231
+ (8198, 'RO ', '306', 'Eremieni'),
8232
+ (8199, 'RO ', '306', 'Eremitu'),
8233
+ (8200, 'RO ', '306', 'Ernei'),
8234
+ (8201, 'RO ', '306', 'Fanate (Band)'),
8235
+ (8202, 'RO ', '306', 'Fanate (Taureni)'),
8236
+ (8203, 'RO ', '306', 'Fanatele Madarasului'),
8237
+ (8204, 'RO ', '306', 'Fantanele'),
8238
+ (8205, 'RO ', '306', 'Faragau'),
8239
+ (8206, 'RO ', '306', 'Feleag'),
8240
+ (8207, 'RO ', '306', 'Filea'),
8241
+ (8208, 'RO ', '306', 'Filitelnic'),
8242
+ (8209, 'RO ', '306', 'Filpisu Mare'),
8243
+ (8210, 'RO ', '306', 'Filpisu Mic'),
8244
+ (8211, 'RO ', '306', 'Fitcau'),
8245
+ (8212, 'RO ', '306', 'Frunzeni'),
8246
+ (8213, 'RO ', '306', 'Fundatura'),
8247
+ (8214, 'RO ', '306', 'Fundoaia'),
8248
+ (8215, 'RO ', '306', 'Gaiesti'),
8249
+ (8216, 'RO ', '306', 'Galaoaia'),
8250
+ (8217, 'RO ', '306', 'Galateni'),
8251
+ (8218, 'RO ', '306', 'Galesti'),
8252
+ (8219, 'RO ', '306', 'Gambut'),
8253
+ (8220, 'RO ', '306', 'Ganesti'),
8254
+ (8221, 'RO ', '306', 'Gaura Sangerului'),
8255
+ (8222, 'RO ', '306', 'Gheja'),
8256
+ (8223, 'RO ', '306', 'Gheorghe Doja'),
8257
+ (8224, 'RO ', '306', 'Ghidasteu'),
8258
+ (8225, 'RO ', '306', 'Ghindari'),
8259
+ (8226, 'RO ', '306', 'Ghinesti'),
8260
+ (8227, 'RO ', '306', 'Giulus'),
8261
+ (8228, 'RO ', '306', 'Giurgis'),
8262
+ (8229, 'RO ', '306', 'Glajarie'),
8263
+ (8230, 'RO ', '306', 'Glodeni'),
8264
+ (8231, 'RO ', '306', 'Gogan'),
8265
+ (8232, 'RO ', '306', 'Goreni'),
8266
+ (8233, 'RO ', '306', 'Gornesti'),
8267
+ (8234, 'RO ', '306', 'Grausorul'),
8268
+ (8235, 'RO ', '306', 'Grebenisu de Campie'),
8269
+ (8236, 'RO ', '306', 'Grindeni'),
8270
+ (8237, 'RO ', '306', 'Gruisor'),
8271
+ (8238, 'RO ', '306', 'Gurghiu'),
8272
+ (8239, 'RO ', '306', 'Habic'),
8273
+ (8240, 'RO ', '306', 'Hadareni'),
8274
+ (8241, 'RO ', '306', 'Haranglab'),
8275
+ (8242, 'RO ', '306', 'Hartau'),
8276
+ (8243, 'RO ', '306', 'Herghelia'),
8277
+ (8244, 'RO ', '306', 'Hetiur'),
8278
+ (8245, 'RO ', '306', 'Hodac'),
8279
+ (8246, 'RO ', '306', 'Hodosa'),
8280
+ (8247, 'RO ', '306', 'Ibanesti'),
8281
+ (8248, 'RO ', '306', 'Ibanesti-Padure'),
8282
+ (8249, 'RO ', '306', 'Icland'),
8283
+ (8250, 'RO ', '306', 'Iclandu Mare'),
8284
+ (8251, 'RO ', '306', 'iclanzel'),
8285
+ (8252, 'RO ', '306', 'Ideciu de Jos'),
8286
+ (8253, 'RO ', '306', 'Ideciu de Sus'),
8287
+ (8254, 'RO ', '306', 'Idicel'),
8288
+ (8255, 'RO ', '306', 'Idicel-Padure'),
8289
+ (8256, 'RO ', '306', 'Idiciu'),
8290
+ (8257, 'RO ', '306', 'Idrifaia'),
8291
+ (8258, 'RO ', '306', 'Iernut'),
8292
+ (8259, 'RO ', '306', 'Iernuteni'),
8293
+ (8260, 'RO ', '306', 'Ilieni'),
8294
+ (8261, 'RO ', '306', 'Ilioara'),
8295
+ (8262, 'RO ', '306', 'Iod'),
8296
+ (8263, 'RO ', '306', 'Isla'),
8297
+ (8264, 'RO ', '306', 'Istihaza'),
8298
+ (8265, 'RO ', '306', 'Ivanesti'),
8299
+ (8266, 'RO ', '306', 'Jabenita'),
8300
+ (8267, 'RO ', '306', 'Jacodu'),
8301
+ (8268, 'RO ', '306', 'Lapusna'),
8302
+ (8269, 'RO ', '306', 'Lascud'),
8303
+ (8270, 'RO ', '306', 'laslau mare'),
8304
+ (8271, 'RO ', '306', 'Laslau Mic'),
8305
+ (8272, 'RO ', '306', 'Laureni'),
8306
+ (8273, 'RO ', '306', 'Lechincioara'),
8307
+ (8274, 'RO ', '306', 'Lechinta'),
8308
+ (8275, 'RO ', '306', 'Lenis'),
8309
+ (8276, 'RO ', '306', 'Leordeni'),
8310
+ (8277, 'RO ', '306', 'Lepindea'),
8311
+ (8278, 'RO ', '306', 'Lint'),
8312
+ (8279, 'RO ', '306', 'Livezeni'),
8313
+ (8280, 'RO ', '306', 'Logig'),
8314
+ (8281, 'RO ', '306', 'Ludus'),
8315
+ (8282, 'RO ', '306', 'Luieriu'),
8316
+ (8283, 'RO ', '306', 'Lunca'),
8317
+ (8284, 'RO ', '306', 'Lunca Bradului'),
8318
+ (8285, 'RO ', '306', 'Lunca Muresului'),
8319
+ (8286, 'RO ', '306', 'Macicasesti'),
8320
+ (8287, 'RO ', '306', 'Madaras'),
8321
+ (8288, 'RO ', '306', 'madaraseni'),
8322
+ (8289, 'RO ', '306', 'Magherani'),
8323
+ (8290, 'RO ', '306', 'Magherus'),
8324
+ (8291, 'RO ', '306', 'Maia'),
8325
+ (8292, 'RO ', '306', 'Maiad'),
8326
+ (8293, 'RO ', '306', 'Maioresti'),
8327
+ (8294, 'RO ', '306', 'Malea'),
8328
+ (8295, 'RO ', '306', 'Marasesti'),
8329
+ (8296, 'RO ', '306', 'Marculeni'),
8330
+ (8297, 'RO ', '306', 'Matrici'),
8331
+ (8298, 'RO ', '306', 'Merisor'),
8332
+ (8299, 'RO ', '306', 'Mestera'),
8333
+ (8300, 'RO ', '306', 'Mica'),
8334
+ (8301, 'RO ', '306', 'Miercurea Nirajului'),
8335
+ (8302, 'RO ', '306', 'Mihai Viteazu'),
8336
+ (8303, 'RO ', '306', 'Mihesu de Campie'),
8337
+ (8304, 'RO ', '306', 'Mitresti'),
8338
+ (8305, 'RO ', '306', 'Moara de Jos'),
8339
+ (8306, 'RO ', '306', 'Moisa'),
8340
+ (8307, 'RO ', '306', 'Morareni'),
8341
+ (8308, 'RO ', '306', 'Moresti'),
8342
+ (8309, 'RO ', '306', 'Mosuni'),
8343
+ (8310, 'RO ', '306', 'Mureni'),
8344
+ (8311, 'RO ', '306', 'Murgesti'),
8345
+ (8312, 'RO ', '306', 'Nadasa'),
8346
+ (8313, 'RO ', '306', 'Nades'),
8347
+ (8314, 'RO ', '306', 'Nandra'),
8348
+ (8315, 'RO ', '306', 'Nazna'),
8349
+ (8316, 'RO ', '306', 'Neagra'),
8350
+ (8317, 'RO ', '306', 'Neaua'),
8351
+ (8318, 'RO ', '306', 'Negrenii de Campie'),
8352
+ (8319, 'RO ', '306', 'Odrihei'),
8353
+ (8320, 'RO ', '306', 'Ogra'),
8354
+ (8321, 'RO ', '306', 'Ormenis'),
8355
+ (8322, 'RO ', '306', 'Oroiu'),
8356
+ (8323, 'RO ', '306', 'Orosia'),
8357
+ (8324, 'RO ', '306', 'Orsova'),
8358
+ (8325, 'RO ', '306', 'Orsova-Padure'),
8359
+ (8326, 'RO ', '306', 'Ozd'),
8360
+ (8327, 'RO ', '306', 'Pacureni'),
8361
+ (8328, 'RO ', '306', 'Padureni'),
8362
+ (8329, 'RO ', '306', 'paingeni'),
8363
+ (8330, 'RO ', '306', 'Panet'),
8364
+ (8331, 'RO ', '306', 'Papiu Ilarian'),
8365
+ (8332, 'RO ', '306', 'Pasareni'),
8366
+ (8333, 'RO ', '306', 'Paucisoara'),
8367
+ (8334, 'RO ', '306', 'Pauloaia'),
8368
+ (8335, 'RO ', '306', 'Peris'),
8369
+ (8336, 'RO ', '306', 'Petea'),
8370
+ (8337, 'RO ', '306', 'Petelea'),
8371
+ (8338, 'RO ', '306', 'Petrilaca'),
8372
+ (8339, 'RO ', '306', 'Petrilaca de Mures'),
8373
+ (8340, 'RO ', '306', 'Pietris'),
8374
+ (8341, 'RO ', '306', 'Pipea'),
8375
+ (8342, 'RO ', '306', 'Poarta'),
8376
+ (8343, 'RO ', '306', 'Poduri'),
8377
+ (8344, 'RO ', '306', 'Pogaceaua'),
8378
+ (8345, 'RO ', '306', 'Poienita'),
8379
+ (8346, 'RO ', '306', 'Porumbeni'),
8380
+ (8347, 'RO ', '306', 'Pusta'),
8381
+ (8348, 'RO ', '306', 'Racamet'),
8382
+ (8349, 'RO ', '306', 'Raciu'),
8383
+ (8350, 'RO ', '306', 'Ranta'),
8384
+ (8351, 'RO ', '306', 'Rapa de Jos'),
8385
+ (8352, 'RO ', '306', 'Rastolita'),
8386
+ (8353, 'RO ', '306', 'Razoare'),
8387
+ (8354, 'RO ', '306', 'Recea'),
8388
+ (8355, 'RO ', '306', 'Reghin'),
8389
+ (8356, 'RO ', '306', 'Remetea'),
8390
+ (8357, 'RO ', '306', 'Rora'),
8391
+ (8358, 'RO ', '306', 'Roteni'),
8392
+ (8359, 'RO ', '306', 'Rusii-Munti'),
8393
+ (8360, 'RO ', '306', 'Sabed'),
8394
+ (8361, 'RO ', '306', 'Sacalu de Padure'),
8395
+ (8362, 'RO ', '306', 'Sacareni'),
8396
+ (8363, 'RO ', '306', 'Saes'),
8397
+ (8364, 'RO ', '306', 'Salard'),
8398
+ (8365, 'RO ', '306', 'Salasuri'),
8399
+ (8366, 'RO ', '306', 'Salcud'),
8400
+ (8367, 'RO ', '306', 'Sambrias'),
8401
+ (8368, 'RO ', '306', 'Sancraiu de Mures'),
8402
+ (8369, 'RO ', '306', 'Sangeorgiu de Mures'),
8403
+ (8370, 'RO ', '306', 'Sangeorgiu de Padure'),
8404
+ (8371, 'RO ', '306', 'Sanger'),
8405
+ (8372, 'RO ', '306', 'Sangeru de Padure'),
8406
+ (8373, 'RO ', '306', 'Saniacob'),
8407
+ (8374, 'RO ', '306', 'Sanisor'),
8408
+ (8375, 'RO ', '306', 'Sanmarghita'),
8409
+ (8376, 'RO ', '306', 'Sanmartinu de Campie'),
8410
+ (8377, 'RO ', '306', 'Sanmihai de Padure'),
8411
+ (8378, 'RO ', '306', 'Sanpaul'),
8412
+ (8379, 'RO ', '306', 'Sanpetru de Campie'),
8413
+ (8380, 'RO ', '306', 'Sansimion'),
8414
+ (8381, 'RO ', '306', 'santana de mures'),
8415
+ (8382, 'RO ', '306', 'Santioana'),
8416
+ (8383, 'RO ', '306', 'Santioana de Mures'),
8417
+ (8384, 'RO ', '306', 'Santu'),
8418
+ (8385, 'RO ', '306', 'Sanvasii'),
8419
+ (8386, 'RO ', '306', 'Sarateni'),
8420
+ (8387, 'RO ', '306', 'Sardu Nirajului'),
8421
+ (8388, 'RO ', '306', 'Sarmasel'),
8422
+ (8389, 'RO ', '306', 'Sarmasel-Gara'),
8423
+ (8390, 'RO ', '306', 'Sarmasu'),
8424
+ (8391, 'RO ', '306', 'Saschiz'),
8425
+ (8392, 'RO ', '306', 'Satu Nou (Gheorghe Doja)'),
8426
+ (8393, 'RO ', '306', 'Satu Nou (Sanpetru de Campie)'),
8427
+ (8394, 'RO ', '306', 'Saulia'),
8428
+ (8395, 'RO ', '306', 'Sausa'),
8429
+ (8396, 'RO ', '306', 'Sebes'),
8430
+ (8397, 'RO ', '306', 'Seleus (Danes)'),
8431
+ (8398, 'RO ', '306', 'Seleus (Zagar)'),
8432
+ (8399, 'RO ', '306', 'Senereus'),
8433
+ (8400, 'RO ', '306', 'Serbeni'),
8434
+ (8401, 'RO ', '306', 'Seuca'),
8435
+ (8402, 'RO ', '306', 'Seulia de Mures'),
8436
+ (8403, 'RO ', '306', 'Sighisoara'),
8437
+ (8404, 'RO ', '306', 'Silea Nirajului'),
8438
+ (8405, 'RO ', '306', 'Sincai'),
8439
+ (8406, 'RO ', '306', 'Sincai-Fanate'),
8440
+ (8407, 'RO ', '306', 'Soard'),
8441
+ (8408, 'RO ', '306', 'Socolu de Campie'),
8442
+ (8409, 'RO ', '306', 'Soimus'),
8443
+ (8410, 'RO ', '306', 'Solocma'),
8444
+ (8411, 'RO ', '306', 'Solovastru'),
8445
+ (8412, 'RO ', '306', 'Somostelnic'),
8446
+ (8413, 'RO ', '306', 'Soromiclea'),
8447
+ (8414, 'RO ', '306', 'Sovata'),
8448
+ (8415, 'RO ', '306', 'Stanceni'),
8449
+ (8416, 'RO ', '306', 'Stejarenii'),
8450
+ (8417, 'RO ', '306', 'Stejeris'),
8451
+ (8418, 'RO ', '306', 'Suplac'),
8452
+ (8419, 'RO ', '306', 'Suseni'),
8453
+ (8420, 'RO ', '306', 'Suveica'),
8454
+ (8421, 'RO ', '306', 'Tablaseni'),
8455
+ (8422, 'RO ', '306', 'Tampa'),
8456
+ (8423, 'RO ', '306', 'Targu Mures'),
8457
+ (8424, 'RO ', '306', 'Tarnaveni'),
8458
+ (8425, 'RO ', '306', 'Tau'),
8459
+ (8426, 'RO ', '306', 'Taureni'),
8460
+ (8427, 'RO ', '306', 'Teleac'),
8461
+ (8428, 'RO ', '306', 'Tigmandru'),
8462
+ (8429, 'RO ', '306', 'Tireu'),
8463
+ (8430, 'RO ', '306', 'Tirimia'),
8464
+ (8431, 'RO ', '306', 'Tirimioara'),
8465
+ (8432, 'RO ', '306', 'Tisieu'),
8466
+ (8433, 'RO ', '306', 'Toaca'),
8467
+ (8434, 'RO ', '306', 'Tofalau'),
8468
+ (8435, 'RO ', '306', 'Tonciu'),
8469
+ (8436, 'RO ', '306', 'Topa'),
8470
+ (8437, 'RO ', '306', 'Torba'),
8471
+ (8438, 'RO ', '306', 'Trei Sate'),
8472
+ (8439, 'RO ', '306', 'Troita'),
8473
+ (8440, 'RO ', '306', 'Tusinu'),
8474
+ (8441, 'RO ', '306', 'Uila'),
8475
+ (8442, 'RO ', '306', 'Ulies'),
8476
+ (8443, 'RO ', '306', 'Ungheni'),
8477
+ (8444, 'RO ', '306', 'Urisiu de Jos'),
8478
+ (8445, 'RO ', '306', 'Urisiu de Sus'),
8479
+ (8446, 'RO ', '306', 'vadas'),
8480
+ (8447, 'RO ', '306', 'Vadu'),
8481
+ (8448, 'RO ', '306', 'Valea'),
8482
+ (8449, 'RO ', '306', 'Valea Izvoarelor'),
8483
+ (8450, 'RO ', '306', 'Valea Larga'),
8484
+ (8451, 'RO ', '306', 'Valea Mare'),
8485
+ (8452, 'RO ', '306', 'Valea Padurii'),
8486
+ (8453, 'RO ', '306', 'Valea Sanpetrului (Grebenisu de Campie)'),
8487
+ (8454, 'RO ', '306', 'Valea Surii'),
8488
+ (8455, 'RO ', '306', 'valeni'),
8489
+ (8456, 'RO ', '306', 'Valenii de Mures'),
8490
+ (8457, 'RO ', '306', 'Valureni'),
8491
+ (8458, 'RO ', '306', 'Vanatori'),
8492
+ (8459, 'RO ', '306', 'Vargata'),
8493
+ (8460, 'RO ', '306', 'Vatava'),
8494
+ (8461, 'RO ', '306', 'Venchi'),
8495
+ (8462, 'RO ', '306', 'Vetca'),
8496
+ (8463, 'RO ', '306', 'Vidrasau'),
8497
+ (8464, 'RO ', '306', 'Viforoasa'),
8498
+ (8465, 'RO ', '306', 'Viisoara'),
8499
+ (8466, 'RO ', '306', 'Visinelu'),
8500
+ (8467, 'RO ', '306', 'Voiniceni'),
8501
+ (8468, 'RO ', '306', 'Voivodeni'),
8502
+ (8469, 'RO ', '306', 'Vulcan'),
8503
+ (8470, 'RO ', '306', 'Zagar'),
8504
+ (8471, 'RO ', '306', 'Zapodea'),
8505
+ (8472, 'RO ', '306', 'Zau de Campie'),
8506
+ (8473, 'RO ', '306', 'Zimti'),
8507
+ (8474, 'RO ', '307', 'Adjudeni'),
8508
+ (8475, 'RO ', '307', 'Agapia'),
8509
+ (8476, 'RO ', '307', 'Agapia-Manastire'),
8510
+ (8477, 'RO ', '307', 'Agarcia'),
8511
+ (8478, 'RO ', '307', 'Alexandru cel Bun'),
8512
+ (8479, 'RO ', '307', 'Almas'),
8513
+ (8480, 'RO ', '307', 'Ardeluta'),
8514
+ (8481, 'RO ', '307', 'Averesti'),
8515
+ (8482, 'RO ', '307', 'Bahna'),
8516
+ (8483, 'RO ', '307', 'Bahna Mare'),
8517
+ (8484, 'RO ', '307', 'Bahnisoara'),
8518
+ (8485, 'RO ', '307', 'Balanesti'),
8519
+ (8486, 'RO ', '307', 'Baltatesti'),
8520
+ (8487, 'RO ', '307', 'Balusesti (Dochia)'),
8521
+ (8488, 'RO ', '307', 'Balusesti (Icusesti)'),
8522
+ (8489, 'RO ', '307', 'Baneasa'),
8523
+ (8490, 'RO ', '307', 'Bara'),
8524
+ (8491, 'RO ', '307', 'Baratca'),
8525
+ (8492, 'RO ', '307', 'Barcanesti'),
8526
+ (8493, 'RO ', '307', 'Bargauani'),
8527
+ (8494, 'RO ', '307', 'Barjoveni'),
8528
+ (8495, 'RO ', '307', 'Barticesti'),
8529
+ (8496, 'RO ', '307', 'Basta'),
8530
+ (8497, 'RO ', '307', 'Bicaz'),
8531
+ (8498, 'RO ', '307', 'Bicaz-Chei'),
8532
+ (8499, 'RO ', '307', 'Bicazu Ardelean'),
8533
+ (8500, 'RO ', '307', 'Bisericani'),
8534
+ (8501, 'RO ', '307', 'Bistricioara'),
8535
+ (8502, 'RO ', '307', 'Bistrita'),
8536
+ (8503, 'RO ', '307', 'Boboiesti'),
8537
+ (8504, 'RO ', '307', 'Bodesti '),
8538
+ (8505, 'RO ', '307', 'Bodestii de Jos '),
8539
+ (8506, 'RO ', '307', 'Boghicea'),
8540
+ (8507, 'RO ', '307', 'Boistea'),
8541
+ (8508, 'RO ', '307', 'Borca'),
8542
+ (8509, 'RO ', '307', 'Bordea'),
8543
+ (8510, 'RO ', '307', 'Borlesti'),
8544
+ (8511, 'RO ', '307', 'Borseni'),
8545
+ (8512, 'RO ', '307', 'Botesti'),
8546
+ (8513, 'RO ', '307', 'Botesti(Girov)'),
8547
+ (8514, 'RO ', '307', 'Bozieni'),
8548
+ (8515, 'RO ', '307', 'Bozienii de Sus'),
8549
+ (8516, 'RO ', '307', 'Bradu'),
8550
+ (8517, 'RO ', '307', 'Brasauti'),
8551
+ (8518, 'RO ', '307', 'Brates'),
8552
+ (8519, 'RO ', '307', 'Brosteni'),
8553
+ (8520, 'RO ', '307', 'Brusturi'),
8554
+ (8521, 'RO ', '307', 'Bucium'),
8555
+ (8522, 'RO ', '307', 'Budesti'),
8556
+ (8523, 'RO ', '307', 'Buhalnita'),
8557
+ (8524, 'RO ', '307', 'Buhonca'),
8558
+ (8525, 'RO ', '307', 'Bunghi'),
8559
+ (8526, 'RO ', '307', 'Buruienesti'),
8560
+ (8527, 'RO ', '307', 'Butnaresti'),
8561
+ (8528, 'RO ', '307', 'Caciulesti'),
8562
+ (8529, 'RO ', '307', 'Calugareni'),
8563
+ (8530, 'RO ', '307', 'Candesti'),
8564
+ (8531, 'RO ', '307', 'Capsa'),
8565
+ (8532, 'RO ', '307', 'Carlig'),
8566
+ (8533, 'RO ', '307', 'Carligi'),
8567
+ (8534, 'RO ', '307', 'Casaria'),
8568
+ (8535, 'RO ', '307', 'Causeni'),
8569
+ (8536, 'RO ', '307', 'Cazaci'),
8570
+ (8537, 'RO ', '307', 'Ceahlau'),
8571
+ (8538, 'RO ', '307', 'Certieni'),
8572
+ (8539, 'RO ', '307', 'Chilii'),
8573
+ (8540, 'RO ', '307', 'Chintinici'),
8574
+ (8541, 'RO ', '307', 'Chiriteni'),
8575
+ (8542, 'RO ', '307', 'Climesti'),
8576
+ (8543, 'RO ', '307', 'Cordun'),
8577
+ (8544, 'RO ', '307', 'Corhana'),
8578
+ (8545, 'RO ', '307', 'Corni'),
8579
+ (8546, 'RO ', '307', 'Costisa'),
8580
+ (8547, 'RO ', '307', 'Cotu Vames'),
8581
+ (8548, 'RO ', '307', 'Cracaoani'),
8582
+ (8549, 'RO ', '307', 'Cracaul Negru'),
8583
+ (8550, 'RO ', '307', 'Craiesti'),
8584
+ (8551, 'RO ', '307', 'Cuejdiu'),
8585
+ (8552, 'RO ', '307', 'Curechistea'),
8586
+ (8553, 'RO ', '307', 'Cut'),
8587
+ (8554, 'RO ', '307', 'Damuc'),
8588
+ (8555, 'RO ', '307', 'Danesti'),
8589
+ (8556, 'RO ', '307', 'David'),
8590
+ (8557, 'RO ', '307', 'Davideni'),
8591
+ (8558, 'RO ', '307', 'Dobreni'),
8592
+ (8559, 'RO ', '307', 'Dochia'),
8593
+ (8560, 'RO ', '307', 'Dodeni'),
8594
+ (8561, 'RO ', '307', 'Doina'),
8595
+ (8562, 'RO ', '307', 'Dolhesti'),
8596
+ (8563, 'RO ', '307', 'Doljesti'),
8597
+ (8564, 'RO ', '307', 'Draganesti'),
8598
+ (8565, 'RO ', '307', 'Dragomiresti'),
8599
+ (8566, 'RO ', '307', 'Dragova'),
8600
+ (8567, 'RO ', '307', 'Dreptu'),
8601
+ (8568, 'RO ', '307', 'Dulcesti'),
8602
+ (8569, 'RO ', '307', 'Dumbrava'),
8603
+ (8570, 'RO ', '307', 'Dumbrava Rosie'),
8604
+ (8571, 'RO ', '307', 'Dumbrava-Deal'),
8605
+ (8572, 'RO ', '307', 'Durau'),
8606
+ (8573, 'RO ', '307', 'Farcasa'),
8607
+ (8574, 'RO ', '307', 'Faurei'),
8608
+ (8575, 'RO ', '307', 'Filioara'),
8609
+ (8576, 'RO ', '307', 'Frumosu'),
8610
+ (8577, 'RO ', '307', 'Frunzeni'),
8611
+ (8578, 'RO ', '307', 'Gadinti'),
8612
+ (8579, 'RO ', '307', 'Galu'),
8613
+ (8580, 'RO ', '307', 'Garcina'),
8614
+ (8581, 'RO ', '307', 'Gheraesti'),
8615
+ (8582, 'RO ', '307', 'Gheraestii Noi'),
8616
+ (8583, 'RO ', '307', 'Ghidion'),
8617
+ (8584, 'RO ', '307', 'Ghigoiesti'),
8618
+ (8585, 'RO ', '307', 'Ghindaoani'),
8619
+ (8586, 'RO ', '307', 'Girov'),
8620
+ (8587, 'RO ', '307', 'Giulesti'),
8621
+ (8588, 'RO ', '307', 'Giurgeni'),
8622
+ (8589, 'RO ', '307', 'Gorun'),
8623
+ (8590, 'RO ', '307', 'Gosmani'),
8624
+ (8591, 'RO ', '307', 'Grinties'),
8625
+ (8592, 'RO ', '307', 'Grosi'),
8626
+ (8593, 'RO ', '307', 'Grozavesti'),
8627
+ (8594, 'RO ', '307', 'Grumazesti'),
8628
+ (8595, 'RO ', '307', 'Gura Vaii'),
8629
+ (8596, 'RO ', '307', 'Hangu'),
8630
+ (8597, 'RO ', '307', 'Hartesti'),
8631
+ (8598, 'RO ', '307', 'Hartop'),
8632
+ (8599, 'RO ', '307', 'Hlapesti'),
8633
+ (8600, 'RO ', '307', 'Hociungi'),
8634
+ (8601, 'RO ', '307', 'Hoisesti'),
8635
+ (8602, 'RO ', '307', 'Horia'),
8636
+ (8603, 'RO ', '307', 'Huisurez'),
8637
+ (8604, 'RO ', '307', 'Humulesti'),
8638
+ (8605, 'RO ', '307', 'Humulestii Noi'),
8639
+ (8606, 'RO ', '307', 'Icusesti'),
8640
+ (8607, 'RO ', '307', 'Ingaresti'),
8641
+ (8608, 'RO ', '307', 'Ion Creanga'),
8642
+ (8609, 'RO ', '307', 'Iucsa'),
8643
+ (8610, 'RO ', '307', 'Ivanes'),
8644
+ (8611, 'RO ', '307', 'Izvoare (Bahna)'),
8645
+ (8612, 'RO ', '307', 'Izvoare (Dumbrava Rosie)'),
8646
+ (8613, 'RO ', '307', 'Izvoru'),
8647
+ (8614, 'RO ', '307', 'Izvoru Alb'),
8648
+ (8615, 'RO ', '307', 'Izvoru Muntelui'),
8649
+ (8616, 'RO ', '307', 'Leghin'),
8650
+ (8617, 'RO ', '307', 'Luminis'),
8651
+ (8618, 'RO ', '307', 'Lunca (Borca)'),
8652
+ (8619, 'RO ', '307', 'Lunca (Vanatori-Neamt)'),
8653
+ (8620, 'RO ', '307', 'Lunca Moldovei'),
8654
+ (8621, 'RO ', '307', 'Lutca'),
8655
+ (8622, 'RO ', '307', 'Madei'),
8656
+ (8623, 'RO ', '307', 'Magazia'),
8657
+ (8624, 'RO ', '307', 'Manastirea Neamt'),
8658
+ (8625, 'RO ', '307', 'Manoaia'),
8659
+ (8626, 'RO ', '307', 'Margineni'),
8660
+ (8627, 'RO ', '307', 'Mastacan (Borlesti)'),
8661
+ (8628, 'RO ', '307', 'Miron Costin'),
8662
+ (8629, 'RO ', '307', 'Mitocu Balan'),
8663
+ (8630, 'RO ', '307', 'Moldoveni'),
8664
+ (8631, 'RO ', '307', 'Muncelu de Jos'),
8665
+ (8632, 'RO ', '307', 'Munteni'),
8666
+ (8633, 'RO ', '307', 'Neagra'),
8667
+ (8634, 'RO ', '307', 'Nechit'),
8668
+ (8635, 'RO ', '307', 'Negresti'),
8669
+ (8636, 'RO ', '307', 'Negresti (Bara)'),
8670
+ (8637, 'RO ', '307', 'Negulesti'),
8671
+ (8638, 'RO ', '307', 'Nemtisor'),
8672
+ (8639, 'RO ', '307', 'Nisiporesti'),
8673
+ (8640, 'RO ', '307', 'Oantu'),
8674
+ (8641, 'RO ', '307', 'Oglinzi'),
8675
+ (8642, 'RO ', '307', 'Oniceni'),
8676
+ (8643, 'RO ', '307', 'Oslobeni'),
8677
+ (8644, 'RO ', '307', 'Pancesti'),
8678
+ (8645, 'RO ', '307', 'Pangaracior'),
8679
+ (8646, 'RO ', '307', 'Pangarati'),
8680
+ (8647, 'RO ', '307', 'Paraul Carjei'),
8681
+ (8648, 'RO ', '307', 'Paraul Fagului'),
8682
+ (8649, 'RO ', '307', 'Paraul Pantei'),
8683
+ (8650, 'RO ', '307', 'Pastraveni'),
8684
+ (8651, 'RO ', '307', 'Pataligeni'),
8685
+ (8652, 'RO ', '307', 'Petricani'),
8686
+ (8653, 'RO ', '307', 'Petru Voda'),
8687
+ (8654, 'RO ', '307', 'Piatra Soimului'),
8688
+ (8655, 'RO ', '307', 'Piatra-Neamt'),
8689
+ (8656, 'RO ', '307', 'Pietrosu '),
8690
+ (8657, 'RO ', '307', 'Pildesti'),
8691
+ (8658, 'RO ', '307', 'Pipirig'),
8692
+ (8659, 'RO ', '307', 'Plaiesu'),
8693
+ (8660, 'RO ', '307', 'Pluton'),
8694
+ (8661, 'RO ', '307', 'Podoleni'),
8695
+ (8662, 'RO ', '307', 'Poiana (Brusturi)'),
8696
+ (8663, 'RO ', '307', 'Poiana (Grinties)'),
8697
+ (8664, 'RO ', '307', 'Poiana (Negresti)'),
8698
+ (8665, 'RO ', '307', 'Poiana (Pangarati)'),
8699
+ (8666, 'RO ', '307', 'Poiana Cracaoani'),
8700
+ (8667, 'RO ', '307', 'Poiana Humei'),
8701
+ (8668, 'RO ', '307', 'Poiana Largului'),
8702
+ (8669, 'RO ', '307', 'Poiana Teiului'),
8703
+ (8670, 'RO ', '307', 'Poienari'),
8704
+ (8671, 'RO ', '307', 'Poieni'),
8705
+ (8672, 'RO ', '307', 'Poienile Oancei'),
8706
+ (8673, 'RO ', '307', 'Poloboc'),
8707
+ (8674, 'RO ', '307', 'Popesti (Farcasa)'),
8708
+ (8675, 'RO ', '307', 'Popesti (Girov)'),
8709
+ (8676, 'RO ', '307', 'Potoci'),
8710
+ (8677, 'RO ', '307', 'Preluca'),
8711
+ (8678, 'RO ', '307', 'Preutesti'),
8712
+ (8679, 'RO ', '307', 'Radeni'),
8713
+ (8680, 'RO ', '307', 'Raucesti'),
8714
+ (8681, 'RO ', '307', 'Razboieni'),
8715
+ (8682, 'RO ', '307', 'Razboienii de Jos'),
8716
+ (8683, 'RO ', '307', 'Recea'),
8717
+ (8684, 'RO ', '307', 'Rediu'),
8718
+ (8685, 'RO ', '307', 'Rocna'),
8719
+ (8686, 'RO ', '307', 'Roman'),
8720
+ (8687, 'RO ', '307', 'Romani'),
8721
+ (8688, 'RO ', '307', 'Rosiori'),
8722
+ (8689, 'RO ', '307', 'Rotunda'),
8723
+ (8690, 'RO ', '307', 'Roznov'),
8724
+ (8691, 'RO ', '307', 'Ruginesti'),
8725
+ (8692, 'RO ', '307', 'Ruginoasa'),
8726
+ (8693, 'RO ', '307', 'Ruseni (Borlesti)'),
8727
+ (8694, 'RO ', '307', 'Ruseni (Poiana Teiului)'),
8728
+ (8695, 'RO ', '307', 'Sabaoani'),
8729
+ (8696, 'RO ', '307', 'Sabasa'),
8730
+ (8697, 'RO ', '307', 'Sacalusesti'),
8731
+ (8698, 'RO ', '307', 'Sagna'),
8732
+ (8699, 'RO ', '307', 'Sarata'),
8733
+ (8700, 'RO ', '307', 'Savesti'),
8734
+ (8701, 'RO ', '307', 'Savinesti'),
8735
+ (8702, 'RO ', '307', 'Savinesti (Poiana Teiului)'),
8736
+ (8703, 'RO ', '307', 'Scaricica'),
8737
+ (8704, 'RO ', '307', 'Schitu Tarcau'),
8738
+ (8705, 'RO ', '307', 'Secu'),
8739
+ (8706, 'RO ', '307', 'Secuieni'),
8740
+ (8707, 'RO ', '307', 'Secuienii Noi'),
8741
+ (8708, 'RO ', '307', 'Silistea'),
8742
+ (8709, 'RO ', '307', 'Simionesti'),
8743
+ (8710, 'RO ', '307', 'Slobozia (Boghicea)'),
8744
+ (8711, 'RO ', '307', 'Slobozia (Roznov)'),
8745
+ (8712, 'RO ', '307', 'Socea'),
8746
+ (8713, 'RO ', '307', 'Soci (Borca)'),
8747
+ (8714, 'RO ', '307', 'Soci (stefan cel Mare)'),
8748
+ (8715, 'RO ', '307', 'Soimaresti'),
8749
+ (8716, 'RO ', '307', 'Solca'),
8750
+ (8717, 'RO ', '307', 'Spiridonesti'),
8751
+ (8718, 'RO ', '307', 'Stanca'),
8752
+ (8719, 'RO ', '307', 'Stanita'),
8753
+ (8720, 'RO ', '307', 'Stefan cel Mare'),
8754
+ (8721, 'RO ', '307', 'Stejaru (Farcasa)'),
8755
+ (8722, 'RO ', '307', 'Stejaru (Ion Creanga)'),
8756
+ (8723, 'RO ', '307', 'Stejaru (Pangarati)'),
8757
+ (8724, 'RO ', '307', 'Straja'),
8758
+ (8725, 'RO ', '307', 'Talpa'),
8759
+ (8726, 'RO ', '307', 'Tamaseni'),
8760
+ (8727, 'RO ', '307', 'Tarcau'),
8761
+ (8728, 'RO ', '307', 'Targu Neamt'),
8762
+ (8729, 'RO ', '307', 'Tarpesti'),
8763
+ (8730, 'RO ', '307', 'Tarzia'),
8764
+ (8731, 'RO ', '307', 'Tasca'),
8765
+ (8732, 'RO ', '307', 'Tazlau'),
8766
+ (8733, 'RO ', '307', 'Telec'),
8767
+ (8734, 'RO ', '307', 'Tetcani'),
8768
+ (8735, 'RO ', '307', 'Tibucani'),
8769
+ (8736, 'RO ', '307', 'Tibucanii de Jos'),
8770
+ (8737, 'RO ', '307', 'Ticos'),
8771
+ (8738, 'RO ', '307', 'Ticos-Floarea'),
8772
+ (8739, 'RO ', '307', 'Timisesti'),
8773
+ (8740, 'RO ', '307', 'Tolici'),
8774
+ (8741, 'RO ', '307', 'Topoliceni'),
8775
+ (8742, 'RO ', '307', 'Topolita'),
8776
+ (8743, 'RO ', '307', 'Totoiesti'),
8777
+ (8744, 'RO ', '307', 'Traian (Sabaoani)'),
8778
+ (8745, 'RO ', '307', 'Traian (Zanesti)'),
8779
+ (8746, 'RO ', '307', 'Trifesti'),
8780
+ (8747, 'RO ', '307', 'Tupilati'),
8781
+ (8748, 'RO ', '307', 'Turturesti'),
8782
+ (8749, 'RO ', '307', 'Unghi'),
8783
+ (8750, 'RO ', '307', 'Urecheni'),
8784
+ (8751, 'RO ', '307', 'Vad'),
8785
+ (8752, 'RO ', '307', 'Vadurele (Alexandru cel Bun)'),
8786
+ (8753, 'RO ', '307', 'Vadurele (Candesti)'),
8787
+ (8754, 'RO ', '307', 'Vaduri'),
8788
+ (8755, 'RO ', '307', 'Valea Arini'),
8789
+ (8756, 'RO ', '307', 'Valea Mare'),
8790
+ (8757, 'RO ', '307', 'Valea Seaca'),
8791
+ (8758, 'RO ', '307', 'Valea Ursului'),
8792
+ (8759, 'RO ', '307', 'Valeni'),
8793
+ (8760, 'RO ', '307', 'Valeni (Piatra-Neamt)'),
8794
+ (8761, 'RO ', '307', 'Vanatori-Neamt'),
8795
+ (8762, 'RO ', '307', 'Varatec'),
8796
+ (8763, 'RO ', '307', 'Veja'),
8797
+ (8764, 'RO ', '307', 'Versesti'),
8798
+ (8765, 'RO ', '307', 'Viisoara'),
8799
+ (8766, 'RO ', '307', 'Vladiceni'),
8800
+ (8767, 'RO ', '307', 'Vulpasesti'),
8801
+ (8768, 'RO ', '307', 'Zanesti'),
8802
+ (8769, 'RO ', '308', 'Afumati'),
8803
+ (8770, 'RO ', '308', 'Albesti'),
8804
+ (8771, 'RO ', '308', 'Alimanesti'),
8805
+ (8772, 'RO ', '308', 'Alunisu'),
8806
+ (8773, 'RO ', '308', 'Arcesti'),
8807
+ (8774, 'RO ', '308', 'Arcesti-Cot'),
8808
+ (8775, 'RO ', '308', 'Arvateasca'),
8809
+ (8776, 'RO ', '308', 'Babiciu'),
8810
+ (8777, 'RO ', '308', 'Bacea'),
8811
+ (8778, 'RO ', '308', 'Bagesti'),
8812
+ (8779, 'RO ', '308', 'Balanesti'),
8813
+ (8780, 'RO ', '308', 'Baldovinesti'),
8814
+ (8781, 'RO ', '308', 'Baleasa'),
8815
+ (8782, 'RO ', '308', 'Bals'),
8816
+ (8783, 'RO ', '308', 'Baltati'),
8817
+ (8784, 'RO ', '308', 'Balteni'),
8818
+ (8785, 'RO ', '308', 'Barasti'),
8819
+ (8786, 'RO ', '308', 'Barasti (Colonesti)'),
8820
+ (8787, 'RO ', '308', 'Barasti (Morunglav)'),
8821
+ (8788, 'RO ', '308', 'Barastii de Cepturi'),
8822
+ (8789, 'RO ', '308', 'Barastii de Vede'),
8823
+ (8790, 'RO ', '308', 'Barbalai'),
8824
+ (8791, 'RO ', '308', 'Barca'),
8825
+ (8792, 'RO ', '308', 'Barcanesti'),
8826
+ (8793, 'RO ', '308', 'Barsestii de Sus'),
8827
+ (8794, 'RO ', '308', 'Barza'),
8828
+ (8795, 'RO ', '308', 'Batareni'),
8829
+ (8796, 'RO ', '308', 'Batia'),
8830
+ (8797, 'RO ', '308', 'Bechet'),
8831
+ (8798, 'RO ', '308', 'Beculesti'),
8832
+ (8799, 'RO ', '308', 'Belgun'),
8833
+ (8800, 'RO ', '308', 'Beria de Jos'),
8834
+ (8801, 'RO ', '308', 'Beria de Sus'),
8835
+ (8802, 'RO ', '308', 'Berindei'),
8836
+ (8803, 'RO ', '308', 'Bircii'),
8837
+ (8804, 'RO ', '308', 'Bistrita Noua'),
8838
+ (8805, 'RO ', '308', 'Blaj'),
8839
+ (8806, 'RO ', '308', 'Bobicesti'),
8840
+ (8807, 'RO ', '308', 'Bobu'),
8841
+ (8808, 'RO ', '308', 'Bondrea'),
8842
+ (8809, 'RO ', '308', 'Brancoveni'),
8843
+ (8810, 'RO ', '308', 'Branet'),
8844
+ (8811, 'RO ', '308', 'Brastavatu'),
8845
+ (8812, 'RO ', '308', 'Brebeni'),
8846
+ (8813, 'RO ', '308', 'Brosteni'),
8847
+ (8814, 'RO ', '308', 'Bucinisu'),
8848
+ (8815, 'RO ', '308', 'Bucinisu Mic'),
8849
+ (8816, 'RO ', '308', 'Buicesti'),
8850
+ (8817, 'RO ', '308', 'Bulimanu'),
8851
+ (8818, 'RO ', '308', 'Burdulesti'),
8852
+ (8819, 'RO ', '308', 'Busca'),
8853
+ (8820, 'RO ', '308', 'Buta'),
8854
+ (8821, 'RO ', '308', 'Butoi'),
8855
+ (8822, 'RO ', '308', 'Buzesti'),
8856
+ (8823, 'RO ', '308', 'Calinesti'),
8857
+ (8824, 'RO ', '308', 'Calui'),
8858
+ (8825, 'RO ', '308', 'Campu Mare'),
8859
+ (8826, 'RO ', '308', 'Campu Parului'),
8860
+ (8827, 'RO ', '308', 'Candelesti'),
8861
+ (8828, 'RO ', '308', 'Caracal'),
8862
+ (8829, 'RO ', '308', 'Carlogani(olt)'),
8863
+ (8830, 'RO ', '308', 'Carstani'),
8864
+ (8831, 'RO ', '308', 'Catanele'),
8865
+ (8832, 'RO ', '308', 'Cazanesti'),
8866
+ (8833, 'RO ', '308', 'Cepari'),
8867
+ (8834, 'RO ', '308', 'Cepesti'),
8868
+ (8835, 'RO ', '308', 'Cerbeni'),
8869
+ (8836, 'RO ', '308', 'Cezieni'),
8870
+ (8837, 'RO ', '308', 'Chelbesti'),
8871
+ (8838, 'RO ', '308', 'Cherlestii din Deal'),
8872
+ (8839, 'RO ', '308', 'Cherlestii Mosteni'),
8873
+ (8840, 'RO ', '308', 'Chilia'),
8874
+ (8841, 'RO ', '308', 'Chilii'),
8875
+ (8842, 'RO ', '308', 'Chintesti'),
8876
+ (8843, 'RO ', '308', 'Chiteasca'),
8877
+ (8844, 'RO ', '308', 'Cilieni'),
8878
+ (8845, 'RO ', '308', 'Ciocanesti'),
8879
+ (8846, 'RO ', '308', 'Cioflanu'),
8880
+ (8847, 'RO ', '308', 'Cioraca'),
8881
+ (8848, 'RO ', '308', 'Cioroiu'),
8882
+ (8849, 'RO ', '308', 'Cireasov'),
8883
+ (8850, 'RO ', '308', 'Ciuresti'),
8884
+ (8851, 'RO ', '308', 'Cocorasti'),
8885
+ (8852, 'RO ', '308', 'Cojgarei'),
8886
+ (8853, 'RO ', '308', 'Colibasi'),
8887
+ (8854, 'RO ', '308', 'Colonesti'),
8888
+ (8855, 'RO ', '308', 'Comanca'),
8889
+ (8856, 'RO ', '308', 'Comanesti'),
8890
+ (8857, 'RO ', '308', 'Comani'),
8891
+ (8858, 'RO ', '308', 'Comanita'),
8892
+ (8859, 'RO ', '308', 'Constantinesti'),
8893
+ (8860, 'RO ', '308', 'Corabia'),
8894
+ (8861, 'RO ', '308', 'Corbeni'),
8895
+ (8862, 'RO ', '308', 'Corbu'),
8896
+ (8863, 'RO ', '308', 'Corbu (Teslui)'),
8897
+ (8864, 'RO ', '308', 'Corlatesti'),
8898
+ (8865, 'RO ', '308', 'Cornatelu'),
8899
+ (8866, 'RO ', '308', 'Coteana'),
8900
+ (8867, 'RO ', '308', 'Coteni'),
8901
+ (8868, 'RO ', '308', 'Cotorbesti'),
8902
+ (8869, 'RO ', '308', 'Craciunei'),
8903
+ (8870, 'RO ', '308', 'Crampoia'),
8904
+ (8871, 'RO ', '308', 'Creti'),
8905
+ (8872, 'RO ', '308', 'Criva de Jos'),
8906
+ (8873, 'RO ', '308', 'Criva de Sus'),
8907
+ (8874, 'RO ', '308', 'Crusovu'),
8908
+ (8875, 'RO ', '308', 'Cucueti'),
8909
+ (8876, 'RO ', '308', 'Cungrea'),
8910
+ (8877, 'RO ', '308', 'Curtisoara'),
8911
+ (8878, 'RO ', '308', 'Curtisoara (Dobretu)'),
8912
+ (8879, 'RO ', '308', 'Cuza Voda'),
8913
+ (8880, 'RO ', '308', 'Damburile'),
8914
+ (8881, 'RO ', '308', 'Daneasa'),
8915
+ (8882, 'RO ', '308', 'Davidesti'),
8916
+ (8883, 'RO ', '308', 'Dejesti'),
8917
+ (8884, 'RO ', '308', 'Deleni'),
8918
+ (8885, 'RO ', '308', 'Deveselu'),
8919
+ (8886, 'RO ', '308', 'Dienci'),
8920
+ (8887, 'RO ', '308', 'Doanca'),
8921
+ (8888, 'RO ', '308', 'Doba'),
8922
+ (8889, 'RO ', '308', 'Dobretu'),
8923
+ (8890, 'RO ', '308', 'Dobriceni'),
8924
+ (8891, 'RO ', '308', 'Dobrosloveni'),
8925
+ (8892, 'RO ', '308', 'Dobroteasa'),
8926
+ (8893, 'RO ', '308', 'Dobrotinet'),
8927
+ (8894, 'RO ', '308', 'Dobrun'),
8928
+ (8895, 'RO ', '308', 'Donesti'),
8929
+ (8896, 'RO ', '308', 'Draganesti-Olt'),
8930
+ (8897, 'RO ', '308', 'Draghiceni'),
8931
+ (8898, 'RO ', '308', 'Dranovatu'),
8932
+ (8899, 'RO ', '308', 'Dumitresti'),
8933
+ (8900, 'RO ', '308', 'Enosesti'),
8934
+ (8901, 'RO ', '308', 'Fagetelu'),
8935
+ (8902, 'RO ', '308', 'Falcoiu'),
8936
+ (8903, 'RO ', '308', 'Farcasele'),
8937
+ (8904, 'RO ', '308', 'Farcasu de Jos'),
8938
+ (8905, 'RO ', '308', 'Floru'),
8939
+ (8906, 'RO ', '308', 'Frasinet-Gara'),
8940
+ (8907, 'RO ', '308', 'Frasinetu'),
8941
+ (8908, 'RO ', '308', 'Frunzaru'),
8942
+ (8909, 'RO ', '308', 'Ganeasa'),
8943
+ (8910, 'RO ', '308', 'Garcov'),
8944
+ (8911, 'RO ', '308', 'Gavanesti'),
8945
+ (8912, 'RO ', '308', 'ghimpati'),
8946
+ (8913, 'RO ', '308', 'Ghimpeteni'),
8947
+ (8914, 'RO ', '308', 'Ghimpetenii Noi'),
8948
+ (8915, 'RO ', '308', 'Ghiosani'),
8949
+ (8916, 'RO ', '308', 'Giuvarasti'),
8950
+ (8917, 'RO ', '308', 'Gostavatu'),
8951
+ (8918, 'RO ', '308', 'Govora'),
8952
+ (8919, 'RO ', '308', 'Gradinari'),
8953
+ (8920, 'RO ', '308', 'Gradinile'),
8954
+ (8921, 'RO ', '308', 'Gradistea'),
8955
+ (8922, 'RO ', '308', 'Greci (Osica de Sus)'),
8956
+ (8923, 'RO ', '308', 'Greci (Schitu)'),
8957
+ (8924, 'RO ', '308', 'Greeresti'),
8958
+ (8925, 'RO ', '308', 'Grojdibodu'),
8959
+ (8926, 'RO ', '308', 'Gropsani'),
8960
+ (8927, 'RO ', '308', 'Grozavesti'),
8961
+ (8928, 'RO ', '308', 'Gruiu'),
8962
+ (8929, 'RO ', '308', 'Gubandru'),
8963
+ (8930, 'RO ', '308', 'Guesti'),
8964
+ (8931, 'RO ', '308', 'Gura Caluiu'),
8965
+ (8932, 'RO ', '308', 'Gura Padinii'),
8966
+ (8933, 'RO ', '308', 'Horezu'),
8967
+ (8934, 'RO ', '308', 'Hotarani'),
8968
+ (8935, 'RO ', '308', 'Hotaru'),
8969
+ (8936, 'RO ', '308', 'Ianca'),
8970
+ (8937, 'RO ', '308', 'Ianca Noua'),
8971
+ (8938, 'RO ', '308', 'Iancu Jianu'),
8972
+ (8939, 'RO ', '308', 'Ibanesti'),
8973
+ (8940, 'RO ', '308', 'Icoana'),
8974
+ (8941, 'RO ', '308', 'Ionicesti'),
8975
+ (8942, 'RO ', '308', 'Ipotesti'),
8976
+ (8943, 'RO ', '308', 'Izbiceni'),
8977
+ (8944, 'RO ', '308', 'Izvoarele'),
8978
+ (8945, 'RO ', '308', 'Izvoru'),
8979
+ (8946, 'RO ', '308', 'Jieni'),
8980
+ (8947, 'RO ', '308', 'Jitaru'),
8981
+ (8948, 'RO ', '308', 'Launele'),
8982
+ (8949, 'RO ', '308', 'Lazaresti'),
8983
+ (8950, 'RO ', '308', 'Leleasca'),
8984
+ (8951, 'RO ', '308', 'Leotesti'),
8985
+ (8952, 'RO ', '308', 'Liiceni'),
8986
+ (8953, 'RO ', '308', 'Linia din Vale'),
8987
+ (8954, 'RO ', '308', 'Lisa'),
8988
+ (8955, 'RO ', '308', 'Lunca'),
8989
+ (8956, 'RO ', '308', 'Magura (Perieti)'),
8990
+ (8957, 'RO ', '308', 'Magura (Tatulesti)'),
8991
+ (8958, 'RO ', '308', 'Malu Rosu'),
8992
+ (8959, 'RO ', '308', 'Mamura'),
8993
+ (8960, 'RO ', '308', 'Mandra'),
8994
+ (8961, 'RO ', '308', 'Manulesti'),
8995
+ (8962, 'RO ', '308', 'Mardale'),
8996
+ (8963, 'RO ', '308', 'Margaritesti'),
8997
+ (8964, 'RO ', '308', 'Margheni'),
8998
+ (8965, 'RO ', '308', 'Margineni-Slobozia'),
8999
+ (8966, 'RO ', '308', 'Maruntei'),
9000
+ (8967, 'RO ', '308', 'Maruntei (Colonesti)'),
9001
+ (8968, 'RO ', '308', 'Mereni'),
9002
+ (8969, 'RO ', '308', 'Mierlestii de Sus'),
9003
+ (8970, 'RO ', '308', 'Mierlicesti'),
9004
+ (8971, 'RO ', '308', 'Miesti'),
9005
+ (8972, 'RO ', '308', 'Mihaesti'),
9006
+ (8973, 'RO ', '308', 'Mihailesti-Popesti'),
9007
+ (8974, 'RO ', '308', 'Milcov'),
9008
+ (8975, 'RO ', '308', 'Milcoveni'),
9009
+ (8976, 'RO ', '308', 'Milcovu din Deal'),
9010
+ (8977, 'RO ', '308', 'Milcovu din Vale'),
9011
+ (8978, 'RO ', '308', 'Mircesti'),
9012
+ (8979, 'RO ', '308', 'Mirila'),
9013
+ (8980, 'RO ', '308', 'Mogosesti'),
9014
+ (8981, 'RO ', '308', 'Momaiu'),
9015
+ (8982, 'RO ', '308', 'Morunesti'),
9016
+ (8983, 'RO ', '308', 'Morunglav'),
9017
+ (8984, 'RO ', '308', 'Mosteni'),
9018
+ (8985, 'RO ', '308', 'Motoesti'),
9019
+ (8986, 'RO ', '308', 'Movileni'),
9020
+ (8987, 'RO ', '308', 'Navargeni'),
9021
+ (8988, 'RO ', '308', 'Negreni'),
9022
+ (8989, 'RO ', '308', 'Nicolae Titulescu'),
9023
+ (8990, 'RO ', '308', 'Obarsia '),
9024
+ (8991, 'RO ', '308', 'Obarsia Noua'),
9025
+ (8992, 'RO ', '308', 'Oboga'),
9026
+ (8993, 'RO ', '308', 'Ociogi'),
9027
+ (8994, 'RO ', '308', 'Olari'),
9028
+ (8995, 'RO ', '308', 'Oltisoru'),
9029
+ (8996, 'RO ', '308', 'Oporelu'),
9030
+ (8997, 'RO ', '308', 'Optasani'),
9031
+ (8998, 'RO ', '308', 'Optasi'),
9032
+ (8999, 'RO ', '308', 'Optasi-Magura'),
9033
+ (9000, 'RO ', '308', 'Orlea'),
9034
+ (9001, 'RO ', '308', 'Orlea Noua'),
9035
+ (9002, 'RO ', '308', 'Osica de Jos'),
9036
+ (9003, 'RO ', '308', 'Osica de Sus'),
9037
+ (9004, 'RO ', '308', 'Ostrov'),
9038
+ (9005, 'RO ', '308', 'Otestii de Jos'),
9039
+ (9006, 'RO ', '308', 'Otestii de Sus'),
9040
+ (9007, 'RO ', '308', 'Parscoveni'),
9041
+ (9008, 'RO ', '308', 'Peretu'),
9042
+ (9009, 'RO ', '308', 'Perieti'),
9043
+ (9010, 'RO ', '308', 'Pescaresti'),
9044
+ (9011, 'RO ', '308', 'Pestra'),
9045
+ (9012, 'RO ', '308', 'Petculesti'),
9046
+ (9013, 'RO ', '308', 'Piatra'),
9047
+ (9014, 'RO ', '308', 'Piatra-Olt'),
9048
+ (9015, 'RO ', '308', 'Pielcani'),
9049
+ (9016, 'RO ', '308', 'Pietris'),
9050
+ (9017, 'RO ', '308', 'Pietrisu'),
9051
+ (9018, 'RO ', '308', 'Piscani'),
9052
+ (9019, 'RO ', '308', 'Plaviceni'),
9053
+ (9020, 'RO ', '308', 'Plesoiu'),
9054
+ (9021, 'RO ', '308', 'Plopsorelu'),
9055
+ (9022, 'RO ', '308', 'Poboru'),
9056
+ (9023, 'RO ', '308', 'Poganu'),
9057
+ (9024, 'RO ', '308', 'Poiana Mare'),
9058
+ (9025, 'RO ', '308', 'Popesti (Barasti)'),
9059
+ (9026, 'RO ', '308', 'Popesti (Valeni)'),
9060
+ (9027, 'RO ', '308', 'Potcoava'),
9061
+ (9028, 'RO ', '308', 'Potcoava-Falcoeni'),
9062
+ (9029, 'RO ', '308', 'Potelu'),
9063
+ (9030, 'RO ', '308', 'Potlogeni'),
9064
+ (9031, 'RO ', '308', 'Potopinu'),
9065
+ (9032, 'RO ', '308', 'Preotesti'),
9066
+ (9033, 'RO ', '308', 'Prisaca'),
9067
+ (9034, 'RO ', '308', 'Priseaca'),
9068
+ (9035, 'RO ', '308', 'Proaspeti'),
9069
+ (9036, 'RO ', '308', 'Profa'),
9070
+ (9037, 'RO ', '308', 'Racovita'),
9071
+ (9038, 'RO ', '308', 'Radesti'),
9072
+ (9039, 'RO ', '308', 'Radomiresti'),
9073
+ (9040, 'RO ', '308', 'Raitiu'),
9074
+ (9041, 'RO ', '308', 'Recea'),
9075
+ (9042, 'RO ', '308', 'Redea'),
9076
+ (9043, 'RO ', '308', 'Redisoara'),
9077
+ (9044, 'RO ', '308', 'Resca'),
9078
+ (9045, 'RO ', '308', 'Rescuta'),
9079
+ (9046, 'RO ', '308', 'Romana'),
9080
+ (9047, 'RO ', '308', 'Rosienii Mari'),
9081
+ (9048, 'RO ', '308', 'Rosienii Mici'),
9082
+ (9049, 'RO ', '308', 'Rotunda'),
9083
+ (9050, 'RO ', '308', 'Runcu Mare'),
9084
+ (9051, 'RO ', '308', 'Rusanesti'),
9085
+ (9052, 'RO ', '308', 'Rusanestii de Sus'),
9086
+ (9053, 'RO ', '308', 'Rusciori'),
9087
+ (9054, 'RO ', '308', 'Salcia'),
9088
+ (9055, 'RO ', '308', 'Saltanesti'),
9089
+ (9056, 'RO ', '308', 'Samburesti'),
9090
+ (9057, 'RO ', '308', 'Sarbii-Magura'),
9091
+ (9058, 'RO ', '308', 'Satu Nou (Gradinari)'),
9092
+ (9059, 'RO ', '308', 'Satu Nou (Gura Padinii)'),
9093
+ (9060, 'RO ', '308', 'Scarisoara'),
9094
+ (9061, 'RO ', '308', 'Schitu'),
9095
+ (9062, 'RO ', '308', 'Schitu Deleni'),
9096
+ (9063, 'RO ', '308', 'Schitu din Deal'),
9097
+ (9064, 'RO ', '308', 'Schitu din Vale'),
9098
+ (9065, 'RO ', '308', 'Scorbura'),
9099
+ (9066, 'RO ', '308', 'Scornicesti'),
9100
+ (9067, 'RO ', '308', 'Seaca'),
9101
+ (9068, 'RO ', '308', 'Seaca (Poboru)'),
9102
+ (9069, 'RO ', '308', 'Serbanesti'),
9103
+ (9070, 'RO ', '308', 'Serbanestii de Sus'),
9104
+ (9071, 'RO ', '308', 'Simniceni'),
9105
+ (9072, 'RO ', '308', 'Sinesti'),
9106
+ (9073, 'RO ', '308', 'Slatina'),
9107
+ (9074, 'RO ', '308', 'Slatioara'),
9108
+ (9075, 'RO ', '308', 'Slaveni'),
9109
+ (9076, 'RO ', '308', 'Soparlita'),
9110
+ (9077, 'RO ', '308', 'Spataru'),
9111
+ (9078, 'RO ', '308', 'Spineni'),
9112
+ (9079, 'RO ', '308', 'Sprancenata'),
9113
+ (9080, 'RO ', '308', 'Stanuleasa (Samburesti)'),
9114
+ (9081, 'RO ', '308', 'Stanuleasa (Vitomiresti)'),
9115
+ (9082, 'RO ', '308', 'Stavaru'),
9116
+ (9083, 'RO ', '308', 'Stefan cel Mare'),
9117
+ (9084, 'RO ', '308', 'Stejaru'),
9118
+ (9085, 'RO ', '308', 'Stoborasti'),
9119
+ (9086, 'RO ', '308', 'Stoenesti'),
9120
+ (9087, 'RO ', '308', 'Stoicanesti'),
9121
+ (9088, 'RO ', '308', 'Strejesti'),
9122
+ (9089, 'RO ', '308', 'Strejestii de Sus'),
9123
+ (9090, 'RO ', '308', 'Strugurelu'),
9124
+ (9091, 'RO ', '308', 'Studina');
9125
+ INSERT INTO `directory_country_region_city` (`city_id`, `country_id`, `region_id`, `cityname`) VALUES
9126
+ (9092, 'RO ', '308', 'Studinita'),
9127
+ (9093, 'RO ', '308', 'Stupina'),
9128
+ (9094, 'RO ', '308', 'Suica'),
9129
+ (9095, 'RO ', '308', 'Surpeni'),
9130
+ (9096, 'RO ', '308', 'Tabaci'),
9131
+ (9097, 'RO ', '308', 'Tabonu'),
9132
+ (9098, 'RO ', '308', 'Tatulesti'),
9133
+ (9099, 'RO ', '308', 'Teis'),
9134
+ (9100, 'RO ', '308', 'Teius'),
9135
+ (9101, 'RO ', '308', 'Teiusu'),
9136
+ (9102, 'RO ', '308', 'Teslui'),
9137
+ (9103, 'RO ', '308', 'Tia Mare'),
9138
+ (9104, 'RO ', '308', 'Tirisneag'),
9139
+ (9105, 'RO ', '308', 'Tomeni'),
9140
+ (9106, 'RO ', '308', 'Tonesti (Leleasca)'),
9141
+ (9107, 'RO ', '308', 'Tonesti (Samburesti)'),
9142
+ (9108, 'RO ', '308', 'Topana'),
9143
+ (9109, 'RO ', '308', 'Traian'),
9144
+ (9110, 'RO ', '308', 'Trepteni'),
9145
+ (9111, 'RO ', '308', 'Trufinesti'),
9146
+ (9112, 'RO ', '308', 'Tufaru'),
9147
+ (9113, 'RO ', '308', 'Tufeni'),
9148
+ (9114, 'RO ', '308', 'Turia'),
9149
+ (9115, 'RO ', '308', 'Ulmet'),
9150
+ (9116, 'RO ', '308', 'Ulmi'),
9151
+ (9117, 'RO ', '308', 'Ungureni'),
9152
+ (9118, 'RO ', '308', 'Uria'),
9153
+ (9119, 'RO ', '308', 'Ursa'),
9154
+ (9120, 'RO ', '308', 'Ursoaia'),
9155
+ (9121, 'RO ', '308', 'Urzica'),
9156
+ (9122, 'RO ', '308', 'Vadastra'),
9157
+ (9123, 'RO ', '308', 'Vadastrita'),
9158
+ (9124, 'RO ', '308', 'Valcele'),
9159
+ (9125, 'RO ', '308', 'Valcelele de Sus'),
9160
+ (9126, 'RO ', '308', 'Valea Fetei'),
9161
+ (9127, 'RO ', '308', 'Valea lui Alb'),
9162
+ (9128, 'RO ', '308', 'Valea Mare'),
9163
+ (9129, 'RO ', '308', 'Valea Merilor'),
9164
+ (9130, 'RO ', '308', 'Valea Satului'),
9165
+ (9131, 'RO ', '308', 'Valea Soarelui'),
9166
+ (9132, 'RO ', '308', 'Valeni'),
9167
+ (9133, 'RO ', '308', 'Valeni (Brancoveni)'),
9168
+ (9134, 'RO ', '308', 'Vanesti'),
9169
+ (9135, 'RO ', '308', 'Vartopu'),
9170
+ (9136, 'RO ', '308', 'Verguleasa'),
9171
+ (9137, 'RO ', '308', 'Vineti'),
9172
+ (9138, 'RO ', '308', 'Visina'),
9173
+ (9139, 'RO ', '308', 'Visina Noua'),
9174
+ (9140, 'RO ', '308', 'Vitanesti'),
9175
+ (9141, 'RO ', '308', 'Vitomiresti'),
9176
+ (9142, 'RO ', '308', 'Vladila'),
9177
+ (9143, 'RO ', '308', 'Vladila Noua'),
9178
+ (9144, 'RO ', '308', 'Vladuleni'),
9179
+ (9145, 'RO ', '308', 'Vlaici'),
9180
+ (9146, 'RO ', '308', 'Vlangaresti'),
9181
+ (9147, 'RO ', '308', 'Voineasa'),
9182
+ (9148, 'RO ', '308', 'Vulpeni'),
9183
+ (9149, 'RO ', '308', 'Vulpesti'),
9184
+ (9150, 'RO ', '308', 'Vulturesti'),
9185
+ (9151, 'RO ', '308', 'Zanoaga(Olt)'),
9186
+ (9152, 'RO ', '308', 'Zorleasca'),
9187
+ (9153, 'RO ', '309', 'Adunati'),
9188
+ (9154, 'RO ', '309', 'Albesti-Muru'),
9189
+ (9155, 'RO ', '309', 'Albesti-Paleologu'),
9190
+ (9156, 'RO ', '309', 'Alunis'),
9191
+ (9157, 'RO ', '309', 'Apostolache'),
9192
+ (9158, 'RO ', '309', 'Aricestii Rahtivani'),
9193
+ (9159, 'RO ', '309', 'Aricestii Zeletin'),
9194
+ (9160, 'RO ', '309', 'Arva'),
9195
+ (9161, 'RO ', '309', 'Azuga'),
9196
+ (9162, 'RO ', '309', 'Baba Ana'),
9197
+ (9163, 'RO ', '309', 'Baicoi'),
9198
+ (9164, 'RO ', '309', 'Balta Doamnei'),
9199
+ (9165, 'RO ', '309', 'Baltesti'),
9200
+ (9166, 'RO ', '309', 'Banesti'),
9201
+ (9167, 'RO ', '309', 'Baraitaru'),
9202
+ (9168, 'RO ', '309', 'Barcanesti'),
9203
+ (9169, 'RO ', '309', 'Batesti'),
9204
+ (9170, 'RO ', '309', 'Batrani'),
9205
+ (9171, 'RO ', '309', 'Berceni'),
9206
+ (9172, 'RO ', '309', 'Bertea'),
9207
+ (9173, 'RO ', '309', 'Blejoi'),
9208
+ (9174, 'RO ', '309', 'Bobolia'),
9209
+ (9175, 'RO ', '309', 'Boldesti-Gradistea'),
9210
+ (9176, 'RO ', '309', 'Boldesti-Scaeni'),
9211
+ (9177, 'RO ', '309', 'Bordenii Mari'),
9212
+ (9178, 'RO ', '309', 'Bordenii Mici'),
9213
+ (9179, 'RO ', '309', 'Bosilcesti'),
9214
+ (9180, 'RO ', '309', 'Bratasanca'),
9215
+ (9181, 'RO ', '309', 'Bratesti'),
9216
+ (9182, 'RO ', '309', 'Brazi'),
9217
+ (9183, 'RO ', '309', 'Brazii de Jos'),
9218
+ (9184, 'RO ', '309', 'Brazii de Sus'),
9219
+ (9185, 'RO ', '309', 'Breaza'),
9220
+ (9186, 'RO ', '309', 'Breaza de Jos'),
9221
+ (9187, 'RO ', '309', 'Breaza de Sus'),
9222
+ (9188, 'RO ', '309', 'Brebu'),
9223
+ (9189, 'RO ', '309', 'Brebu Manastirei'),
9224
+ (9190, 'RO ', '309', 'Brebu Megiesesc'),
9225
+ (9191, 'RO ', '309', 'Buchilasi'),
9226
+ (9192, 'RO ', '309', 'Bucov'),
9227
+ (9193, 'RO ', '309', 'Buda (Aricestii Rahtivani)'),
9228
+ (9194, 'RO ', '309', 'Bustenari'),
9229
+ (9195, 'RO ', '309', 'Busteni'),
9230
+ (9196, 'RO ', '309', 'Calinesti'),
9231
+ (9197, 'RO ', '309', 'Calugareni'),
9232
+ (9198, 'RO ', '309', 'Campina'),
9233
+ (9199, 'RO ', '309', 'Cap Rosu'),
9234
+ (9200, 'RO ', '309', 'Carbunesti'),
9235
+ (9201, 'RO ', '309', 'Catina'),
9236
+ (9202, 'RO ', '309', 'Catunu (Berceni)'),
9237
+ (9203, 'RO ', '309', 'Ceptura'),
9238
+ (9204, 'RO ', '309', 'Ceptura De Jos'),
9239
+ (9205, 'RO ', '309', 'Ceptura de Sus'),
9240
+ (9206, 'RO ', '309', 'Cerasu'),
9241
+ (9207, 'RO ', '309', 'Cheia'),
9242
+ (9208, 'RO ', '309', 'Chesnoiu'),
9243
+ (9209, 'RO ', '309', 'Chiojdeanca'),
9244
+ (9210, 'RO ', '309', 'Chitorani'),
9245
+ (9211, 'RO ', '309', 'Cioceni'),
9246
+ (9212, 'RO ', '309', 'Ciorani'),
9247
+ (9213, 'RO ', '309', 'Cioranii de Jos'),
9248
+ (9214, 'RO ', '309', 'Cioranii de Sus'),
9249
+ (9215, 'RO ', '309', 'Ciresanu'),
9250
+ (9216, 'RO ', '309', 'Ciupelnita'),
9251
+ (9217, 'RO ', '309', 'Coada Izvorului'),
9252
+ (9218, 'RO ', '309', 'Coada Malului'),
9253
+ (9219, 'RO ', '309', 'Cocorastii Caplii'),
9254
+ (9220, 'RO ', '309', 'Cocorastii Colt'),
9255
+ (9221, 'RO ', '309', 'Cocorastii Mislii'),
9256
+ (9222, 'RO ', '309', 'Cocosesti'),
9257
+ (9223, 'RO ', '309', 'Colceag'),
9258
+ (9224, 'RO ', '309', 'Comarnic'),
9259
+ (9225, 'RO ', '309', 'Conduratu'),
9260
+ (9226, 'RO ', '309', 'Corlatesti'),
9261
+ (9227, 'RO ', '309', 'Cornu'),
9262
+ (9228, 'RO ', '309', 'Cornu de Jos (Cornu)'),
9263
+ (9229, 'RO ', '309', 'Cornu de Jos (Draganesti)'),
9264
+ (9230, 'RO ', '309', 'Cornu de Sus (Cornu)'),
9265
+ (9231, 'RO ', '309', 'Cornu de Sus (Dumbrava)'),
9266
+ (9232, 'RO ', '309', 'Coserele'),
9267
+ (9233, 'RO ', '309', 'Coslegi'),
9268
+ (9234, 'RO ', '309', 'Cosmina de Jos'),
9269
+ (9235, 'RO ', '309', 'Cosmina de Sus'),
9270
+ (9236, 'RO ', '309', 'Cosminele'),
9271
+ (9237, 'RO ', '309', 'Cotofenesti'),
9272
+ (9238, 'RO ', '309', 'Crivina'),
9273
+ (9239, 'RO ', '309', 'Curcubeu'),
9274
+ (9240, 'RO ', '309', 'Dambu'),
9275
+ (9241, 'RO ', '309', 'Darvari'),
9276
+ (9242, 'RO ', '309', 'Ditesti'),
9277
+ (9243, 'RO ', '309', 'Doftana'),
9278
+ (9244, 'RO ', '309', 'Draganeasa'),
9279
+ (9245, 'RO ', '309', 'Draganesti'),
9280
+ (9246, 'RO ', '309', 'Drajna'),
9281
+ (9247, 'RO ', '309', 'Drajna de Jos'),
9282
+ (9248, 'RO ', '309', 'Drajna de Sus'),
9283
+ (9249, 'RO ', '309', 'Dumbrava'),
9284
+ (9250, 'RO ', '309', 'Dumbravesti'),
9285
+ (9251, 'RO ', '309', 'Faget'),
9286
+ (9252, 'RO ', '309', 'Fanari (Gorgota)'),
9287
+ (9253, 'RO ', '309', 'Fanari (Olari)'),
9288
+ (9254, 'RO ', '309', 'Fantanele'),
9289
+ (9255, 'RO ', '309', 'Filipestii de Padure'),
9290
+ (9256, 'RO ', '309', 'Filipestii de Targ'),
9291
+ (9257, 'RO ', '309', 'Floresti'),
9292
+ (9258, 'RO ', '309', 'Frasinet'),
9293
+ (9259, 'RO ', '309', 'Fulga'),
9294
+ (9260, 'RO ', '309', 'Fulga de Jos'),
9295
+ (9261, 'RO ', '309', 'Fulga de Sus'),
9296
+ (9262, 'RO ', '309', 'Fundeni'),
9297
+ (9263, 'RO ', '309', 'Gageni'),
9298
+ (9264, 'RO ', '309', 'Gheaba'),
9299
+ (9265, 'RO ', '309', 'Gherghita'),
9300
+ (9266, 'RO ', '309', 'Ghighiu'),
9301
+ (9267, 'RO ', '309', 'Ghiocel'),
9302
+ (9268, 'RO ', '309', 'Ghioldum'),
9303
+ (9269, 'RO ', '309', 'Ghiosesti'),
9304
+ (9270, 'RO ', '309', 'Goga'),
9305
+ (9271, 'RO ', '309', 'Gorgota'),
9306
+ (9272, 'RO ', '309', 'Gornet'),
9307
+ (9273, 'RO ', '309', 'Gornet-Cricov'),
9308
+ (9274, 'RO ', '309', 'Goruna'),
9309
+ (9275, 'RO ', '309', 'Gura Beliei'),
9310
+ (9276, 'RO ', '309', 'Gura Vadului'),
9311
+ (9277, 'RO ', '309', 'Gura Vitioarei'),
9312
+ (9278, 'RO ', '309', 'Habud'),
9313
+ (9279, 'RO ', '309', 'Harsa'),
9314
+ (9280, 'RO ', '309', 'Hatcarau'),
9315
+ (9281, 'RO ', '309', 'Homoraciu'),
9316
+ (9282, 'RO ', '309', 'Iazu'),
9317
+ (9283, 'RO ', '309', 'Independenta'),
9318
+ (9284, 'RO ', '309', 'Inotesti'),
9319
+ (9285, 'RO ', '309', 'Iordacheanu'),
9320
+ (9286, 'RO ', '309', 'Irimesti'),
9321
+ (9287, 'RO ', '309', 'Izvoarele'),
9322
+ (9288, 'RO ', '309', 'Izvoru'),
9323
+ (9289, 'RO ', '309', 'Jugureni'),
9324
+ (9290, 'RO ', '309', 'Lacu Turcului'),
9325
+ (9291, 'RO ', '309', 'Lapos'),
9326
+ (9292, 'RO ', '309', 'Liliesti'),
9327
+ (9293, 'RO ', '309', 'Lipanesti'),
9328
+ (9294, 'RO ', '309', 'Livadea'),
9329
+ (9295, 'RO ', '309', 'Loloiasca'),
9330
+ (9296, 'RO ', '309', 'Lopatnita'),
9331
+ (9297, 'RO ', '309', 'Lunca Mare'),
9332
+ (9298, 'RO ', '309', 'Lunca Prahovei'),
9333
+ (9299, 'RO ', '309', 'Lutu Rosu'),
9334
+ (9300, 'RO ', '309', 'Magula'),
9335
+ (9301, 'RO ', '309', 'Magurele'),
9336
+ (9302, 'RO ', '309', 'Magureni'),
9337
+ (9303, 'RO ', '309', 'Malaestii de Jos'),
9338
+ (9304, 'RO ', '309', 'Malamuc'),
9339
+ (9305, 'RO ', '309', 'Malu Vanat'),
9340
+ (9306, 'RO ', '309', 'Maneciu'),
9341
+ (9307, 'RO ', '309', 'Maneciu-Pamanteni'),
9342
+ (9308, 'RO ', '309', 'Maneciu-Ungureni'),
9343
+ (9309, 'RO ', '309', 'Manesti'),
9344
+ (9310, 'RO ', '309', 'Marginea Padurii'),
9345
+ (9311, 'RO ', '309', 'Marginenii de Jos'),
9346
+ (9312, 'RO ', '309', 'Marlogea'),
9347
+ (9313, 'RO ', '309', 'Mehedinta'),
9348
+ (9314, 'RO ', '309', 'Melicesti'),
9349
+ (9315, 'RO ', '309', 'Meri'),
9350
+ (9316, 'RO ', '309', 'Minieri'),
9351
+ (9317, 'RO ', '309', 'Miresu Mare'),
9352
+ (9318, 'RO ', '309', 'Miroslavesti'),
9353
+ (9319, 'RO ', '309', 'Mislea'),
9354
+ (9320, 'RO ', '309', 'Mizil'),
9355
+ (9321, 'RO ', '309', 'Moara Domneasca'),
9356
+ (9322, 'RO ', '309', 'Moara Noua'),
9357
+ (9323, 'RO ', '309', 'Mocesti'),
9358
+ (9324, 'RO ', '309', 'Nedelea'),
9359
+ (9325, 'RO ', '309', 'Negoiesti'),
9360
+ (9326, 'RO ', '309', 'Nevesteasca'),
9361
+ (9327, 'RO ', '309', 'Nistoresti'),
9362
+ (9328, 'RO ', '309', 'Novacesti'),
9363
+ (9329, 'RO ', '309', 'Nucet (Chiojdeanca)'),
9364
+ (9330, 'RO ', '309', 'Nucsoara de Jos'),
9365
+ (9331, 'RO ', '309', 'Nucsoara de Sus'),
9366
+ (9332, 'RO ', '309', 'Ocina de Jos'),
9367
+ (9333, 'RO ', '309', 'Ocina de Sus'),
9368
+ (9334, 'RO ', '309', 'Odaile'),
9369
+ (9335, 'RO ', '309', 'Ogretin'),
9370
+ (9336, 'RO ', '309', 'Olari'),
9371
+ (9337, 'RO ', '309', 'Ologeni'),
9372
+ (9338, 'RO ', '309', 'Olteni'),
9373
+ (9339, 'RO ', '309', 'Orzoaia de Jos'),
9374
+ (9340, 'RO ', '309', 'Orzoaia de Sus'),
9375
+ (9341, 'RO ', '309', 'Ostrovu'),
9376
+ (9342, 'RO ', '309', 'Pacureti'),
9377
+ (9343, 'RO ', '309', 'Palanca'),
9378
+ (9344, 'RO ', '309', 'Pantazi'),
9379
+ (9345, 'RO ', '309', 'Parepa-Rusani'),
9380
+ (9346, 'RO ', '309', 'Paulesti'),
9381
+ (9347, 'RO ', '309', 'Paulestii Noi'),
9382
+ (9348, 'RO ', '309', 'Persunari (Cocorastii Colt)'),
9383
+ (9349, 'RO ', '309', 'Persunari (Gura Vadului)'),
9384
+ (9350, 'RO ', '309', 'Piatra (Provita de Jos)'),
9385
+ (9351, 'RO ', '309', 'Pietriceaua'),
9386
+ (9352, 'RO ', '309', 'Pietrisu'),
9387
+ (9353, 'RO ', '309', 'Pietrosani'),
9388
+ (9354, 'RO ', '309', 'Pisculesti'),
9389
+ (9355, 'RO ', '309', 'Plaiu (Provita de Sus)'),
9390
+ (9356, 'RO ', '309', 'Plaiu (Talea)'),
9391
+ (9357, 'RO ', '309', 'Plaiu Campinei'),
9392
+ (9358, 'RO ', '309', 'Plaiu Cornului'),
9393
+ (9359, 'RO ', '309', 'Plavia'),
9394
+ (9360, 'RO ', '309', 'Pleasa'),
9395
+ (9361, 'RO ', '309', 'Ploiesti'),
9396
+ (9362, 'RO ', '309', 'Ploiestiori'),
9397
+ (9363, 'RO ', '309', 'Plopeni'),
9398
+ (9364, 'RO ', '309', 'Plopu'),
9399
+ (9365, 'RO ', '309', 'Podenii Noi'),
9400
+ (9366, 'RO ', '309', 'Podenii Vechi'),
9401
+ (9367, 'RO ', '309', 'Podu Cheii'),
9402
+ (9368, 'RO ', '309', 'Podu Corbului'),
9403
+ (9369, 'RO ', '309', 'Podu Lung'),
9404
+ (9370, 'RO ', '309', 'Podu Vadului'),
9405
+ (9371, 'RO ', '309', 'Podu Valeni'),
9406
+ (9372, 'RO ', '309', 'Poiana'),
9407
+ (9373, 'RO ', '309', 'Poiana Campina'),
9408
+ (9374, 'RO ', '309', 'Poiana Copaceni'),
9409
+ (9375, 'RO ', '309', 'Poiana Tapului'),
9410
+ (9376, 'RO ', '309', 'Poiana Trestiei'),
9411
+ (9377, 'RO ', '309', 'Poiana Varbilau'),
9412
+ (9378, 'RO ', '309', 'Poienarii Apostoli'),
9413
+ (9379, 'RO ', '309', 'Poienarii Burchii'),
9414
+ (9380, 'RO ', '309', 'Poienarii Vechi'),
9415
+ (9381, 'RO ', '309', 'Poienarii-Rali'),
9416
+ (9382, 'RO ', '309', 'Popesti (Brazi)'),
9417
+ (9383, 'RO ', '309', 'Posada'),
9418
+ (9384, 'RO ', '309', 'Posesti'),
9419
+ (9385, 'RO ', '309', 'Potigrafu'),
9420
+ (9386, 'RO ', '309', 'Prajani'),
9421
+ (9387, 'RO ', '309', 'Predeal-Sarari'),
9422
+ (9388, 'RO ', '309', 'Predesti'),
9423
+ (9389, 'RO ', '309', 'Priseaca'),
9424
+ (9390, 'RO ', '309', 'Provita de Jos'),
9425
+ (9391, 'RO ', '309', 'Provita de Sus'),
9426
+ (9392, 'RO ', '309', 'Puchenii Mari'),
9427
+ (9393, 'RO ', '309', 'Puchenii Mici'),
9428
+ (9394, 'RO ', '309', 'Puchenii-Mosneni'),
9429
+ (9395, 'RO ', '309', 'Puscasi'),
9430
+ (9396, 'RO ', '309', 'Rachieri'),
9431
+ (9397, 'RO ', '309', 'Radila'),
9432
+ (9398, 'RO ', '309', 'Rafov'),
9433
+ (9399, 'RO ', '309', 'Ragman'),
9434
+ (9400, 'RO ', '309', 'Romanesti'),
9435
+ (9401, 'RO ', '309', 'Rotari '),
9436
+ (9402, 'RO ', '309', 'Salcia'),
9437
+ (9403, 'RO ', '309', 'Salciile'),
9438
+ (9404, 'RO ', '309', 'Sangeru'),
9439
+ (9405, 'RO ', '309', 'Saratel'),
9440
+ (9406, 'RO ', '309', 'Sarca'),
9441
+ (9407, 'RO ', '309', 'Schiau (Valea Calugareasca)'),
9442
+ (9408, 'RO ', '309', 'Schiulesti'),
9443
+ (9409, 'RO ', '309', 'Scorteni'),
9444
+ (9410, 'RO ', '309', 'Scurtesti'),
9445
+ (9411, 'RO ', '309', 'Secaria'),
9446
+ (9412, 'RO ', '309', 'Seciu'),
9447
+ (9413, 'RO ', '309', 'Seciuri'),
9448
+ (9414, 'RO ', '309', 'Sicrita'),
9449
+ (9415, 'RO ', '309', 'Sinaia'),
9450
+ (9416, 'RO ', '309', 'Sipotu'),
9451
+ (9417, 'RO ', '309', 'Sirna'),
9452
+ (9418, 'RO ', '309', 'Slanic'),
9453
+ (9419, 'RO ', '309', 'Slon'),
9454
+ (9420, 'RO ', '309', 'Soimari'),
9455
+ (9421, 'RO ', '309', 'Soimesti'),
9456
+ (9422, 'RO ', '309', 'Sotrile'),
9457
+ (9423, 'RO ', '309', 'Stancesti'),
9458
+ (9424, 'RO ', '309', 'Starchiojd'),
9459
+ (9425, 'RO ', '309', 'Stefesti'),
9460
+ (9426, 'RO ', '309', 'Stejaru'),
9461
+ (9427, 'RO ', '309', 'Stoenesti'),
9462
+ (9428, 'RO ', '309', 'Straosti'),
9463
+ (9429, 'RO ', '309', 'Strejnicu'),
9464
+ (9430, 'RO ', '309', 'Surani'),
9465
+ (9431, 'RO ', '309', 'Surdesti'),
9466
+ (9432, 'RO ', '309', 'Talea'),
9467
+ (9433, 'RO ', '309', 'Tantareni'),
9468
+ (9434, 'RO ', '309', 'Tarculesti'),
9469
+ (9435, 'RO ', '309', 'Targsoru Nou'),
9470
+ (9436, 'RO ', '309', 'Targsoru Vechi'),
9471
+ (9437, 'RO ', '309', 'Tariceni'),
9472
+ (9438, 'RO ', '309', 'Tarlesti'),
9473
+ (9439, 'RO ', '309', 'Tatarani'),
9474
+ (9440, 'RO ', '309', 'Tataru'),
9475
+ (9441, 'RO ', '309', 'Teisani'),
9476
+ (9442, 'RO ', '309', 'Telega'),
9477
+ (9443, 'RO ', '309', 'Tesila'),
9478
+ (9444, 'RO ', '309', 'Tinosu'),
9479
+ (9445, 'RO ', '309', 'Tintea'),
9480
+ (9446, 'RO ', '309', 'Tiparesti'),
9481
+ (9447, 'RO ', '309', 'Tisa'),
9482
+ (9448, 'RO ', '309', 'Tomsani'),
9483
+ (9449, 'RO ', '309', 'Tontesti'),
9484
+ (9450, 'RO ', '309', 'Traisteni'),
9485
+ (9451, 'RO ', '309', 'Trenu'),
9486
+ (9452, 'RO ', '309', 'Ungureni (Gherghita)'),
9487
+ (9453, 'RO ', '309', 'Urlati'),
9488
+ (9454, 'RO ', '309', 'Urleta'),
9489
+ (9455, 'RO ', '309', 'Vadu Parului'),
9490
+ (9456, 'RO ', '309', 'Vadu Sapat'),
9491
+ (9457, 'RO ', '309', 'Valcanesti'),
9492
+ (9458, 'RO ', '309', 'Valea Anei'),
9493
+ (9459, 'RO ', '309', 'Valea Borului'),
9494
+ (9460, 'RO ', '309', 'Valea Bradului'),
9495
+ (9461, 'RO ', '309', 'Valea Calugareasca'),
9496
+ (9462, 'RO ', '309', 'Valea Cricovului'),
9497
+ (9463, 'RO ', '309', 'Valea Cucului'),
9498
+ (9464, 'RO ', '309', 'Valea Doftanei'),
9499
+ (9465, 'RO ', '309', 'Valea Dulce'),
9500
+ (9466, 'RO ', '309', 'Valea Larga'),
9501
+ (9467, 'RO ', '309', 'Valea Nicovani'),
9502
+ (9468, 'RO ', '309', 'Valea Oprii'),
9503
+ (9469, 'RO ', '309', 'Valea Pietrei'),
9504
+ (9470, 'RO ', '309', 'Valea Poienii'),
9505
+ (9471, 'RO ', '309', 'Valea Popii'),
9506
+ (9472, 'RO ', '309', 'Valea Stalpului'),
9507
+ (9473, 'RO ', '309', 'Valea Tarsei'),
9508
+ (9474, 'RO ', '309', 'Valea Ursoii'),
9509
+ (9475, 'RO ', '309', 'Valenii de Munte'),
9510
+ (9476, 'RO ', '309', 'Varbila'),
9511
+ (9477, 'RO ', '309', 'Varbilau'),
9512
+ (9478, 'RO ', '309', 'Varnita'),
9513
+ (9479, 'RO ', '309', 'Vistieru'),
9514
+ (9480, 'RO ', '309', 'Vitioara de Sus'),
9515
+ (9481, 'RO ', '309', 'Zalhanaua'),
9516
+ (9482, 'RO ', '309', 'Zamfira'),
9517
+ (9483, 'RO ', '309', 'Zanoaga'),
9518
+ (9484, 'RO ', '311', 'Adalin'),
9519
+ (9485, 'RO ', '311', 'Aghires'),
9520
+ (9486, 'RO ', '311', 'Agrij'),
9521
+ (9487, 'RO ', '311', 'Aleus'),
9522
+ (9488, 'RO ', '311', 'Almasu'),
9523
+ (9489, 'RO ', '311', 'Alunis'),
9524
+ (9490, 'RO ', '311', 'Archid'),
9525
+ (9491, 'RO ', '311', 'Babeni '),
9526
+ (9492, 'RO ', '311', 'Babiu'),
9527
+ (9493, 'RO ', '311', 'Badacin'),
9528
+ (9494, 'RO ', '311', 'Badon'),
9529
+ (9495, 'RO ', '311', 'Baica'),
9530
+ (9496, 'RO ', '311', 'Balan'),
9531
+ (9497, 'RO ', '311', 'Ban'),
9532
+ (9498, 'RO ', '311', 'Banisor'),
9533
+ (9499, 'RO ', '311', 'Barsa'),
9534
+ (9500, 'RO ', '311', 'Barsau Mare'),
9535
+ (9501, 'RO ', '311', 'Barsauta'),
9536
+ (9502, 'RO ', '311', 'Benesat'),
9537
+ (9503, 'RO ', '311', 'Bercea'),
9538
+ (9504, 'RO ', '311', 'Bezded'),
9539
+ (9505, 'RO ', '311', 'Bic'),
9540
+ (9506, 'RO ', '311', 'Bilghez'),
9541
+ (9507, 'RO ', '311', 'Biusa'),
9542
+ (9508, 'RO ', '311', 'Bizusa-Bai'),
9543
+ (9509, 'RO ', '311', 'Bobota'),
9544
+ (9510, 'RO ', '311', 'Bocsa'),
9545
+ (9511, 'RO ', '311', 'Bocsita'),
9546
+ (9512, 'RO ', '311', 'Bodia'),
9547
+ (9513, 'RO ', '311', 'Bogdana'),
9548
+ (9514, 'RO ', '311', 'Boghis'),
9549
+ (9515, 'RO ', '311', 'Borla'),
9550
+ (9516, 'RO ', '311', 'Borza'),
9551
+ (9517, 'RO ', '311', 'Bozies'),
9552
+ (9518, 'RO ', '311', 'Bozna'),
9553
+ (9519, 'RO ', '311', 'Braglez'),
9554
+ (9520, 'RO ', '311', 'Brebi'),
9555
+ (9521, 'RO ', '311', 'Brusturi'),
9556
+ (9522, 'RO ', '311', 'Buciumi'),
9557
+ (9523, 'RO ', '311', 'Bulgari'),
9558
+ (9524, 'RO ', '311', 'Buzas'),
9559
+ (9525, 'RO ', '311', 'Calacea'),
9560
+ (9526, 'RO ', '311', 'Camar'),
9561
+ (9527, 'RO ', '311', 'Campia'),
9562
+ (9528, 'RO ', '311', 'Capalna'),
9563
+ (9529, 'RO ', '311', 'Carastelec'),
9564
+ (9530, 'RO ', '311', 'Ceaca'),
9565
+ (9531, 'RO ', '311', 'Cehei'),
9566
+ (9532, 'RO ', '311', 'Cehu Silvaniei'),
9567
+ (9533, 'RO ', '311', 'Cerisa'),
9568
+ (9534, 'RO ', '311', 'Cernuc'),
9569
+ (9535, 'RO ', '311', 'Chechis'),
9570
+ (9536, 'RO ', '311', 'Chendrea'),
9571
+ (9537, 'RO ', '311', 'Chendremal'),
9572
+ (9538, 'RO ', '311', 'Cheud'),
9573
+ (9539, 'RO ', '311', 'Chichisa'),
9574
+ (9540, 'RO ', '311', 'Chiesd'),
9575
+ (9541, 'RO ', '311', 'Chilioara'),
9576
+ (9542, 'RO ', '311', 'Chizeni'),
9577
+ (9543, 'RO ', '311', 'Ciglean'),
9578
+ (9544, 'RO ', '311', 'Ciocmani'),
9579
+ (9545, 'RO ', '311', 'Ciula'),
9580
+ (9546, 'RO ', '311', 'Ciumarna'),
9581
+ (9547, 'RO ', '311', 'Ciureni'),
9582
+ (9548, 'RO ', '311', 'Cizer'),
9583
+ (9549, 'RO ', '311', 'Clit'),
9584
+ (9550, 'RO ', '311', 'Colonia Sighetu Silvaniei'),
9585
+ (9551, 'RO ', '311', 'Cormenis'),
9586
+ (9552, 'RO ', '311', 'Coseiu'),
9587
+ (9553, 'RO ', '311', 'Cosniciu de Jos'),
9588
+ (9554, 'RO ', '311', 'Cosniciu de Sus'),
9589
+ (9555, 'RO ', '311', 'Cozla'),
9590
+ (9556, 'RO ', '311', 'Crasna'),
9591
+ (9557, 'RO ', '311', 'Creaca'),
9592
+ (9558, 'RO ', '311', 'Criseni'),
9593
+ (9559, 'RO ', '311', 'Cristelec'),
9594
+ (9560, 'RO ', '311', 'Cristolt'),
9595
+ (9561, 'RO ', '311', 'Cristoltel'),
9596
+ (9562, 'RO ', '311', 'Cristur-Criseni'),
9597
+ (9563, 'RO ', '311', 'Cublesu'),
9598
+ (9564, 'RO ', '311', 'Cuceu'),
9599
+ (9565, 'RO ', '311', 'Cuciulat'),
9600
+ (9566, 'RO ', '311', 'Cutis'),
9601
+ (9567, 'RO ', '311', 'Cuzaplac'),
9602
+ (9568, 'RO ', '311', 'Dabiceni'),
9603
+ (9569, 'RO ', '311', 'Deja'),
9604
+ (9570, 'RO ', '311', 'Deleni'),
9605
+ (9571, 'RO ', '311', 'Dersida'),
9606
+ (9572, 'RO ', '311', 'Diosod'),
9607
+ (9573, 'RO ', '311', 'Doba'),
9608
+ (9574, 'RO ', '311', 'Dobrin'),
9609
+ (9575, 'RO ', '311', 'Dobrocina'),
9610
+ (9576, 'RO ', '311', 'Doh'),
9611
+ (9577, 'RO ', '311', 'Dolheni'),
9612
+ (9578, 'RO ', '311', 'Dolu'),
9613
+ (9579, 'RO ', '311', 'Domnin'),
9614
+ (9580, 'RO ', '311', 'Dragu'),
9615
+ (9581, 'RO ', '311', 'Drighiu'),
9616
+ (9582, 'RO ', '311', 'Dumuslau'),
9617
+ (9583, 'RO ', '311', 'Fabrica'),
9618
+ (9584, 'RO ', '311', 'Fagetu'),
9619
+ (9585, 'RO ', '311', 'Falcusa'),
9620
+ (9586, 'RO ', '311', 'Fantanele'),
9621
+ (9587, 'RO ', '311', 'Fantanele-Rus'),
9622
+ (9588, 'RO ', '311', 'Fetindia'),
9623
+ (9589, 'RO ', '311', 'Fildu de Jos'),
9624
+ (9590, 'RO ', '311', 'Fildu de Mijloc'),
9625
+ (9591, 'RO ', '311', 'Fildu de sus'),
9626
+ (9592, 'RO ', '311', 'Firminis'),
9627
+ (9593, 'RO ', '311', 'Fizes'),
9628
+ (9594, 'RO ', '311', 'Fodora'),
9629
+ (9595, 'RO ', '311', 'Francenii de Piatra'),
9630
+ (9596, 'RO ', '311', 'Fufez'),
9631
+ (9597, 'RO ', '311', 'Galaseni'),
9632
+ (9598, 'RO ', '311', 'Galgau'),
9633
+ (9599, 'RO ', '311', 'Galgau Almasului'),
9634
+ (9600, 'RO ', '311', 'Galpaia'),
9635
+ (9601, 'RO ', '311', 'Garbou'),
9636
+ (9602, 'RO ', '311', 'Garceiu'),
9637
+ (9603, 'RO ', '311', 'Giurtelecu simleului'),
9638
+ (9604, 'RO ', '311', 'Glod'),
9639
+ (9605, 'RO ', '311', 'Gostila'),
9640
+ (9606, 'RO ', '311', 'Gura Vladesei'),
9641
+ (9607, 'RO ', '311', 'Guruslau'),
9642
+ (9608, 'RO ', '311', 'Halmasd'),
9643
+ (9609, 'RO ', '311', 'Hasmas'),
9644
+ (9610, 'RO ', '311', 'Hereclean'),
9645
+ (9611, 'RO ', '311', 'Hida'),
9646
+ (9612, 'RO ', '311', 'Horoatu Cehului'),
9647
+ (9613, 'RO ', '311', 'Horoatu Crasnei'),
9648
+ (9614, 'RO ', '311', 'Hurez'),
9649
+ (9615, 'RO ', '311', 'Huseni'),
9650
+ (9616, 'RO ', '311', 'Husia'),
9651
+ (9617, 'RO ', '311', 'Huta'),
9652
+ (9618, 'RO ', '311', 'Iaz'),
9653
+ (9619, 'RO ', '311', 'Ileanda'),
9654
+ (9620, 'RO ', '311', 'Ilisua'),
9655
+ (9621, 'RO ', '311', 'Inau'),
9656
+ (9622, 'RO ', '311', 'Ip'),
9657
+ (9623, 'RO ', '311', 'Jac'),
9658
+ (9624, 'RO ', '311', 'jebucu'),
9659
+ (9625, 'RO ', '311', 'Jibou'),
9660
+ (9626, 'RO ', '311', 'Lazuri'),
9661
+ (9627, 'RO ', '311', 'Lemniu'),
9662
+ (9628, 'RO ', '311', 'Lesmir'),
9663
+ (9629, 'RO ', '311', 'Letca'),
9664
+ (9630, 'RO ', '311', 'Lompirt'),
9665
+ (9631, 'RO ', '311', 'Lozna'),
9666
+ (9632, 'RO ', '311', 'Luminisu'),
9667
+ (9633, 'RO ', '311', 'Lupoaia'),
9668
+ (9634, 'RO ', '311', 'Maeriste'),
9669
+ (9635, 'RO ', '311', 'Magura'),
9670
+ (9636, 'RO ', '311', 'Mal'),
9671
+ (9637, 'RO ', '311', 'Maladia'),
9672
+ (9638, 'RO ', '311', 'Maleni'),
9673
+ (9639, 'RO ', '311', 'Marca'),
9674
+ (9640, 'RO ', '311', 'Marca-Huta'),
9675
+ (9641, 'RO ', '311', 'Marin'),
9676
+ (9642, 'RO ', '311', 'Mesesenii de Jos'),
9677
+ (9643, 'RO ', '311', 'Mesesenii de Sus'),
9678
+ (9644, 'RO ', '311', 'Mesteacanu'),
9679
+ (9645, 'RO ', '311', 'Mierta'),
9680
+ (9646, 'RO ', '311', 'Miluani'),
9681
+ (9647, 'RO ', '311', 'Mineu'),
9682
+ (9648, 'RO ', '311', 'Mirsid'),
9683
+ (9649, 'RO ', '311', 'Moiad'),
9684
+ (9650, 'RO ', '311', 'Moigrad-Porolissum'),
9685
+ (9651, 'RO ', '311', 'Motis'),
9686
+ (9652, 'RO ', '311', 'Muncel'),
9687
+ (9653, 'RO ', '311', 'Nadis'),
9688
+ (9654, 'RO ', '311', 'Naimon'),
9689
+ (9655, 'RO ', '311', 'Napradea'),
9690
+ (9656, 'RO ', '311', 'Notig'),
9691
+ (9657, 'RO ', '311', 'Nusfalau'),
9692
+ (9658, 'RO ', '311', 'Ortelec'),
9693
+ (9659, 'RO ', '311', 'Padureni'),
9694
+ (9660, 'RO ', '311', 'Paduris'),
9695
+ (9661, 'RO ', '311', 'Panic'),
9696
+ (9662, 'RO ', '311', 'Pausa'),
9697
+ (9663, 'RO ', '311', 'Peceiu'),
9698
+ (9664, 'RO ', '311', 'Pericei'),
9699
+ (9665, 'RO ', '311', 'Periceiu Mic'),
9700
+ (9666, 'RO ', '311', 'Perii Vadului'),
9701
+ (9667, 'RO ', '311', 'Petrindu'),
9702
+ (9668, 'RO ', '311', 'Petrinzel'),
9703
+ (9669, 'RO ', '311', 'Pirosa'),
9704
+ (9670, 'RO ', '311', 'Plesca'),
9705
+ (9671, 'RO ', '311', 'Plopis'),
9706
+ (9672, 'RO ', '311', 'Poarta Salajului'),
9707
+ (9673, 'RO ', '311', 'Podisu'),
9708
+ (9674, 'RO ', '311', 'Poiana Blenchii'),
9709
+ (9675, 'RO ', '311', 'Poiana Magura'),
9710
+ (9676, 'RO ', '311', 'Poiana Ontii'),
9711
+ (9677, 'RO ', '311', 'Poienita'),
9712
+ (9678, 'RO ', '311', 'Popeni'),
9713
+ (9679, 'RO ', '311', 'Popteleac'),
9714
+ (9680, 'RO ', '311', 'Port'),
9715
+ (9681, 'RO ', '311', 'Preluci'),
9716
+ (9682, 'RO ', '311', 'Preoteasa'),
9717
+ (9683, 'RO ', '311', 'Pria'),
9718
+ (9684, 'RO ', '311', 'Prodanesti'),
9719
+ (9685, 'RO ', '311', 'Purcaret'),
9720
+ (9686, 'RO ', '311', 'Pusta'),
9721
+ (9687, 'RO ', '311', 'Racas'),
9722
+ (9688, 'RO ', '311', 'Rastoci'),
9723
+ (9689, 'RO ', '311', 'Rastolt'),
9724
+ (9690, 'RO ', '311', 'Rastoltu Desert'),
9725
+ (9691, 'RO ', '311', 'Ratin'),
9726
+ (9692, 'RO ', '311', 'Ratovei'),
9727
+ (9693, 'RO ', '311', 'Recea'),
9728
+ (9694, 'RO ', '311', 'Recea Mica'),
9729
+ (9695, 'RO ', '311', 'Rogna'),
9730
+ (9696, 'RO ', '311', 'Romanasi'),
9731
+ (9697, 'RO ', '311', 'Romita'),
9732
+ (9698, 'RO ', '311', 'Rona'),
9733
+ (9699, 'RO ', '311', 'Ruginoasa'),
9734
+ (9700, 'RO ', '311', 'Rus'),
9735
+ (9701, 'RO ', '311', 'Sag'),
9736
+ (9702, 'RO ', '311', 'Salajeni'),
9737
+ (9703, 'RO ', '311', 'Salatig'),
9738
+ (9704, 'RO ', '311', 'Samsud'),
9739
+ (9705, 'RO ', '311', 'Sancraiu Almasului'),
9740
+ (9706, 'RO ', '311', 'Sancraiu Silvaniei'),
9741
+ (9707, 'RO ', '311', 'Sangeorgiu de Meses'),
9742
+ (9708, 'RO ', '311', 'Sanmihaiu Almasului'),
9743
+ (9709, 'RO ', '311', 'Sanpetru Almasului'),
9744
+ (9710, 'RO ', '311', 'Santa Maria'),
9745
+ (9711, 'RO ', '311', 'Sarbi'),
9746
+ (9712, 'RO ', '311', 'Sarmasag'),
9747
+ (9713, 'RO ', '311', 'Sasa'),
9748
+ (9714, 'RO ', '311', 'Seredeiu'),
9749
+ (9715, 'RO ', '311', 'Sfaras'),
9750
+ (9716, 'RO ', '311', 'Sici'),
9751
+ (9717, 'RO ', '311', 'Sighetu Silvaniei'),
9752
+ (9718, 'RO ', '311', 'Simisna'),
9753
+ (9719, 'RO ', '311', 'Simleu Silvaniei'),
9754
+ (9720, 'RO ', '311', 'Soimus'),
9755
+ (9721, 'RO ', '311', 'Soimuseni'),
9756
+ (9722, 'RO ', '311', 'Solomon'),
9757
+ (9723, 'RO ', '311', 'Solona'),
9758
+ (9724, 'RO ', '311', 'Somes-Guruslau'),
9759
+ (9725, 'RO ', '311', 'Somes-Odorhei'),
9760
+ (9726, 'RO ', '311', 'Stana(Huedin)'),
9761
+ (9727, 'RO ', '311', 'Stana(Zalau)'),
9762
+ (9728, 'RO ', '311', 'Starciu'),
9763
+ (9729, 'RO ', '311', 'Stoboru'),
9764
+ (9730, 'RO ', '311', 'Stupini'),
9765
+ (9731, 'RO ', '311', 'Sub Cetate'),
9766
+ (9732, 'RO ', '311', 'Sumal'),
9767
+ (9733, 'RO ', '311', 'Surduc'),
9768
+ (9734, 'RO ', '311', 'Sutoru'),
9769
+ (9735, 'RO ', '311', 'Tamasa'),
9770
+ (9736, 'RO ', '311', 'Tarmure'),
9771
+ (9737, 'RO ', '311', 'Taudu'),
9772
+ (9738, 'RO ', '311', 'Tetisu'),
9773
+ (9739, 'RO ', '311', 'Tihau'),
9774
+ (9740, 'RO ', '311', 'Toplita'),
9775
+ (9741, 'RO ', '311', 'Tranis'),
9776
+ (9742, 'RO ', '311', 'Trestia'),
9777
+ (9743, 'RO ', '311', 'Treznea'),
9778
+ (9744, 'RO ', '311', 'Turbuta'),
9779
+ (9745, 'RO ', '311', 'Tusa'),
9780
+ (9746, 'RO ', '311', 'Ugrutiu'),
9781
+ (9747, 'RO ', '311', 'Uileacu Simleului'),
9782
+ (9748, 'RO ', '311', 'Ulciug'),
9783
+ (9749, 'RO ', '311', 'Vadurele'),
9784
+ (9750, 'RO ', '311', 'Valcau de Jos'),
9785
+ (9751, 'RO ', '311', 'Valcau de Sus'),
9786
+ (9752, 'RO ', '311', 'Valea Ciurenilor'),
9787
+ (9753, 'RO ', '311', 'Valea Hranei'),
9788
+ (9754, 'RO ', '311', 'Valea Lesului'),
9789
+ (9755, 'RO ', '311', 'Valea Loznei'),
9790
+ (9756, 'RO ', '311', 'Valea Lunga'),
9791
+ (9757, 'RO ', '311', 'Valea Pomilor'),
9792
+ (9758, 'RO ', '311', 'Valeni'),
9793
+ (9759, 'RO ', '311', 'Valisoara'),
9794
+ (9760, 'RO ', '311', 'Var'),
9795
+ (9761, 'RO ', '311', 'Varsolt'),
9796
+ (9762, 'RO ', '311', 'Vartesca'),
9797
+ (9763, 'RO ', '311', 'Verveghiu'),
9798
+ (9764, 'RO ', '311', 'Viile Jacului'),
9799
+ (9765, 'RO ', '311', 'Voivodeni'),
9800
+ (9766, 'RO ', '311', 'Zalau'),
9801
+ (9767, 'RO ', '311', 'Zalha'),
9802
+ (9768, 'RO ', '311', 'Zalnoc'),
9803
+ (9769, 'RO ', '311', 'Zauan'),
9804
+ (9770, 'RO ', '311', 'Zauan-Bai'),
9805
+ (9771, 'RO ', '311', 'Zimbor'),
9806
+ (9772, 'RO ', '310', 'Acas'),
9807
+ (9773, 'RO ', '310', 'Aciua'),
9808
+ (9774, 'RO ', '310', 'Adrian'),
9809
+ (9775, 'RO ', '310', 'Ady Endre'),
9810
+ (9776, 'RO ', '310', 'Agris'),
9811
+ (9777, 'RO ', '310', 'Aliceni'),
9812
+ (9778, 'RO ', '310', 'Aliza'),
9813
+ (9779, 'RO ', '310', 'Amati'),
9814
+ (9780, 'RO ', '310', 'Ambud'),
9815
+ (9781, 'RO ', '310', 'Andrid'),
9816
+ (9782, 'RO ', '310', 'Apa'),
9817
+ (9783, 'RO ', '310', 'Apateu'),
9818
+ (9784, 'RO ', '310', 'Ardud'),
9819
+ (9785, 'RO ', '310', 'Ardud-Vii'),
9820
+ (9786, 'RO ', '310', 'Atea'),
9821
+ (9787, 'RO ', '310', 'Baba Novac'),
9822
+ (9788, 'RO ', '310', 'Babasesti'),
9823
+ (9789, 'RO ', '310', 'Babesti'),
9824
+ (9790, 'RO ', '310', 'Babta'),
9825
+ (9791, 'RO ', '310', 'Barsau'),
9826
+ (9792, 'RO ', '310', 'Barsau de Jos'),
9827
+ (9793, 'RO ', '310', 'Barsau de Sus'),
9828
+ (9794, 'RO ', '310', 'Batarci'),
9829
+ (9795, 'RO ', '310', 'Becheni'),
9830
+ (9796, 'RO ', '310', 'Beltiug'),
9831
+ (9797, 'RO ', '310', 'Bercu'),
9832
+ (9798, 'RO ', '310', 'Bercu Nou'),
9833
+ (9799, 'RO ', '310', 'Berea '),
9834
+ (9800, 'RO ', '310', 'Berindan'),
9835
+ (9801, 'RO ', '310', 'Berveni'),
9836
+ (9802, 'RO ', '310', 'Bicau'),
9837
+ (9803, 'RO ', '310', 'Bixad'),
9838
+ (9804, 'RO ', '310', 'Blaja'),
9839
+ (9805, 'RO ', '310', 'Bocicau'),
9840
+ (9806, 'RO ', '310', 'Bogdand'),
9841
+ (9807, 'RO ', '310', 'Boghis '),
9842
+ (9808, 'RO ', '310', 'Boinesti'),
9843
+ (9809, 'RO ', '310', 'Bolda'),
9844
+ (9810, 'RO ', '310', 'Borlesti'),
9845
+ (9811, 'RO ', '310', 'Botiz'),
9846
+ (9812, 'RO ', '310', 'Calinesti-Oas'),
9847
+ (9813, 'RO ', '310', 'Camarzana'),
9848
+ (9814, 'RO ', '310', 'Camin'),
9849
+ (9815, 'RO ', '310', 'Capleni'),
9850
+ (9816, 'RO ', '310', 'Caraseu'),
9851
+ (9817, 'RO ', '310', 'Carei'),
9852
+ (9818, 'RO ', '310', 'Cauas'),
9853
+ (9819, 'RO ', '310', 'Cean'),
9854
+ (9820, 'RO ', '310', 'Cehal'),
9855
+ (9821, 'RO ', '310', 'Cehalut'),
9856
+ (9822, 'RO ', '310', 'Certeze'),
9857
+ (9823, 'RO ', '310', 'Chegea'),
9858
+ (9824, 'RO ', '310', 'Chereusa'),
9859
+ (9825, 'RO ', '310', 'Chilia'),
9860
+ (9826, 'RO ', '310', 'Chisau'),
9861
+ (9827, 'RO ', '310', 'Cidreag'),
9862
+ (9828, 'RO ', '310', 'Cig'),
9863
+ (9829, 'RO ', '310', 'Cionchesti'),
9864
+ (9830, 'RO ', '310', 'Ciumesti'),
9865
+ (9831, 'RO ', '310', 'Ciuperceni'),
9866
+ (9832, 'RO ', '310', 'Coca'),
9867
+ (9833, 'RO ', '310', 'Comlausa'),
9868
+ (9834, 'RO ', '310', 'Corod'),
9869
+ (9835, 'RO ', '310', 'Corund'),
9870
+ (9836, 'RO ', '310', 'Craidorolt'),
9871
+ (9837, 'RO ', '310', 'Criseni'),
9872
+ (9838, 'RO ', '310', 'Crucisor'),
9873
+ (9839, 'RO ', '310', 'Cucu'),
9874
+ (9840, 'RO ', '310', 'Culciu'),
9875
+ (9841, 'RO ', '310', 'Culciu Mare'),
9876
+ (9842, 'RO ', '310', 'Culciu Mic'),
9877
+ (9843, 'RO ', '310', 'Cuta'),
9878
+ (9844, 'RO ', '310', 'Dacia'),
9879
+ (9845, 'RO ', '310', 'Dara'),
9880
+ (9846, 'RO ', '310', 'Decebal'),
9881
+ (9847, 'RO ', '310', 'Dindesti'),
9882
+ (9848, 'RO ', '310', 'Dindestiu Mic'),
9883
+ (9849, 'RO ', '310', 'Doba'),
9884
+ (9850, 'RO ', '310', 'Dobolt'),
9885
+ (9851, 'RO ', '310', 'Dobra'),
9886
+ (9852, 'RO ', '310', 'Domanesti'),
9887
+ (9853, 'RO ', '310', 'Dorolt'),
9888
+ (9854, 'RO ', '310', 'Draguseni'),
9889
+ (9855, 'RO ', '310', 'Dumbrava'),
9890
+ (9856, 'RO ', '310', 'Eriu-Sancrai'),
9891
+ (9857, 'RO ', '310', 'Eteni'),
9892
+ (9858, 'RO ', '310', 'Foieni'),
9893
+ (9859, 'RO ', '310', 'Ganas'),
9894
+ (9860, 'RO ', '310', 'Gelu'),
9895
+ (9861, 'RO ', '310', 'Gerausa'),
9896
+ (9862, 'RO ', '310', 'Ghenci'),
9897
+ (9863, 'RO ', '310', 'Gherta Mare'),
9898
+ (9864, 'RO ', '310', 'Gherta Mica'),
9899
+ (9865, 'RO ', '310', 'Ghilesti'),
9900
+ (9866, 'RO ', '310', 'Ghilvaci'),
9901
+ (9867, 'RO ', '310', 'Ghirisa'),
9902
+ (9868, 'RO ', '310', 'Ghirolt'),
9903
+ (9869, 'RO ', '310', 'Giorocuta'),
9904
+ (9870, 'RO ', '310', 'Giungi'),
9905
+ (9871, 'RO ', '310', 'Giurtelecu Hododului'),
9906
+ (9872, 'RO ', '310', 'Halmeu'),
9907
+ (9873, 'RO ', '310', 'Halmeu-Vii'),
9908
+ (9874, 'RO ', '310', 'Hodisa'),
9909
+ (9875, 'RO ', '310', 'Hodod'),
9910
+ (9876, 'RO ', '310', 'HOMOROADE'),
9911
+ (9877, 'RO ', '310', 'Homorodu de Jos'),
9912
+ (9878, 'RO ', '310', 'Homorodu de Mijloc'),
9913
+ (9879, 'RO ', '310', 'Homorodu de Sus'),
9914
+ (9880, 'RO ', '310', 'Horea'),
9915
+ (9881, 'RO ', '310', 'Hotoan'),
9916
+ (9882, 'RO ', '310', 'Hrip'),
9917
+ (9883, 'RO ', '310', 'Hurezu Mare'),
9918
+ (9884, 'RO ', '310', 'Huta-Certeze'),
9919
+ (9885, 'RO ', '310', 'Ianculesti'),
9920
+ (9886, 'RO ', '310', 'Iegheriste'),
9921
+ (9887, 'RO ', '310', 'Iojib'),
9922
+ (9888, 'RO ', '310', 'Irina'),
9923
+ (9889, 'RO ', '310', 'Istrau'),
9924
+ (9890, 'RO ', '310', 'Lazuri'),
9925
+ (9891, 'RO ', '310', 'Lechinta'),
9926
+ (9892, 'RO ', '310', 'Lelei'),
9927
+ (9893, 'RO ', '310', 'Lipau'),
9928
+ (9894, 'RO ', '310', 'Livada'),
9929
+ (9895, 'RO ', '310', 'Livada Mica'),
9930
+ (9896, 'RO ', '310', 'Lucaceni'),
9931
+ (9897, 'RO ', '310', 'Luna'),
9932
+ (9898, 'RO ', '310', 'Lunca Apei'),
9933
+ (9899, 'RO ', '310', 'Madaras'),
9934
+ (9900, 'RO ', '310', 'Marius'),
9935
+ (9901, 'RO ', '310', 'Marna Noua'),
9936
+ (9902, 'RO ', '310', 'Martinesti'),
9937
+ (9903, 'RO ', '310', 'Medies-Raturi'),
9938
+ (9904, 'RO ', '310', 'Mediesu Aurit'),
9939
+ (9905, 'RO ', '310', 'Medies-Vii'),
9940
+ (9906, 'RO ', '310', 'Medisa'),
9941
+ (9907, 'RO ', '310', 'Mesteacan'),
9942
+ (9908, 'RO ', '310', 'Micula'),
9943
+ (9909, 'RO ', '310', 'Micula Noua'),
9944
+ (9910, 'RO ', '310', 'Mihaieni'),
9945
+ (9911, 'RO ', '310', 'Moftin'),
9946
+ (9912, 'RO ', '310', 'Moftinu Mare'),
9947
+ (9913, 'RO ', '310', 'Moftinu Mic'),
9948
+ (9914, 'RO ', '310', 'Moiseni'),
9949
+ (9915, 'RO ', '310', 'Nadisu Hododului'),
9950
+ (9916, 'RO ', '310', 'Necopoi'),
9951
+ (9917, 'RO ', '310', 'Negresti-Oas'),
9952
+ (9918, 'RO ', '310', 'Nisipeni'),
9953
+ (9919, 'RO ', '310', 'Noroieni'),
9954
+ (9920, 'RO ', '310', 'Oar'),
9955
+ (9921, 'RO ', '310', 'Odoreu'),
9956
+ (9922, 'RO ', '310', 'Orasu Nou'),
9957
+ (9923, 'RO ', '310', 'Orasu Nou-Vii'),
9958
+ (9924, 'RO ', '310', 'Orbau'),
9959
+ (9925, 'RO ', '310', 'Pasunea Mare'),
9960
+ (9926, 'RO ', '310', 'Paulesti'),
9961
+ (9927, 'RO ', '310', 'Paulian'),
9962
+ (9928, 'RO ', '310', 'Peles'),
9963
+ (9929, 'RO ', '310', 'Pelisor'),
9964
+ (9930, 'RO ', '310', 'Petea'),
9965
+ (9931, 'RO ', '310', 'Petin'),
9966
+ (9932, 'RO ', '310', 'Petresti'),
9967
+ (9933, 'RO ', '310', 'Pir'),
9968
+ (9934, 'RO ', '310', 'Piru Nou'),
9969
+ (9935, 'RO ', '310', 'Piscari'),
9970
+ (9936, 'RO ', '310', 'Piscolt'),
9971
+ (9937, 'RO ', '310', 'Poiana Codrului'),
9972
+ (9938, 'RO ', '310', 'Pomi'),
9973
+ (9939, 'RO ', '310', 'Portita'),
9974
+ (9940, 'RO ', '310', 'Porumbesti'),
9975
+ (9941, 'RO ', '310', 'Potau'),
9976
+ (9942, 'RO ', '310', 'Prilog'),
9977
+ (9943, 'RO ', '310', 'Prilog-Vii'),
9978
+ (9944, 'RO ', '310', 'Racova'),
9979
+ (9945, 'RO ', '310', 'Racsa'),
9980
+ (9946, 'RO ', '310', 'Racsa-Vii'),
9981
+ (9947, 'RO ', '310', 'Radulesti'),
9982
+ (9948, 'RO ', '310', 'Ratesti '),
9983
+ (9949, 'RO ', '310', 'Ratiu'),
9984
+ (9950, 'RO ', '310', 'Remetea Oasului'),
9985
+ (9951, 'RO ', '310', 'Resighea'),
9986
+ (9952, 'RO ', '310', 'Romanesti'),
9987
+ (9953, 'RO ', '310', 'Rosiori'),
9988
+ (9954, 'RO ', '310', 'Ruseni'),
9989
+ (9955, 'RO ', '310', 'Sacaseni'),
9990
+ (9956, 'RO ', '310', 'Sai'),
9991
+ (9957, 'RO ', '310', 'Sandra'),
9992
+ (9958, 'RO ', '310', 'Sanislau'),
9993
+ (9959, 'RO ', '310', 'Sanmiclaus'),
9994
+ (9960, 'RO ', '310', 'Santau'),
9995
+ (9961, 'RO ', '310', 'Saratura'),
9996
+ (9962, 'RO ', '310', 'Sarauad'),
9997
+ (9963, 'RO ', '310', 'Sarvazel'),
9998
+ (9964, 'RO ', '310', 'Satmarel'),
9999
+ (9965, 'RO ', '310', 'Satu Mare'),
10000
+ (9966, 'RO ', '310', 'Satu Mic'),
10001
+ (9967, 'RO ', '310', 'Sauca'),
10002
+ (9968, 'RO ', '310', 'Scarisoara Noua'),
10003
+ (9969, 'RO ', '310', 'Secheresa'),
10004
+ (9970, 'RO ', '310', 'Ser'),
10005
+ (9971, 'RO ', '310', 'Silvas'),
10006
+ (9972, 'RO ', '310', 'Sirlau'),
10007
+ (9973, 'RO ', '310', 'Socond'),
10008
+ (9974, 'RO ', '310', 'Soconzel'),
10009
+ (9975, 'RO ', '310', 'Solduba'),
10010
+ (9976, 'RO ', '310', 'Someseni'),
10011
+ (9977, 'RO ', '310', 'Stana'),
10012
+ (9978, 'RO ', '310', 'Sudurau'),
10013
+ (9979, 'RO ', '310', 'Supur'),
10014
+ (9980, 'RO ', '310', 'Supuru de jos'),
10015
+ (9981, 'RO ', '310', 'Supuru de Sus'),
10016
+ (9982, 'RO ', '310', 'Tamaseni'),
10017
+ (9983, 'RO ', '310', 'Tarna Mare'),
10018
+ (9984, 'RO ', '310', 'Tarsolt'),
10019
+ (9985, 'RO ', '310', 'Tasnad'),
10020
+ (9986, 'RO ', '310', 'Tataresti'),
10021
+ (9987, 'RO ', '310', 'Teghea'),
10022
+ (9988, 'RO ', '310', 'Terebesti'),
10023
+ (9989, 'RO ', '310', 'Tireac'),
10024
+ (9990, 'RO ', '310', 'Tiream'),
10025
+ (9991, 'RO ', '310', 'Traian'),
10026
+ (9992, 'RO ', '310', 'Trip'),
10027
+ (9993, 'RO ', '310', 'Tur'),
10028
+ (9994, 'RO ', '310', 'Turt'),
10029
+ (9995, 'RO ', '310', 'Turt-Bai'),
10030
+ (9996, 'RO ', '310', 'TuruLung'),
10031
+ (9997, 'RO ', '310', 'Turulung-Vii'),
10032
+ (9998, 'RO ', '310', 'Unimat'),
10033
+ (9999, 'RO ', '310', 'Urziceni'),
10034
+ (10000, 'RO ', '310', 'Urziceni-Padure'),
10035
+ (10001, 'RO ', '310', 'Vagas'),
10036
+ (10002, 'RO ', '310', 'Valea Morii'),
10037
+ (10003, 'RO ', '310', 'Valea Seaca'),
10038
+ (10004, 'RO ', '310', 'Valea Vinului'),
10039
+ (10005, 'RO ', '310', 'Vama'),
10040
+ (10006, 'RO ', '310', 'Vanatoresti'),
10041
+ (10007, 'RO ', '310', 'Vetis'),
10042
+ (10008, 'RO ', '310', 'Vezendiu'),
10043
+ (10009, 'RO ', '310', 'Viile Satu Mare'),
10044
+ (10010, 'RO ', '310', 'Viisoara'),
10045
+ (10011, 'RO ', '312', 'Aciliu'),
10046
+ (10012, 'RO ', '312', 'Agarbiciu'),
10047
+ (10013, 'RO ', '312', 'Agnita'),
10048
+ (10014, 'RO ', '312', 'Alamor'),
10049
+ (10015, 'RO ', '312', 'Alma'),
10050
+ (10016, 'RO ', '312', 'Alma Vii'),
10051
+ (10017, 'RO ', '312', 'ALTINA'),
10052
+ (10018, 'RO ', '312', 'Amnas'),
10053
+ (10019, 'RO ', '312', 'Apoldu de Jos'),
10054
+ (10020, 'RO ', '312', 'Apoldu de Sus'),
10055
+ (10021, 'RO ', '312', 'Apos'),
10056
+ (10022, 'RO ', '312', 'Armeni'),
10057
+ (10023, 'RO ', '312', 'Arpasu de Jos'),
10058
+ (10024, 'RO ', '312', 'Arpasu de Sus'),
10059
+ (10025, 'RO ', '312', 'Atel'),
10060
+ (10026, 'RO ', '312', 'Avrig'),
10061
+ (10027, 'RO ', '312', 'Axente Sever'),
10062
+ (10028, 'RO ', '312', 'Balea Lac'),
10063
+ (10029, 'RO ', '312', 'Barghis'),
10064
+ (10030, 'RO ', '312', 'Bazna'),
10065
+ (10031, 'RO ', '312', 'Benesti'),
10066
+ (10032, 'RO ', '312', 'Biertan'),
10067
+ (10033, 'RO ', '312', 'Blajel'),
10068
+ (10034, 'RO ', '312', 'Boarta'),
10069
+ (10035, 'RO ', '312', 'Bogatu Roman'),
10070
+ (10036, 'RO ', '312', 'Boian'),
10071
+ (10037, 'RO ', '312', 'Boita'),
10072
+ (10038, 'RO ', '312', 'Bradeni'),
10073
+ (10039, 'RO ', '312', 'Bradu'),
10074
+ (10040, 'RO ', '312', 'Brateiu'),
10075
+ (10041, 'RO ', '312', 'Brosteni'),
10076
+ (10042, 'RO ', '312', 'Bruiu'),
10077
+ (10043, 'RO ', '312', 'Buia'),
10078
+ (10044, 'RO ', '312', 'Bungard'),
10079
+ (10045, 'RO ', '312', 'Buzd'),
10080
+ (10046, 'RO ', '312', 'Carta'),
10081
+ (10047, 'RO ', '312', 'Cartisoara'),
10082
+ (10048, 'RO ', '312', 'Casolt'),
10083
+ (10049, 'RO ', '312', 'Chirpar'),
10084
+ (10050, 'RO ', '312', 'Cisnadie'),
10085
+ (10051, 'RO ', '312', 'Cisnadioara'),
10086
+ (10052, 'RO ', '312', 'Colonia Talmaciu'),
10087
+ (10053, 'RO ', '312', 'Colonia Tarnava'),
10088
+ (10054, 'RO ', '312', 'Colun'),
10089
+ (10055, 'RO ', '312', 'Copsa Mare'),
10090
+ (10056, 'RO ', '312', 'Copsa Mica'),
10091
+ (10057, 'RO ', '312', 'Cornatel'),
10092
+ (10058, 'RO ', '312', 'Coves'),
10093
+ (10059, 'RO ', '312', 'Crint'),
10094
+ (10060, 'RO ', '312', 'Cristian'),
10095
+ (10061, 'RO ', '312', 'Curciu'),
10096
+ (10062, 'RO ', '312', 'Daia'),
10097
+ (10063, 'RO ', '312', 'Darlos'),
10098
+ (10064, 'RO ', '312', 'DEALU FRUMOS'),
10099
+ (10065, 'RO ', '312', 'Dobarca'),
10100
+ (10066, 'RO ', '312', 'Dumbraveni'),
10101
+ (10067, 'RO ', '312', 'Dupus'),
10102
+ (10068, 'RO ', '312', 'Ernea'),
10103
+ (10069, 'RO ', '312', 'Fantanele'),
10104
+ (10070, 'RO ', '312', 'Floresti'),
10105
+ (10071, 'RO ', '312', 'Fofeldea'),
10106
+ (10072, 'RO ', '312', 'Gales'),
10107
+ (10073, 'RO ', '312', 'Ghijasa de Jos'),
10108
+ (10074, 'RO ', '312', 'Ghijasa de Sus'),
10109
+ (10075, 'RO ', '312', 'GIACAS'),
10110
+ (10076, 'RO ', '312', 'Glamboaca'),
10111
+ (10077, 'RO ', '312', 'Gura Raului'),
10112
+ (10078, 'RO ', '312', 'Gusu'),
10113
+ (10079, 'RO ', '312', 'Hamba'),
10114
+ (10080, 'RO ', '312', 'Hasag'),
10115
+ (10081, 'RO ', '312', 'Hoghilag'),
10116
+ (10082, 'RO ', '312', 'Hosman'),
10117
+ (10083, 'RO ', '312', 'Iacobeni'),
10118
+ (10084, 'RO ', '312', 'Ighisu Nou'),
10119
+ (10085, 'RO ', '312', 'Ighisu Vechi'),
10120
+ (10086, 'RO ', '312', 'Ilimbav'),
10121
+ (10087, 'RO ', '312', 'Jina'),
10122
+ (10088, 'RO ', '312', 'Laslea'),
10123
+ (10089, 'RO ', '312', 'Lazaret'),
10124
+ (10090, 'RO ', '312', 'Loamnes'),
10125
+ (10091, 'RO ', '312', 'Lotrioara'),
10126
+ (10092, 'RO ', '312', 'Ludos'),
10127
+ (10093, 'RO ', '312', 'Mag'),
10128
+ (10094, 'RO ', '312', 'Malancrav'),
10129
+ (10095, 'RO ', '312', 'Mandra'),
10130
+ (10096, 'RO ', '312', 'Marpod'),
10131
+ (10097, 'RO ', '312', 'Marsa'),
10132
+ (10098, 'RO ', '312', 'Medias'),
10133
+ (10099, 'RO ', '312', 'MERGHINDEAL'),
10134
+ (10100, 'RO ', '312', 'Metis'),
10135
+ (10101, 'RO ', '312', 'Micasasa'),
10136
+ (10102, 'RO ', '312', 'Miercurea Sibiului'),
10137
+ (10103, 'RO ', '312', 'Mihaileni'),
10138
+ (10104, 'RO ', '312', 'Moardas'),
10139
+ (10105, 'RO ', '312', 'Mohu'),
10140
+ (10106, 'RO ', '312', 'Mosna'),
10141
+ (10107, 'RO ', '312', 'Motis'),
10142
+ (10108, 'RO ', '312', 'Movile'),
10143
+ (10109, 'RO ', '312', 'Nemsa'),
10144
+ (10110, 'RO ', '312', 'Netus'),
10145
+ (10111, 'RO ', '312', 'Nocrich'),
10146
+ (10112, 'RO ', '312', 'Noistat'),
10147
+ (10113, 'RO ', '312', 'Nou'),
10148
+ (10114, 'RO ', '312', 'Nou Roman'),
10149
+ (10115, 'RO ', '312', 'NOU SASESC'),
10150
+ (10116, 'RO ', '312', 'Ocna Sibiului'),
10151
+ (10117, 'RO ', '312', 'Orlat'),
10152
+ (10118, 'RO ', '312', 'Paltinis'),
10153
+ (10119, 'RO ', '312', 'Pauca'),
10154
+ (10120, 'RO ', '312', 'Paucea'),
10155
+ (10121, 'RO ', '312', 'Pelisor'),
10156
+ (10122, 'RO ', '312', 'Poiana Sibiului'),
10157
+ (10123, 'RO ', '312', 'Poplaca'),
10158
+ (10124, 'RO ', '312', 'Porumbacu de Jos'),
10159
+ (10125, 'RO ', '312', 'Porumbacu de Sus'),
10160
+ (10126, 'RO ', '312', 'Presaca'),
10161
+ (10127, 'RO ', '312', 'Prislop'),
10162
+ (10128, 'RO ', '312', 'Prod'),
10163
+ (10129, 'RO ', '312', 'Racovita'),
10164
+ (10130, 'RO ', '312', 'Rasinari'),
10165
+ (10131, 'RO ', '312', 'Rau Sadului'),
10166
+ (10132, 'RO ', '312', 'Ravasel'),
10167
+ (10133, 'RO ', '312', 'Retis'),
10168
+ (10134, 'RO ', '312', 'Richis'),
10169
+ (10135, 'RO ', '312', 'Roandola'),
10170
+ (10136, 'RO ', '312', 'Rod'),
10171
+ (10137, 'RO ', '312', 'Romanesti'),
10172
+ (10138, 'RO ', '312', 'Rosia'),
10173
+ (10139, 'RO ', '312', 'Ruja'),
10174
+ (10140, 'RO ', '312', 'Rusciori'),
10175
+ (10141, 'RO ', '312', 'Rusi'),
10176
+ (10142, 'RO ', '312', 'Sacadate'),
10177
+ (10143, 'RO ', '312', 'Sacel'),
10178
+ (10144, 'RO ', '312', 'Sadu'),
10179
+ (10145, 'RO ', '312', 'Saliste'),
10180
+ (10146, 'RO ', '312', 'Sangatin'),
10181
+ (10147, 'RO ', '312', 'Sarata'),
10182
+ (10148, 'RO ', '312', 'Saros pe Tarnave'),
10183
+ (10149, 'RO ', '312', 'Sasaus'),
10184
+ (10150, 'RO ', '312', 'Scoreiu'),
10185
+ (10151, 'RO ', '312', 'Sebesu de Jos'),
10186
+ (10152, 'RO ', '312', 'Sebesu de Sus'),
10187
+ (10153, 'RO ', '312', 'Seica Mare'),
10188
+ (10154, 'RO ', '312', 'Seica Mica'),
10189
+ (10155, 'RO ', '312', 'Selimbar'),
10190
+ (10156, 'RO ', '312', 'Sibiel'),
10191
+ (10157, 'RO ', '312', 'Sibiu'),
10192
+ (10158, 'RO ', '312', 'Slimnic'),
10193
+ (10159, 'RO ', '312', 'Smig'),
10194
+ (10160, 'RO ', '312', 'Soala'),
10195
+ (10161, 'RO ', '312', 'Somartin'),
10196
+ (10162, 'RO ', '312', 'Sorostin'),
10197
+ (10163, 'RO ', '312', 'Stejarisu'),
10198
+ (10164, 'RO ', '312', 'Stenea'),
10199
+ (10165, 'RO ', '312', 'Sura Mare'),
10200
+ (10166, 'RO ', '312', 'Sura Mica'),
10201
+ (10167, 'RO ', '312', 'Talmacel'),
10202
+ (10168, 'RO ', '312', 'Talmaciu'),
10203
+ (10169, 'RO ', '312', 'Tapu'),
10204
+ (10170, 'RO ', '312', 'Tarnava'),
10205
+ (10171, 'RO ', '312', 'Teline'),
10206
+ (10172, 'RO ', '312', 'Tichindeal'),
10207
+ (10173, 'RO ', '312', 'Tilisca'),
10208
+ (10174, 'RO ', '312', 'Toparcea'),
10209
+ (10175, 'RO ', '312', 'Turnu Rosu'),
10210
+ (10176, 'RO ', '312', 'Valchid'),
10211
+ (10177, 'RO ', '312', 'Vale'),
10212
+ (10178, 'RO ', '312', 'Valea Lunga'),
10213
+ (10179, 'RO ', '312', 'Valea Viilor'),
10214
+ (10180, 'RO ', '312', 'Vard'),
10215
+ (10181, 'RO ', '312', 'Vecerd'),
10216
+ (10182, 'RO ', '312', 'Velt'),
10217
+ (10183, 'RO ', '312', 'Veseud (Chirpar)'),
10218
+ (10184, 'RO ', '312', 'Veseud (Slimnic)'),
10219
+ (10185, 'RO ', '312', 'Vestem'),
10220
+ (10186, 'RO ', '312', 'Vurpar'),
10221
+ (10187, 'RO ', '312', 'Zlagna'),
10222
+ (10188, 'RO ', '313', 'Adancata'),
10223
+ (10189, 'RO ', '313', 'Antoceni'),
10224
+ (10190, 'RO ', '313', 'Arbore'),
10225
+ (10191, 'RO ', '313', 'Argel'),
10226
+ (10192, 'RO ', '313', 'Argestru'),
10227
+ (10193, 'RO ', '313', 'Arghira'),
10228
+ (10194, 'RO ', '313', 'Artari'),
10229
+ (10195, 'RO ', '313', 'Badeuti'),
10230
+ (10196, 'RO ', '313', 'Badragi'),
10231
+ (10197, 'RO ', '313', 'Bahna Arin'),
10232
+ (10198, 'RO ', '313', 'Baia'),
10233
+ (10199, 'RO ', '313', 'Bainet'),
10234
+ (10200, 'RO ', '313', 'Baisesti'),
10235
+ (10201, 'RO ', '313', 'Balaceana'),
10236
+ (10202, 'RO ', '313', 'Balcauti'),
10237
+ (10203, 'RO ', '313', 'Balinesti'),
10238
+ (10204, 'RO ', '313', 'Bancesti'),
10239
+ (10205, 'RO ', '313', 'Banesti'),
10240
+ (10206, 'RO ', '313', 'Barasti'),
10241
+ (10207, 'RO ', '313', 'Basarabi'),
10242
+ (10208, 'RO ', '313', 'Benia'),
10243
+ (10209, 'RO ', '313', 'Berchisesti'),
10244
+ (10210, 'RO ', '313', 'Beresti'),
10245
+ (10211, 'RO ', '313', 'Bilca'),
10246
+ (10212, 'RO ', '313', 'Bivolaria'),
10247
+ (10213, 'RO ', '313', 'Bobeica'),
10248
+ (10214, 'RO ', '313', 'Bodnareni'),
10249
+ (10215, 'RO ', '313', 'Bogata'),
10250
+ (10216, 'RO ', '313', 'Bogdanesti'),
10251
+ (10217, 'RO ', '313', 'Boroaia'),
10252
+ (10218, 'RO ', '313', 'Bosanci'),
10253
+ (10219, 'RO ', '313', 'Botesti'),
10254
+ (10220, 'RO ', '313', 'Botos'),
10255
+ (10221, 'RO ', '313', 'Botosana'),
10256
+ (10222, 'RO ', '313', 'Botosanita Mare'),
10257
+ (10223, 'RO ', '313', 'Botosanita Mica'),
10258
+ (10224, 'RO ', '313', 'Botus'),
10259
+ (10225, 'RO ', '313', 'Botusel'),
10260
+ (10226, 'RO ', '313', 'Boura'),
10261
+ (10227, 'RO ', '313', 'Bradatel'),
10262
+ (10228, 'RO ', '313', 'Braiesti'),
10263
+ (10229, 'RO ', '313', 'Branistea'),
10264
+ (10230, 'RO ', '313', 'Brasca'),
10265
+ (10231, 'RO ', '313', 'Breaza'),
10266
+ (10232, 'RO ', '313', 'Breaza de Sus'),
10267
+ (10233, 'RO ', '313', 'Brodina'),
10268
+ (10234, 'RO ', '313', 'Brosteni'),
10269
+ (10235, 'RO ', '313', 'Brosteni (Draguseni)'),
10270
+ (10236, 'RO ', '313', 'Bucsoaia'),
10271
+ (10237, 'RO ', '313', 'Buda (Rasca)'),
10272
+ (10238, 'RO ', '313', 'Buda (Zvoristea)'),
10273
+ (10239, 'RO ', '313', 'Budeni'),
10274
+ (10240, 'RO ', '313', 'Bulai'),
10275
+ (10241, 'RO ', '313', 'Bunesti'),
10276
+ (10242, 'RO ', '313', 'Burla'),
10277
+ (10243, 'RO ', '313', 'Bursuceni'),
10278
+ (10244, 'RO ', '313', 'Cacica'),
10279
+ (10245, 'RO ', '313', 'Cajvana'),
10280
+ (10246, 'RO ', '313', 'Calafindesti'),
10281
+ (10247, 'RO ', '313', 'Calinesti (Darmanesti)'),
10282
+ (10248, 'RO ', '313', 'Calinesti (serbauti)'),
10283
+ (10249, 'RO ', '313', 'Calinesti-Vasilache'),
10284
+ (10250, 'RO ', '313', 'Calugareni'),
10285
+ (10251, 'RO ', '313', 'Camarzani'),
10286
+ (10252, 'RO ', '313', 'Campulung Moldovenesc'),
10287
+ (10253, 'RO ', '313', 'Capu Campului'),
10288
+ (10254, 'RO ', '313', 'Capu Codrului'),
10289
+ (10255, 'RO ', '313', 'Carlibaba'),
10290
+ (10256, 'RO ', '313', 'Carlibaba Noua'),
10291
+ (10257, 'RO ', '313', 'Casoi'),
10292
+ (10258, 'RO ', '313', 'Chiliseni'),
10293
+ (10259, 'RO ', '313', 'Chiril'),
10294
+ (10260, 'RO ', '313', 'Ciocanesti'),
10295
+ (10261, 'RO ', '313', 'Ciomartan'),
10296
+ (10262, 'RO ', '313', 'Ciprian Porumbescu'),
10297
+ (10263, 'RO ', '313', 'Ciumarna'),
10298
+ (10264, 'RO ', '313', 'Ciumulesti'),
10299
+ (10265, 'RO ', '313', 'Climauti'),
10300
+ (10266, 'RO ', '313', 'Clit'),
10301
+ (10267, 'RO ', '313', 'Codru'),
10302
+ (10268, 'RO ', '313', 'Cojocareni'),
10303
+ (10269, 'RO ', '313', 'Cojoci'),
10304
+ (10270, 'RO ', '313', 'Colacu'),
10305
+ (10271, 'RO ', '313', 'Comanesti'),
10306
+ (10272, 'RO ', '313', 'Corlata'),
10307
+ (10273, 'RO ', '313', 'Corni'),
10308
+ (10274, 'RO ', '313', 'Cornu Luncii'),
10309
+ (10275, 'RO ', '313', 'Corocaiesti'),
10310
+ (10276, 'RO ', '313', 'Corpaci'),
10311
+ (10277, 'RO ', '313', 'Cosna'),
10312
+ (10278, 'RO ', '313', 'Costana'),
10313
+ (10279, 'RO ', '313', 'Costileva'),
10314
+ (10280, 'RO ', '313', 'Costisa'),
10315
+ (10281, 'RO ', '313', 'Cotargasi'),
10316
+ (10282, 'RO ', '313', 'Cotu Baii'),
10317
+ (10283, 'RO ', '313', 'Cotu Dobei'),
10318
+ (10284, 'RO ', '313', 'Coverca'),
10319
+ (10285, 'RO ', '313', 'Cozanesti'),
10320
+ (10286, 'RO ', '313', 'Crucea'),
10321
+ (10287, 'RO ', '313', 'Cumparatura'),
10322
+ (10288, 'RO ', '313', 'Danila'),
10323
+ (10289, 'RO ', '313', 'Darmanesti'),
10324
+ (10290, 'RO ', '313', 'Darmoxa'),
10325
+ (10291, 'RO ', '313', 'Dealu'),
10326
+ (10292, 'RO ', '313', 'Dealu Floreni'),
10327
+ (10293, 'RO ', '313', 'Deia'),
10328
+ (10294, 'RO ', '313', 'Deleni'),
10329
+ (10295, 'RO ', '313', 'Demacusa'),
10330
+ (10296, 'RO ', '313', 'Dolhasca'),
10331
+ (10297, 'RO ', '313', 'Dolhesti'),
10332
+ (10298, 'RO ', '313', 'Dolhestii Mari'),
10333
+ (10299, 'RO ', '313', 'Dolhestii Mici'),
10334
+ (10300, 'RO ', '313', 'Dorna Candrenilor'),
10335
+ (10301, 'RO ', '313', 'Dorna-Arini'),
10336
+ (10302, 'RO ', '313', 'Dornesti'),
10337
+ (10303, 'RO ', '313', 'Dornisoara'),
10338
+ (10304, 'RO ', '313', 'Doroteia'),
10339
+ (10305, 'RO ', '313', 'Dragoiasa'),
10340
+ (10306, 'RO ', '313', 'Dragoiesti'),
10341
+ (10307, 'RO ', '313', 'Dragomirna'),
10342
+ (10308, 'RO ', '313', 'Dragosa'),
10343
+ (10309, 'RO ', '313', 'Draguseni'),
10344
+ (10310, 'RO ', '313', 'Dumbrava (Cornu Luncii)'),
10345
+ (10311, 'RO ', '313', 'Dumbrava (Granicesti)'),
10346
+ (10312, 'RO ', '313', 'Dumbraveni'),
10347
+ (10313, 'RO ', '313', 'Dumbraveni (Rasca)'),
10348
+ (10314, 'RO ', '313', 'Dumbravita'),
10349
+ (10315, 'RO ', '313', 'Falcau'),
10350
+ (10316, 'RO ', '313', 'Falticeni'),
10351
+ (10317, 'RO ', '313', 'Fantana Mare'),
10352
+ (10318, 'RO ', '313', 'Fantanele'),
10353
+ (10319, 'RO ', '313', 'Fetesti'),
10354
+ (10320, 'RO ', '313', 'Florinta'),
10355
+ (10321, 'RO ', '313', 'Forasti'),
10356
+ (10322, 'RO ', '313', 'Frasin'),
10357
+ (10323, 'RO ', '313', 'Frasin (Brosteni)'),
10358
+ (10324, 'RO ', '313', 'Fratautii Noi'),
10359
+ (10325, 'RO ', '313', 'Fratautii Vechi'),
10360
+ (10326, 'RO ', '313', 'Frumoasa'),
10361
+ (10327, 'RO ', '313', 'Frumosu'),
10362
+ (10328, 'RO ', '313', 'Fundu Moldovei'),
10363
+ (10329, 'RO ', '313', 'Gainesti'),
10364
+ (10330, 'RO ', '313', 'Galanesti'),
10365
+ (10331, 'RO ', '313', 'Gara'),
10366
+ (10332, 'RO ', '313', 'Gara Leu'),
10367
+ (10333, 'RO ', '313', 'Gemenea'),
10368
+ (10334, 'RO ', '313', 'Gheorghiteni'),
10369
+ (10335, 'RO ', '313', 'Giulesti'),
10370
+ (10336, 'RO ', '313', 'Giurgesti'),
10371
+ (10337, 'RO ', '313', 'Glodu'),
10372
+ (10338, 'RO ', '313', 'Gramesti'),
10373
+ (10339, 'RO ', '313', 'Granicesti'),
10374
+ (10340, 'RO ', '313', 'Grigoresti'),
10375
+ (10341, 'RO ', '313', 'Groapa Vladichii'),
10376
+ (10342, 'RO ', '313', 'Gropeni'),
10377
+ (10343, 'RO ', '313', 'Gulia'),
10378
+ (10344, 'RO ', '313', 'Gura Haitii'),
10379
+ (10345, 'RO ', '313', 'Gura Humorului'),
10380
+ (10346, 'RO ', '313', 'Gura Putnei'),
10381
+ (10347, 'RO ', '313', 'Gura Solcii'),
10382
+ (10348, 'RO ', '313', 'Hancea'),
10383
+ (10349, 'RO ', '313', 'Hantesti'),
10384
+ (10350, 'RO ', '313', 'Hartop'),
10385
+ (10351, 'RO ', '313', 'Herla'),
10386
+ (10352, 'RO ', '313', 'Holda'),
10387
+ (10353, 'RO ', '313', 'Holdita'),
10388
+ (10354, 'RO ', '313', 'Horodnic'),
10389
+ (10355, 'RO ', '313', 'Horodnic de Jos'),
10390
+ (10356, 'RO ', '313', 'Horodnic de Sus'),
10391
+ (10357, 'RO ', '313', 'Horodniceni'),
10392
+ (10358, 'RO ', '313', 'Hreatca'),
10393
+ (10359, 'RO ', '313', 'Humoreni'),
10394
+ (10360, 'RO ', '313', 'Hurjuieni'),
10395
+ (10361, 'RO ', '313', 'Husi'),
10396
+ (10362, 'RO ', '313', 'Iacobeni'),
10397
+ (10363, 'RO ', '313', 'Iacobesti'),
10398
+ (10364, 'RO ', '313', 'Iaslovat'),
10399
+ (10365, 'RO ', '313', 'Iaz'),
10400
+ (10366, 'RO ', '313', 'Iesle'),
10401
+ (10367, 'RO ', '313', 'Ilisesti'),
10402
+ (10368, 'RO ', '313', 'Ioneasa'),
10403
+ (10369, 'RO ', '313', 'Ipotesti'),
10404
+ (10370, 'RO ', '313', 'Izvoarele Sucevei'),
10405
+ (10371, 'RO ', '313', 'Jacota'),
10406
+ (10372, 'RO ', '313', 'Jahalia'),
10407
+ (10373, 'RO ', '313', 'Lamaseni'),
10408
+ (10374, 'RO ', '313', 'Leucusesti'),
10409
+ (10375, 'RO ', '313', 'Lipoveni'),
10410
+ (10376, 'RO ', '313', 'Lisaura'),
10411
+ (10377, 'RO ', '313', 'Liteni'),
10412
+ (10378, 'RO ', '313', 'Liteni (Moara)'),
10413
+ (10379, 'RO ', '313', 'Lucacesti'),
10414
+ (10380, 'RO ', '313', 'Lunca (Milisauti)'),
10415
+ (10381, 'RO ', '313', 'Lunca (Zamostea)'),
10416
+ (10382, 'RO ', '313', 'Luncusoara'),
10417
+ (10383, 'RO ', '313', 'Lungeni'),
10418
+ (10384, 'RO ', '313', 'Lupcina'),
10419
+ (10385, 'RO ', '313', 'Magura'),
10420
+ (10386, 'RO ', '313', 'Maidan'),
10421
+ (10387, 'RO ', '313', 'Malini'),
10422
+ (10388, 'RO ', '313', 'Manastioara (Siret)'),
10423
+ (10389, 'RO ', '313', 'Manastioara (Udesti)'),
10424
+ (10390, 'RO ', '313', 'Manastirea Humorului'),
10425
+ (10391, 'RO ', '313', 'Maneuti'),
10426
+ (10392, 'RO ', '313', 'Manolea'),
10427
+ (10393, 'RO ', '313', 'Marginea'),
10428
+ (10394, 'RO ', '313', 'Maritei'),
10429
+ (10395, 'RO ', '313', 'Mariteia Mica'),
10430
+ (10396, 'RO ', '313', 'Mazanaesti'),
10431
+ (10397, 'RO ', '313', 'Mereni'),
10432
+ (10398, 'RO ', '313', 'Meresti'),
10433
+ (10399, 'RO ', '313', 'Mestecanis'),
10434
+ (10400, 'RO ', '313', 'Mesteceni'),
10435
+ (10401, 'RO ', '313', 'Mihaiesti'),
10436
+ (10402, 'RO ', '313', 'Mihoveni'),
10437
+ (10403, 'RO ', '313', 'Milisauti'),
10438
+ (10404, 'RO ', '313', 'Mironu'),
10439
+ (10405, 'RO ', '313', 'Mitocasi'),
10440
+ (10406, 'RO ', '313', 'Mitocu Dragomirnei'),
10441
+ (10407, 'RO ', '313', 'Moara'),
10442
+ (10408, 'RO ', '313', 'Moara Carp'),
10443
+ (10409, 'RO ', '313', 'Moara Nica'),
10444
+ (10410, 'RO ', '313', 'Moisa'),
10445
+ (10411, 'RO ', '313', 'Moldova-Sulita'),
10446
+ (10412, 'RO ', '313', 'Moldovita'),
10447
+ (10413, 'RO ', '313', 'Molid'),
10448
+ (10414, 'RO ', '313', 'Movileni'),
10449
+ (10415, 'RO ', '313', 'Musenita'),
10450
+ (10416, 'RO ', '313', 'Neagra Sarului'),
10451
+ (10417, 'RO ', '313', 'Negostina'),
10452
+ (10418, 'RO ', '313', 'Negrileasa'),
10453
+ (10419, 'RO ', '313', 'Nicani'),
10454
+ (10420, 'RO ', '313', 'Nigotesti'),
10455
+ (10421, 'RO ', '313', 'Nisipitu'),
10456
+ (10422, 'RO ', '313', 'Norocu'),
10457
+ (10423, 'RO ', '313', 'Oniceni'),
10458
+ (10424, 'RO ', '313', 'Ortoaia'),
10459
+ (10425, 'RO ', '313', 'Osoi'),
10460
+ (10426, 'RO ', '313', 'Ostra'),
10461
+ (10427, 'RO ', '313', 'Padureni'),
10462
+ (10428, 'RO ', '313', 'Paiseni'),
10463
+ (10429, 'RO ', '313', 'Paltin'),
10464
+ (10430, 'RO ', '313', 'Paltinoasa'),
10465
+ (10431, 'RO ', '313', 'Paltinu'),
10466
+ (10432, 'RO ', '313', 'Panaci'),
10467
+ (10433, 'RO ', '313', 'Paraie'),
10468
+ (10434, 'RO ', '313', 'Parau Negrei'),
10469
+ (10435, 'RO ', '313', 'Parhauti'),
10470
+ (10436, 'RO ', '313', 'Partestii de Jos'),
10471
+ (10437, 'RO ', '313', 'Partestii de Sus'),
10472
+ (10438, 'RO ', '313', 'Patrauti'),
10473
+ (10439, 'RO ', '313', 'Petia'),
10474
+ (10440, 'RO ', '313', 'Pietroasa'),
10475
+ (10441, 'RO ', '313', 'Pilugani'),
10476
+ (10442, 'RO ', '313', 'Plaiu sarului'),
10477
+ (10443, 'RO ', '313', 'Plavalari'),
10478
+ (10444, 'RO ', '313', 'Plesesti'),
10479
+ (10445, 'RO ', '313', 'Plopeni'),
10480
+ (10446, 'RO ', '313', 'Plutonita'),
10481
+ (10447, 'RO ', '313', 'Pocoleni'),
10482
+ (10448, 'RO ', '313', 'Podeni'),
10483
+ (10449, 'RO ', '313', 'Podu Cosnei'),
10484
+ (10450, 'RO ', '313', 'Poiana (Dolhasca)'),
10485
+ (10451, 'RO ', '313', 'Poiana (Zvoristea)'),
10486
+ (10452, 'RO ', '313', 'Poiana Marului'),
10487
+ (10453, 'RO ', '313', 'Poiana Micului'),
10488
+ (10454, 'RO ', '313', 'Poiana Negrii'),
10489
+ (10455, 'RO ', '313', 'Poiana Stampei'),
10490
+ (10456, 'RO ', '313', 'Poienari'),
10491
+ (10457, 'RO ', '313', 'Poieni-Solca'),
10492
+ (10458, 'RO ', '313', 'Poieni-Suceava'),
10493
+ (10459, 'RO ', '313', 'Pojorata'),
10494
+ (10460, 'RO ', '313', 'Praxia'),
10495
+ (10461, 'RO ', '313', 'Prelipca'),
10496
+ (10462, 'RO ', '313', 'Preutesti'),
10497
+ (10463, 'RO ', '313', 'Prisaca Dornei'),
10498
+ (10464, 'RO ', '313', 'Probota'),
10499
+ (10465, 'RO ', '313', 'Putna'),
10500
+ (10466, 'RO ', '313', 'Racova'),
10501
+ (10467, 'RO ', '313', 'Radaseni'),
10502
+ (10468, 'RO ', '313', 'Radauti'),
10503
+ (10469, 'RO ', '313', 'Rasca(C.L Moldovenesc)'),
10504
+ (10470, 'RO ', '313', 'Rauteni'),
10505
+ (10471, 'RO ', '313', 'Reuseni'),
10506
+ (10472, 'RO ', '313', 'Risca(Suceava)'),
10507
+ (10473, 'RO ', '313', 'Romanesti (Granicesti)'),
10508
+ (10474, 'RO ', '313', 'Roscani'),
10509
+ (10475, 'RO ', '313', 'Rosiori'),
10510
+ (10476, 'RO ', '313', 'Rosu'),
10511
+ (10477, 'RO ', '313', 'Rotopanesti'),
10512
+ (10478, 'RO ', '313', 'Rotunda'),
10513
+ (10479, 'RO ', '313', 'Rudesti'),
10514
+ (10480, 'RO ', '313', 'Runcu'),
10515
+ (10481, 'RO ', '313', 'Rusca'),
10516
+ (10482, 'RO ', '313', 'Rusi'),
10517
+ (10483, 'RO ', '313', 'Rusii-Manastioara'),
10518
+ (10484, 'RO ', '313', 'Sacuta'),
10519
+ (10485, 'RO ', '313', 'Sadau'),
10520
+ (10486, 'RO ', '313', 'Sadova'),
10521
+ (10487, 'RO ', '313', 'Salageni'),
10522
+ (10488, 'RO ', '313', 'Salcea'),
10523
+ (10489, 'RO ', '313', 'Sarghiesti'),
10524
+ (10490, 'RO ', '313', 'Sarisor'),
10525
+ (10491, 'RO ', '313', 'Sarisoru Mare'),
10526
+ (10492, 'RO ', '313', 'Saru Bucovinei'),
10527
+ (10493, 'RO ', '313', 'Saru Dornei'),
10528
+ (10494, 'RO ', '313', 'Sasca Mare'),
10529
+ (10495, 'RO ', '313', 'Sasca Mica'),
10530
+ (10496, 'RO ', '313', 'Sasca Noua'),
10531
+ (10497, 'RO ', '313', 'Satu Mare'),
10532
+ (10498, 'RO ', '313', 'Satu Mare (Crucea)'),
10533
+ (10499, 'RO ', '313', 'Scheia'),
10534
+ (10500, 'RO ', '313', 'Securiceni'),
10535
+ (10501, 'RO ', '313', 'Serbanesti'),
10536
+ (10502, 'RO ', '313', 'Serbauti'),
10537
+ (10503, 'RO ', '313', 'Ses'),
10538
+ (10504, 'RO ', '313', 'Sfantu Ilie'),
10539
+ (10505, 'RO ', '313', 'Silistea'),
10540
+ (10506, 'RO ', '313', 'Silistea Noua'),
10541
+ (10507, 'RO ', '313', 'Siminicea '),
10542
+ (10508, 'RO ', '313', 'Sinca'),
10543
+ (10509, 'RO ', '313', 'Siret'),
10544
+ (10510, 'RO ', '313', 'Slatina'),
10545
+ (10511, 'RO ', '313', 'Slatioara (Rasca)'),
10546
+ (10512, 'RO ', '313', 'Slatioara (Stulpicani)'),
10547
+ (10513, 'RO ', '313', 'Slobozia (Fantanele)'),
10548
+ (10514, 'RO ', '313', 'Slobozia (Zvoristea)'),
10549
+ (10515, 'RO ', '313', 'Slobozia Sucevei'),
10550
+ (10516, 'RO ', '313', 'Solca'),
10551
+ (10517, 'RO ', '313', 'Soldanesti'),
10552
+ (10518, 'RO ', '313', 'Solonet'),
10553
+ (10519, 'RO ', '313', 'Solonetu Nou'),
10554
+ (10520, 'RO ', '313', 'Spataresti'),
10555
+ (10521, 'RO ', '313', 'Stamate'),
10556
+ (10522, 'RO ', '313', 'Stanca'),
10557
+ (10523, 'RO ', '313', 'Stancuta'),
10558
+ (10524, 'RO ', '313', 'Stirbat'),
10559
+ (10525, 'RO ', '313', 'Straja'),
10560
+ (10526, 'RO ', '313', 'Stramtura'),
10561
+ (10527, 'RO ', '313', 'Stroiesti'),
10562
+ (10528, 'RO ', '313', 'Stulpicani'),
10563
+ (10529, 'RO ', '313', 'Suceava'),
10564
+ (10530, 'RO ', '313', 'Sucevita'),
10565
+ (10531, 'RO ', '313', 'Sunatori'),
10566
+ (10532, 'RO ', '313', 'Tarna Mare'),
10567
+ (10533, 'RO ', '313', 'Tataru'),
10568
+ (10534, 'RO ', '313', 'Tautesti'),
10569
+ (10535, 'RO ', '313', 'Tesna (Cosna)'),
10570
+ (10536, 'RO ', '313', 'Tesna (Poiana Stampei)'),
10571
+ (10537, 'RO ', '313', 'Tibeni'),
10572
+ (10538, 'RO ', '313', 'Tisauti'),
10573
+ (10539, 'RO ', '313', 'Todiresti'),
10574
+ (10540, 'RO ', '313', 'Tolesti'),
10575
+ (10541, 'RO ', '313', 'Trei Movile'),
10576
+ (10542, 'RO ', '313', 'Udesti'),
10577
+ (10543, 'RO ', '313', 'Uidesti'),
10578
+ (10544, 'RO ', '313', 'Ulma'),
10579
+ (10545, 'RO ', '313', 'Uncesti'),
10580
+ (10546, 'RO ', '313', 'Vadu Moldovei'),
10581
+ (10547, 'RO ', '313', 'Vadu Negrilesei'),
10582
+ (10548, 'RO ', '313', 'Valcelele'),
10583
+ (10549, 'RO ', '313', 'Valea Bancului'),
10584
+ (10550, 'RO ', '313', 'Valea Bourei'),
10585
+ (10551, 'RO ', '313', 'Valea Glodului'),
10586
+ (10552, 'RO ', '313', 'Valea Moldovei'),
10587
+ (10553, 'RO ', '313', 'Valea Poienei'),
10588
+ (10554, 'RO ', '313', 'Valea Putnei'),
10589
+ (10555, 'RO ', '313', 'Valea Stanei'),
10590
+ (10556, 'RO ', '313', 'Valeni-Stanisoara'),
10591
+ (10557, 'RO ', '313', 'Vama'),
10592
+ (10558, 'RO ', '313', 'Varatec'),
10593
+ (10559, 'RO ', '313', 'Varfu Dealului '),
10594
+ (10560, 'RO ', '313', 'Vascauti'),
10595
+ (10561, 'RO ', '313', 'Vatra Dornei'),
10596
+ (10562, 'RO ', '313', 'Vatra Moldovitei'),
10597
+ (10563, 'RO ', '313', 'Verbia'),
10598
+ (10564, 'RO ', '313', 'Vercicani'),
10599
+ (10565, 'RO ', '313', 'Veresti'),
10600
+ (10566, 'RO ', '313', 'Vicovu de Jos'),
10601
+ (10567, 'RO ', '313', 'Vicovu de Sus'),
10602
+ (10568, 'RO ', '313', 'Vicsani'),
10603
+ (10569, 'RO ', '313', 'Voievodeasa'),
10604
+ (10570, 'RO ', '313', 'Voitinel'),
10605
+ (10571, 'RO ', '313', 'Volovat'),
10606
+ (10572, 'RO ', '313', 'Vornicenii Mari'),
10607
+ (10573, 'RO ', '313', 'Vornicenii Mici'),
10608
+ (10574, 'RO ', '313', 'Voronet'),
10609
+ (10575, 'RO ', '313', 'Vulturesti'),
10610
+ (10576, 'RO ', '313', 'Zaharesti'),
10611
+ (10577, 'RO ', '313', 'Zalomestra'),
10612
+ (10578, 'RO ', '313', 'Zamostea'),
10613
+ (10579, 'RO ', '313', 'Zvoristea'),
10614
+ (10580, 'RO ', '314', 'Albeni'),
10615
+ (10581, 'RO ', '314', 'Albesti'),
10616
+ (10582, 'RO ', '314', 'Alexandria'),
10617
+ (10583, 'RO ', '314', 'Antonesti'),
10618
+ (10584, 'RO ', '314', 'Babaita'),
10619
+ (10585, 'RO ', '314', 'Bacalesti'),
10620
+ (10586, 'RO ', '314', 'Baciu'),
10621
+ (10587, 'RO ', '314', 'Baduleasa'),
10622
+ (10588, 'RO ', '314', 'Balaci'),
10623
+ (10589, 'RO ', '314', 'Baldovinesti'),
10624
+ (10590, 'RO ', '314', 'Balta Sarata'),
10625
+ (10591, 'RO ', '314', 'Baneasa'),
10626
+ (10592, 'RO ', '314', 'Banov'),
10627
+ (10593, 'RO ', '314', 'Bascoveni'),
10628
+ (10594, 'RO ', '314', 'Beciu'),
10629
+ (10595, 'RO ', '314', 'Beiu'),
10630
+ (10596, 'RO ', '314', 'Belciug'),
10631
+ (10597, 'RO ', '314', 'Beuca'),
10632
+ (10598, 'RO ', '314', 'Blejesti'),
10633
+ (10599, 'RO ', '314', 'Bogdana');
10634
+ INSERT INTO `directory_country_region_city` (`city_id`, `country_id`, `region_id`, `cityname`) VALUES
10635
+ (10600, 'RO ', '314', 'Botoroaga'),
10636
+ (10601, 'RO ', '314', 'Bragadiru'),
10637
+ (10602, 'RO ', '314', 'Branceni'),
10638
+ (10603, 'RO ', '314', 'Brancoveanca'),
10639
+ (10604, 'RO ', '314', 'Bratasani'),
10640
+ (10605, 'RO ', '314', 'Bratcovu'),
10641
+ (10606, 'RO ', '314', 'Bratesti'),
10642
+ (10607, 'RO ', '314', 'Brebina'),
10643
+ (10608, 'RO ', '314', 'Brosteanca'),
10644
+ (10609, 'RO ', '314', 'Bujoreni'),
10645
+ (10610, 'RO ', '314', 'Bujoru'),
10646
+ (10611, 'RO ', '314', 'Bujoru (Calmatuiu)'),
10647
+ (10612, 'RO ', '314', 'Burdeni'),
10648
+ (10613, 'RO ', '314', 'Butculesti'),
10649
+ (10614, 'RO ', '314', 'Butesti'),
10650
+ (10615, 'RO ', '314', 'Buzescu'),
10651
+ (10616, 'RO ', '314', 'Calinesti'),
10652
+ (10617, 'RO ', '314', 'Calmatuiu'),
10653
+ (10618, 'RO ', '314', 'Calmatuiu de Sus'),
10654
+ (10619, 'RO ', '314', 'Calomfiresti'),
10655
+ (10620, 'RO ', '314', 'Calugaru'),
10656
+ (10621, 'RO ', '314', 'Caravaneti'),
10657
+ (10622, 'RO ', '314', 'Carlomanu'),
10658
+ (10623, 'RO ', '314', 'Catunu'),
10659
+ (10624, 'RO ', '314', 'Cernetu'),
10660
+ (10625, 'RO ', '314', 'Cervenia'),
10661
+ (10626, 'RO ', '314', 'Cetatea'),
10662
+ (10627, 'RO ', '314', 'Ciolanesti'),
10663
+ (10628, 'RO ', '314', 'Ciolanestii din Deal'),
10664
+ (10629, 'RO ', '314', 'Ciolanestii din Vale'),
10665
+ (10630, 'RO ', '314', 'Ciuperceni'),
10666
+ (10631, 'RO ', '314', 'Ciuperceni (Cosmesti)'),
10667
+ (10632, 'RO ', '314', 'Ciurari'),
10668
+ (10633, 'RO ', '314', 'Ciurari-Deal'),
10669
+ (10634, 'RO ', '314', 'Clanita'),
10670
+ (10635, 'RO ', '314', 'Comoara'),
10671
+ (10636, 'RO ', '314', 'Contesti'),
10672
+ (10637, 'RO ', '314', 'Copaceanca'),
10673
+ (10638, 'RO ', '314', 'Cosmesti'),
10674
+ (10639, 'RO ', '314', 'Cosoaia'),
10675
+ (10640, 'RO ', '314', 'Cosoteni'),
10676
+ (10641, 'RO ', '314', 'Crangeni'),
10677
+ (10642, 'RO ', '314', 'Crangu'),
10678
+ (10643, 'RO ', '314', 'Crevenicu'),
10679
+ (10644, 'RO ', '314', 'Cucueti'),
10680
+ (10645, 'RO ', '314', 'Deparati'),
10681
+ (10646, 'RO ', '314', 'Didesti'),
10682
+ (10647, 'RO ', '314', 'Dobreni'),
10683
+ (10648, 'RO ', '314', 'Dobrotesti'),
10684
+ (10649, 'RO ', '314', 'Dorobantu'),
10685
+ (10650, 'RO ', '314', 'Dracea'),
10686
+ (10651, 'RO ', '314', 'Dracesti'),
10687
+ (10652, 'RO ', '314', 'Dracsani'),
10688
+ (10653, 'RO ', '314', 'Dracsenei'),
10689
+ (10654, 'RO ', '314', 'Draganesti de Vede'),
10690
+ (10655, 'RO ', '314', 'Draganesti-Vlasca'),
10691
+ (10656, 'RO ', '314', 'Draghinesti'),
10692
+ (10657, 'RO ', '314', 'Dudu'),
10693
+ (10658, 'RO ', '314', 'Dulceanca'),
10694
+ (10659, 'RO ', '314', 'Dulceni'),
10695
+ (10660, 'RO ', '314', 'Fantanele'),
10696
+ (10661, 'RO ', '314', 'Florica'),
10697
+ (10662, 'RO ', '314', 'Frasinet'),
10698
+ (10663, 'RO ', '314', 'Frumoasa'),
10699
+ (10664, 'RO ', '314', 'Furculesti'),
10700
+ (10665, 'RO ', '314', 'Galateni'),
10701
+ (10666, 'RO ', '314', 'Garagau'),
10702
+ (10667, 'RO ', '314', 'Gardesti'),
10703
+ (10668, 'RO ', '314', 'Gratia'),
10704
+ (10669, 'RO ', '314', 'Gresia'),
10705
+ (10670, 'RO ', '314', 'Guruieni'),
10706
+ (10671, 'RO ', '314', 'Islaz'),
10707
+ (10672, 'RO ', '314', 'Izvoarele'),
10708
+ (10673, 'RO ', '314', 'Laceni'),
10709
+ (10674, 'RO ', '314', 'Lada'),
10710
+ (10675, 'RO ', '314', 'Licuriciu'),
10711
+ (10676, 'RO ', '314', 'Lisa'),
10712
+ (10677, 'RO ', '314', 'Lita'),
10713
+ (10678, 'RO ', '314', 'Lunca'),
10714
+ (10679, 'RO ', '314', 'Magura'),
10715
+ (10680, 'RO ', '314', 'Magura cu Liliac'),
10716
+ (10681, 'RO ', '314', 'Maldaeni'),
10717
+ (10682, 'RO ', '314', 'Marzanesti'),
10718
+ (10683, 'RO ', '314', 'Mavrodin'),
10719
+ (10684, 'RO ', '314', 'Mereni'),
10720
+ (10685, 'RO ', '314', 'Merenii de Jos'),
10721
+ (10686, 'RO ', '314', 'Merenii de Sus'),
10722
+ (10687, 'RO ', '314', 'Meri'),
10723
+ (10688, 'RO ', '314', 'Merisani (Babaita)'),
10724
+ (10689, 'RO ', '314', 'Merisani (Dobrotesti)'),
10725
+ (10690, 'RO ', '314', 'Moldoveni'),
10726
+ (10691, 'RO ', '314', 'Mosteni'),
10727
+ (10692, 'RO ', '314', 'Mosteni (Furculesti)'),
10728
+ (10693, 'RO ', '314', 'Nanov'),
10729
+ (10694, 'RO ', '314', 'Nasturelu'),
10730
+ (10695, 'RO ', '314', 'Navodari'),
10731
+ (10696, 'RO ', '314', 'Necsesti'),
10732
+ (10697, 'RO ', '314', 'Negreni '),
10733
+ (10698, 'RO ', '314', 'Negrenii de Sus'),
10734
+ (10699, 'RO ', '314', 'Negrenii-Osebiti'),
10735
+ (10700, 'RO ', '314', 'Negrilesti'),
10736
+ (10701, 'RO ', '314', 'Nenciulesti'),
10737
+ (10702, 'RO ', '314', 'Nicolae Balcescu'),
10738
+ (10703, 'RO ', '314', 'Odobeasca'),
10739
+ (10704, 'RO ', '314', 'Olteanca'),
10740
+ (10705, 'RO ', '314', 'Olteni'),
10741
+ (10706, 'RO ', '314', 'Orbeasca'),
10742
+ (10707, 'RO ', '314', 'Orbeasca de Jos'),
10743
+ (10708, 'RO ', '314', 'Orbeasca de Sus'),
10744
+ (10709, 'RO ', '314', 'Paru Rotund'),
10745
+ (10710, 'RO ', '314', 'Pauleasca'),
10746
+ (10711, 'RO ', '314', 'Peretu'),
10747
+ (10712, 'RO ', '314', 'Perii Brosteni'),
10748
+ (10713, 'RO ', '314', 'Piatra'),
10749
+ (10714, 'RO ', '314', 'Pietrosani'),
10750
+ (10715, 'RO ', '314', 'Pleasov'),
10751
+ (10716, 'RO ', '314', 'Plopii-Slavitesti'),
10752
+ (10717, 'RO ', '314', 'Plosca'),
10753
+ (10718, 'RO ', '314', 'Poeni'),
10754
+ (10719, 'RO ', '314', 'Poiana'),
10755
+ (10720, 'RO ', '314', 'Poroschia'),
10756
+ (10721, 'RO ', '314', 'Preajba'),
10757
+ (10722, 'RO ', '314', 'Prunaru'),
10758
+ (10723, 'RO ', '314', 'Prundu'),
10759
+ (10724, 'RO ', '314', 'Purani'),
10760
+ (10725, 'RO ', '314', 'Purani (Vitanesti)'),
10761
+ (10726, 'RO ', '314', 'Puranii de Sus'),
10762
+ (10727, 'RO ', '314', 'Putineiu'),
10763
+ (10728, 'RO ', '314', 'Radoiesti'),
10764
+ (10729, 'RO ', '314', 'Radoiesti-Deal'),
10765
+ (10730, 'RO ', '314', 'Radoiesti-Vale'),
10766
+ (10731, 'RO ', '314', 'Radulesti'),
10767
+ (10732, 'RO ', '314', 'Rasmiresti'),
10768
+ (10733, 'RO ', '314', 'Rosiori de Vede'),
10769
+ (10734, 'RO ', '314', 'Rotaresti'),
10770
+ (10735, 'RO ', '314', 'Saceni'),
10771
+ (10736, 'RO ', '314', 'Saelele'),
10772
+ (10737, 'RO ', '314', 'Salcia'),
10773
+ (10738, 'RO ', '314', 'Sarbeni'),
10774
+ (10739, 'RO ', '314', 'Sarbenii de Jos'),
10775
+ (10740, 'RO ', '314', 'Satu Nou'),
10776
+ (10741, 'RO ', '314', 'Satul Vechi'),
10777
+ (10742, 'RO ', '314', 'Schitu Poienari'),
10778
+ (10743, 'RO ', '314', 'Scrioastea'),
10779
+ (10744, 'RO ', '314', 'Scurtu Mare'),
10780
+ (10745, 'RO ', '314', 'Scurtu-Slavesti'),
10781
+ (10746, 'RO ', '314', 'Seaca'),
10782
+ (10747, 'RO ', '314', 'Secara'),
10783
+ (10748, 'RO ', '314', 'Segarcea-Deal'),
10784
+ (10749, 'RO ', '314', 'Segarcea-Vale'),
10785
+ (10750, 'RO ', '314', 'Sericu'),
10786
+ (10751, 'RO ', '314', 'Sfintesti'),
10787
+ (10752, 'RO ', '314', 'Silistea'),
10788
+ (10753, 'RO ', '314', 'Silistea (Vitanesti)'),
10789
+ (10754, 'RO ', '314', 'Silistea Gumesti'),
10790
+ (10755, 'RO ', '314', 'Silistea Mica'),
10791
+ (10756, 'RO ', '314', 'Slavesti'),
10792
+ (10757, 'RO ', '314', 'Slobozia Mandra'),
10793
+ (10758, 'RO ', '314', 'Smardioasa'),
10794
+ (10759, 'RO ', '314', 'Socetu'),
10795
+ (10760, 'RO ', '314', 'Soimu'),
10796
+ (10761, 'RO ', '314', 'Spatarei'),
10797
+ (10762, 'RO ', '314', 'Stefeni'),
10798
+ (10763, 'RO ', '314', 'Stejaru'),
10799
+ (10764, 'RO ', '314', 'Stejaru (Crangeni)'),
10800
+ (10765, 'RO ', '314', 'Storobaneasa'),
10801
+ (10766, 'RO ', '314', 'Suhaia'),
10802
+ (10767, 'RO ', '314', 'Talpa'),
10803
+ (10768, 'RO ', '314', 'Talpa Postei'),
10804
+ (10769, 'RO ', '314', 'Talpa-Bascoveni'),
10805
+ (10770, 'RO ', '314', 'Talpa-Ograzile'),
10806
+ (10771, 'RO ', '314', 'Tarnava'),
10807
+ (10772, 'RO ', '314', 'Tatarastii de Jos'),
10808
+ (10773, 'RO ', '314', 'Tatarastii de Sus'),
10809
+ (10774, 'RO ', '314', 'Tecuci'),
10810
+ (10775, 'RO ', '314', 'Teleormanu'),
10811
+ (10776, 'RO ', '314', 'Tiganesti'),
10812
+ (10777, 'RO ', '314', 'Traian'),
10813
+ (10778, 'RO ', '314', 'Trivalea-Mosteni'),
10814
+ (10779, 'RO ', '314', 'Troianul'),
10815
+ (10780, 'RO ', '314', 'Tudor Vladimirescu'),
10816
+ (10781, 'RO ', '314', 'Tunari'),
10817
+ (10782, 'RO ', '314', 'Turnu Magurele'),
10818
+ (10783, 'RO ', '314', 'Uda-Clocociov'),
10819
+ (10784, 'RO ', '314', 'Uda-Paciurea'),
10820
+ (10785, 'RO ', '314', 'Udeni'),
10821
+ (10786, 'RO ', '314', 'Udupu'),
10822
+ (10787, 'RO ', '314', 'Ulmeni'),
10823
+ (10788, 'RO ', '314', 'Urluiu'),
10824
+ (10789, 'RO ', '314', 'Vacaresti'),
10825
+ (10790, 'RO ', '314', 'Vaceni'),
10826
+ (10791, 'RO ', '314', 'Valea Ciresului'),
10827
+ (10792, 'RO ', '314', 'Valea Parului'),
10828
+ (10793, 'RO ', '314', 'Vanatori'),
10829
+ (10794, 'RO ', '314', 'Vartoape'),
10830
+ (10795, 'RO ', '314', 'Vartoapele de Jos'),
10831
+ (10796, 'RO ', '314', 'Vartoapele de Sus'),
10832
+ (10797, 'RO ', '314', 'Vatasi'),
10833
+ (10798, 'RO ', '314', 'Vatra'),
10834
+ (10799, 'RO ', '314', 'Vedea'),
10835
+ (10800, 'RO ', '314', 'Videle'),
10836
+ (10801, 'RO ', '314', 'Viisoara'),
10837
+ (10802, 'RO ', '314', 'Vitanesti'),
10838
+ (10803, 'RO ', '314', 'Voievoda'),
10839
+ (10804, 'RO ', '314', 'Zambreasca'),
10840
+ (10805, 'RO ', '314', 'Zimnicea'),
10841
+ (10806, 'RO ', '314', 'Zimnicele'),
10842
+ (10807, 'RO ', '314', 'Zlata'),
10843
+ (10808, 'RO ', '315', 'Albina'),
10844
+ (10809, 'RO ', '315', 'Alios'),
10845
+ (10810, 'RO ', '315', 'Altringen'),
10846
+ (10811, 'RO ', '315', 'Babsa'),
10847
+ (10812, 'RO ', '315', 'Bacova'),
10848
+ (10813, 'RO ', '315', 'Balint'),
10849
+ (10814, 'RO ', '315', 'Balosesti'),
10850
+ (10815, 'RO ', '315', 'Banloc'),
10851
+ (10816, 'RO ', '315', 'Bara'),
10852
+ (10817, 'RO ', '315', 'Barateaz'),
10853
+ (10818, 'RO ', '315', 'Barna'),
10854
+ (10819, 'RO ', '315', 'Batesti'),
10855
+ (10820, 'RO ', '315', 'Bazos'),
10856
+ (10821, 'RO ', '315', 'Bazosu Nou'),
10857
+ (10822, 'RO ', '315', 'Beba Veche'),
10858
+ (10823, 'RO ', '315', 'Becicherecu Mic'),
10859
+ (10824, 'RO ', '315', 'Begheiu Mic'),
10860
+ (10825, 'RO ', '315', 'Belint'),
10861
+ (10826, 'RO ', '315', 'Bencecu de Jos'),
10862
+ (10827, 'RO ', '315', 'Bencecu de Sus'),
10863
+ (10828, 'RO ', '315', 'Berecuta'),
10864
+ (10829, 'RO ', '315', 'Beregsau Mare'),
10865
+ (10830, 'RO ', '315', 'Beregsau Mic'),
10866
+ (10831, 'RO ', '315', 'Berini'),
10867
+ (10832, 'RO ', '315', 'Bethausen'),
10868
+ (10833, 'RO ', '315', 'Bichigi'),
10869
+ (10834, 'RO ', '315', 'Biled'),
10870
+ (10835, 'RO ', '315', 'Birda'),
10871
+ (10836, 'RO ', '315', 'Blajova'),
10872
+ (10837, 'RO ', '315', 'Bobda'),
10873
+ (10838, 'RO ', '315', 'Bodo'),
10874
+ (10839, 'RO ', '315', 'Bogda'),
10875
+ (10840, 'RO ', '315', 'Boldur'),
10876
+ (10841, 'RO ', '315', 'Botesti'),
10877
+ (10842, 'RO ', '315', 'Botinesti'),
10878
+ (10843, 'RO ', '315', 'Branesti'),
10879
+ (10844, 'RO ', '315', 'Breazova'),
10880
+ (10845, 'RO ', '315', 'Brestea'),
10881
+ (10846, 'RO ', '315', 'Brestovat'),
10882
+ (10847, 'RO ', '315', 'Bucovat (Dumbrava)'),
10883
+ (10848, 'RO ', '315', 'Bucovat (Remetea Mare)'),
10884
+ (10849, 'RO ', '315', 'Bulgarus'),
10885
+ (10850, 'RO ', '315', 'Bunea Mare'),
10886
+ (10851, 'RO ', '315', 'Bunea Mica'),
10887
+ (10852, 'RO ', '315', 'Butin'),
10888
+ (10853, 'RO ', '315', 'Buzad'),
10889
+ (10854, 'RO ', '315', 'Buzias'),
10890
+ (10855, 'RO ', '315', 'Cadar'),
10891
+ (10856, 'RO ', '315', 'Calacea'),
10892
+ (10857, 'RO ', '315', 'Capat'),
10893
+ (10858, 'RO ', '315', 'Carani'),
10894
+ (10859, 'RO ', '315', 'Carpinis'),
10895
+ (10860, 'RO ', '315', 'Cebza'),
10896
+ (10861, 'RO ', '315', 'Cenad'),
10897
+ (10862, 'RO ', '315', 'Cenei'),
10898
+ (10863, 'RO ', '315', 'Cerna'),
10899
+ (10864, 'RO ', '315', 'Cerneteaz'),
10900
+ (10865, 'RO ', '315', 'Charlotenburg'),
10901
+ (10866, 'RO ', '315', 'Checea'),
10902
+ (10867, 'RO ', '315', 'Cheglevici'),
10903
+ (10868, 'RO ', '315', 'Cherestur'),
10904
+ (10869, 'RO ', '315', 'Cheveresu Mare'),
10905
+ (10870, 'RO ', '315', 'Chisoda'),
10906
+ (10871, 'RO ', '315', 'Chizatau'),
10907
+ (10872, 'RO ', '315', 'Ciacova'),
10908
+ (10873, 'RO ', '315', 'Ciresu'),
10909
+ (10874, 'RO ', '315', 'Ciresu Mic'),
10910
+ (10875, 'RO ', '315', 'Cladova'),
10911
+ (10876, 'RO ', '315', 'Cliciova'),
10912
+ (10877, 'RO ', '315', 'Clopodia'),
10913
+ (10878, 'RO ', '315', 'Colonia Bulgara'),
10914
+ (10879, 'RO ', '315', 'Colonia Fabricii'),
10915
+ (10880, 'RO ', '315', 'Colonia Mica'),
10916
+ (10881, 'RO ', '315', 'Comlosu Mare'),
10917
+ (10882, 'RO ', '315', 'Comlosu Mic'),
10918
+ (10883, 'RO ', '315', 'Cornesti'),
10919
+ (10884, 'RO ', '315', 'Cosarii'),
10920
+ (10885, 'RO ', '315', 'Cosava'),
10921
+ (10886, 'RO ', '315', 'Cosevita'),
10922
+ (10887, 'RO ', '315', 'Costeiu'),
10923
+ (10888, 'RO ', '315', 'Costeiu de Sus'),
10924
+ (10889, 'RO ', '315', 'Covaci'),
10925
+ (10890, 'RO ', '315', 'Crai Nou'),
10926
+ (10891, 'RO ', '315', 'Cralovat'),
10927
+ (10892, 'RO ', '315', 'Criciova'),
10928
+ (10893, 'RO ', '315', 'Crivina'),
10929
+ (10894, 'RO ', '315', 'Crivina de Sus'),
10930
+ (10895, 'RO ', '315', 'Crivobara'),
10931
+ (10896, 'RO ', '315', 'Cruceni'),
10932
+ (10897, 'RO ', '315', 'Curtea'),
10933
+ (10898, 'RO ', '315', 'Cutina'),
10934
+ (10899, 'RO ', '315', 'Darova'),
10935
+ (10900, 'RO ', '315', 'Dejan'),
10936
+ (10901, 'RO ', '315', 'Denta'),
10937
+ (10902, 'RO ', '315', 'Deta'),
10938
+ (10903, 'RO ', '315', 'Dinias'),
10939
+ (10904, 'RO ', '315', 'Dobresti'),
10940
+ (10905, 'RO ', '315', 'Dolat'),
10941
+ (10906, 'RO ', '315', 'Dragoiesti'),
10942
+ (10907, 'RO ', '315', 'Dragomiresti'),
10943
+ (10908, 'RO ', '315', 'Dragsina'),
10944
+ (10909, 'RO ', '315', 'Dragsinesti'),
10945
+ (10910, 'RO ', '315', 'Drinova'),
10946
+ (10911, 'RO ', '315', 'Dubesti'),
10947
+ (10912, 'RO ', '315', 'Duboz'),
10948
+ (10913, 'RO ', '315', 'Dudestii Noi'),
10949
+ (10914, 'RO ', '315', 'Dudestii Vechi'),
10950
+ (10915, 'RO ', '315', 'Dumbrava'),
10951
+ (10916, 'RO ', '315', 'Dumbravita'),
10952
+ (10917, 'RO ', '315', 'Fadimac'),
10953
+ (10918, 'RO ', '315', 'Faget'),
10954
+ (10919, 'RO ', '315', 'Farasesti'),
10955
+ (10920, 'RO ', '315', 'Fardea'),
10956
+ (10921, 'RO ', '315', 'Ferendia'),
10957
+ (10922, 'RO ', '315', 'Fibis'),
10958
+ (10923, 'RO ', '315', 'Ficatar'),
10959
+ (10924, 'RO ', '315', 'Foeni'),
10960
+ (10925, 'RO ', '315', 'Folea'),
10961
+ (10926, 'RO ', '315', 'Gad'),
10962
+ (10927, 'RO ', '315', 'Gaiu Mic'),
10963
+ (10928, 'RO ', '315', 'Gataia'),
10964
+ (10929, 'RO ', '315', 'Gavojdia'),
10965
+ (10930, 'RO ', '315', 'Gelu'),
10966
+ (10931, 'RO ', '315', 'Gherman'),
10967
+ (10932, 'RO ', '315', 'Ghilad'),
10968
+ (10933, 'RO ', '315', 'Ghiroda'),
10969
+ (10934, 'RO ', '315', 'Ghizela'),
10970
+ (10935, 'RO ', '315', 'Giarmata'),
10971
+ (10936, 'RO ', '315', 'Giarmata-Vii'),
10972
+ (10937, 'RO ', '315', 'Giera'),
10973
+ (10938, 'RO ', '315', 'Giroc'),
10974
+ (10939, 'RO ', '315', 'Giulvaz'),
10975
+ (10940, 'RO ', '315', 'Gladna Montana'),
10976
+ (10941, 'RO ', '315', 'Gladna Romana'),
10977
+ (10942, 'RO ', '315', 'Gottlob'),
10978
+ (10943, 'RO ', '315', 'Grabat'),
10979
+ (10944, 'RO ', '315', 'Granicerii'),
10980
+ (10945, 'RO ', '315', 'Grosi'),
10981
+ (10946, 'RO ', '315', 'Gruni'),
10982
+ (10947, 'RO ', '315', 'Hauzesti'),
10983
+ (10948, 'RO ', '315', 'Herendesti'),
10984
+ (10949, 'RO ', '315', 'Herneacova'),
10985
+ (10950, 'RO ', '315', 'Hezeris'),
10986
+ (10951, 'RO ', '315', 'Hisias'),
10987
+ (10952, 'RO ', '315', 'Hitias'),
10988
+ (10953, 'RO ', '315', 'Hodoni'),
10989
+ (10954, 'RO ', '315', 'Hodos (Brestovat)'),
10990
+ (10955, 'RO ', '315', 'Hodos (Darova)'),
10991
+ (10956, 'RO ', '315', 'Homojdia'),
10992
+ (10957, 'RO ', '315', 'Honorici'),
10993
+ (10958, 'RO ', '315', 'Ianova'),
10994
+ (10959, 'RO ', '315', 'Icloda'),
10995
+ (10960, 'RO ', '315', 'Ictar-Budinti'),
10996
+ (10961, 'RO ', '315', 'Iecea Mare'),
10997
+ (10962, 'RO ', '315', 'Iecea Mica'),
10998
+ (10963, 'RO ', '315', 'Iersnic'),
10999
+ (10964, 'RO ', '315', 'Igris'),
11000
+ (10965, 'RO ', '315', 'Iohanisfeld'),
11001
+ (10966, 'RO ', '315', 'Iosif'),
11002
+ (10967, 'RO ', '315', 'Iosifalau'),
11003
+ (10968, 'RO ', '315', 'Ivanda'),
11004
+ (10969, 'RO ', '315', 'Izvin'),
11005
+ (10970, 'RO ', '315', 'Jabar'),
11006
+ (10971, 'RO ', '315', 'Jamu Mare'),
11007
+ (10972, 'RO ', '315', 'Jdioara'),
11008
+ (10973, 'RO ', '315', 'Jebel'),
11009
+ (10974, 'RO ', '315', 'Jena'),
11010
+ (10975, 'RO ', '315', 'Jimbolia'),
11011
+ (10976, 'RO ', '315', 'Jupanesti'),
11012
+ (10977, 'RO ', '315', 'Jupani'),
11013
+ (10978, 'RO ', '315', 'Juresti'),
11014
+ (10979, 'RO ', '315', 'Lapusnic'),
11015
+ (10980, 'RO ', '315', 'Latunas'),
11016
+ (10981, 'RO ', '315', 'Lenauheim'),
11017
+ (10982, 'RO ', '315', 'Leucusesti'),
11018
+ (10983, 'RO ', '315', 'Liebling'),
11019
+ (10984, 'RO ', '315', 'Livezile'),
11020
+ (10985, 'RO ', '315', 'Lovrin'),
11021
+ (10986, 'RO ', '315', 'Lucaret'),
11022
+ (10987, 'RO ', '315', 'Lugoj'),
11023
+ (10988, 'RO ', '315', 'Lugojel'),
11024
+ (10989, 'RO ', '315', 'Luncanii de Jos'),
11025
+ (10990, 'RO ', '315', 'Luncanii de Sus'),
11026
+ (10991, 'RO ', '315', 'Lunga'),
11027
+ (10992, 'RO ', '315', 'Macedonia'),
11028
+ (10993, 'RO ', '315', 'Maguri'),
11029
+ (10994, 'RO ', '315', 'Manastire'),
11030
+ (10995, 'RO ', '315', 'Manastiur'),
11031
+ (10996, 'RO ', '315', 'Margina'),
11032
+ (10997, 'RO ', '315', 'Masloc'),
11033
+ (10998, 'RO ', '315', 'Matnicu Mic'),
11034
+ (10999, 'RO ', '315', 'Moravita'),
11035
+ (11000, 'RO ', '315', 'Mosnita Noua'),
11036
+ (11001, 'RO ', '315', 'Mosnita Veche'),
11037
+ (11002, 'RO ', '315', 'Murani'),
11038
+ (11003, 'RO ', '315', 'Nadas'),
11039
+ (11004, 'RO ', '315', 'Nadrag'),
11040
+ (11005, 'RO ', '315', 'Nemesesti'),
11041
+ (11006, 'RO ', '315', 'Nerau'),
11042
+ (11007, 'RO ', '315', 'Nevrincea'),
11043
+ (11008, 'RO ', '315', 'Nitchidorf'),
11044
+ (11009, 'RO ', '315', 'Obad'),
11045
+ (11010, 'RO ', '315', 'Ofsenita'),
11046
+ (11011, 'RO ', '315', 'Ohaba Lunga'),
11047
+ (11012, 'RO ', '315', 'Ohaba Romana'),
11048
+ (11013, 'RO ', '315', 'Ohaba-Forgaci'),
11049
+ (11014, 'RO ', '315', 'Olosag'),
11050
+ (11015, 'RO ', '315', 'Opatita'),
11051
+ (11016, 'RO ', '315', 'Ortisoara'),
11052
+ (11017, 'RO ', '315', 'Otelec'),
11053
+ (11018, 'RO ', '315', 'Otvesti'),
11054
+ (11019, 'RO ', '315', 'Padurani'),
11055
+ (11020, 'RO ', '315', 'Padureni'),
11056
+ (11021, 'RO ', '315', 'Padureni (Victor Vlad Delamarina)'),
11057
+ (11022, 'RO ', '315', 'Paniova'),
11058
+ (11023, 'RO ', '315', 'Parta'),
11059
+ (11024, 'RO ', '315', 'Partos'),
11060
+ (11025, 'RO ', '315', 'Paru'),
11061
+ (11026, 'RO ', '315', 'Peciu Nou'),
11062
+ (11027, 'RO ', '315', 'Percosova'),
11063
+ (11028, 'RO ', '315', 'Periam'),
11064
+ (11029, 'RO ', '315', 'Pesac'),
11065
+ (11030, 'RO ', '315', 'Petroasa Mare'),
11066
+ (11031, 'RO ', '315', 'Petroman'),
11067
+ (11032, 'RO ', '315', 'Petrovaselo'),
11068
+ (11033, 'RO ', '315', 'Pietroasa'),
11069
+ (11034, 'RO ', '315', 'Pischia'),
11070
+ (11035, 'RO ', '315', 'Poganesti'),
11071
+ (11036, 'RO ', '315', 'Poieni'),
11072
+ (11037, 'RO ', '315', 'Pordeanu'),
11073
+ (11038, 'RO ', '315', 'Povargina'),
11074
+ (11039, 'RO ', '315', 'Pustinis'),
11075
+ (11040, 'RO ', '315', 'Rachita'),
11076
+ (11041, 'RO ', '315', 'Racovita'),
11077
+ (11042, 'RO ', '315', 'Radmanesti'),
11078
+ (11043, 'RO ', '315', 'Rauti'),
11079
+ (11044, 'RO ', '315', 'Recas'),
11080
+ (11045, 'RO ', '315', 'Remetea Mare'),
11081
+ (11046, 'RO ', '315', 'Remetea Mica'),
11082
+ (11047, 'RO ', '315', 'Remetea-Lunca'),
11083
+ (11048, 'RO ', '315', 'Romanesti'),
11084
+ (11049, 'RO ', '315', 'Rovinita Mare'),
11085
+ (11050, 'RO ', '315', 'Rovinita Mica'),
11086
+ (11051, 'RO ', '315', 'Rudicica'),
11087
+ (11052, 'RO ', '315', 'Rudna'),
11088
+ (11053, 'RO ', '315', 'Sacalaz'),
11089
+ (11054, 'RO ', '315', 'Saceni'),
11090
+ (11055, 'RO ', '315', 'Sacosu Mare'),
11091
+ (11056, 'RO ', '315', 'Sacosu Turcesc'),
11092
+ (11057, 'RO ', '315', 'Sag'),
11093
+ (11058, 'RO ', '315', 'Salbagel'),
11094
+ (11059, 'RO ', '315', 'Salciua Noua'),
11095
+ (11060, 'RO ', '315', 'Sanandrei'),
11096
+ (11061, 'RO ', '315', 'Sandra'),
11097
+ (11062, 'RO ', '315', 'Sangeorge'),
11098
+ (11063, 'RO ', '315', 'Sanmartinu Maghiar'),
11099
+ (11064, 'RO ', '315', 'Sanmartinu Sarbesc'),
11100
+ (11065, 'RO ', '315', 'Sanmihaiu German'),
11101
+ (11066, 'RO ', '315', 'Sanmihaiu Roman'),
11102
+ (11067, 'RO ', '315', 'Sannicolau Mare'),
11103
+ (11068, 'RO ', '315', 'Sanovita'),
11104
+ (11069, 'RO ', '315', 'Sanpetru Mare'),
11105
+ (11070, 'RO ', '315', 'Sanpetru Mic'),
11106
+ (11071, 'RO ', '315', 'Saravale'),
11107
+ (11072, 'RO ', '315', 'Sarazani'),
11108
+ (11073, 'RO ', '315', 'Sarbova'),
11109
+ (11074, 'RO ', '315', 'Satchinez'),
11110
+ (11075, 'RO ', '315', 'Sculia'),
11111
+ (11076, 'RO ', '315', 'Secas'),
11112
+ (11077, 'RO ', '315', 'Seceani'),
11113
+ (11078, 'RO ', '315', 'Semlacu Mare'),
11114
+ (11079, 'RO ', '315', 'Semlacu Mic'),
11115
+ (11080, 'RO ', '315', 'Silagiu'),
11116
+ (11081, 'RO ', '315', 'Sinersig'),
11117
+ (11082, 'RO ', '315', 'Sintar'),
11118
+ (11083, 'RO ', '315', 'Sintesti'),
11119
+ (11084, 'RO ', '315', 'Sipet'),
11120
+ (11085, 'RO ', '315', 'Soca'),
11121
+ (11086, 'RO ', '315', 'Spata'),
11122
+ (11087, 'RO ', '315', 'Stamora Germana'),
11123
+ (11088, 'RO ', '315', 'Stamora Romana'),
11124
+ (11089, 'RO ', '315', 'Stanciova'),
11125
+ (11090, 'RO ', '315', 'Stiuca'),
11126
+ (11091, 'RO ', '315', 'Sudrias'),
11127
+ (11092, 'RO ', '315', 'Surducu Mic'),
11128
+ (11093, 'RO ', '315', 'Susani'),
11129
+ (11094, 'RO ', '315', 'Sustra'),
11130
+ (11095, 'RO ', '315', 'Tapia'),
11131
+ (11096, 'RO ', '315', 'Targoviste'),
11132
+ (11097, 'RO ', '315', 'Temeresti'),
11133
+ (11098, 'RO ', '315', 'Teremia Mare'),
11134
+ (11099, 'RO ', '315', 'Teremia Mica'),
11135
+ (11100, 'RO ', '315', 'Tes'),
11136
+ (11101, 'RO ', '315', 'Timisoara'),
11137
+ (11102, 'RO ', '315', 'Tipari'),
11138
+ (11103, 'RO ', '315', 'Toager'),
11139
+ (11104, 'RO ', '315', 'Tomesti'),
11140
+ (11105, 'RO ', '315', 'Tomnatic'),
11141
+ (11106, 'RO ', '315', 'Topla'),
11142
+ (11107, 'RO ', '315', 'Topolovatu Mare'),
11143
+ (11108, 'RO ', '315', 'Topolovatu Mic'),
11144
+ (11109, 'RO ', '315', 'Tormac'),
11145
+ (11110, 'RO ', '315', 'Traian Vuia'),
11146
+ (11111, 'RO ', '315', 'Uihei'),
11147
+ (11112, 'RO ', '315', 'Uivar'),
11148
+ (11113, 'RO ', '315', 'Uliuc'),
11149
+ (11114, 'RO ', '315', 'Unip'),
11150
+ (11115, 'RO ', '315', 'Urseni'),
11151
+ (11116, 'RO ', '315', 'Utvin'),
11152
+ (11117, 'RO ', '315', 'Valcani'),
11153
+ (11118, 'RO ', '315', 'Valea Lunga Romana'),
11154
+ (11119, 'RO ', '315', 'Varias'),
11155
+ (11120, 'RO ', '315', 'Victor Vlad Delamarina'),
11156
+ (11121, 'RO ', '315', 'Visag'),
11157
+ (11122, 'RO ', '315', 'Vizejdia'),
11158
+ (11123, 'RO ', '315', 'Vizma'),
11159
+ (11124, 'RO ', '315', 'Voiteg'),
11160
+ (11125, 'RO ', '315', 'Vucova'),
11161
+ (11126, 'RO ', '315', 'Zgribesti'),
11162
+ (11127, 'RO ', '315', 'Zolt'),
11163
+ (11128, 'RO ', '315', 'Zorani'),
11164
+ (11129, 'RO ', '316', 'Agighiol'),
11165
+ (11130, 'RO ', '316', 'Alba'),
11166
+ (11131, 'RO ', '316', 'Atmagea'),
11167
+ (11132, 'RO ', '316', 'Babadag'),
11168
+ (11133, 'RO ', '316', 'Baia'),
11169
+ (11134, 'RO ', '316', 'Balabancea'),
11170
+ (11135, 'RO ', '316', 'Baltenii de Jos'),
11171
+ (11136, 'RO ', '316', 'Baltenii de Sus'),
11172
+ (11137, 'RO ', '316', 'Beidaud'),
11173
+ (11138, 'RO ', '316', 'Bestepe'),
11174
+ (11139, 'RO ', '316', 'C.A. Rosetti'),
11175
+ (11140, 'RO ', '316', 'Calfa'),
11176
+ (11141, 'RO ', '316', 'Camena'),
11177
+ (11142, 'RO ', '316', 'Caprioara'),
11178
+ (11143, 'RO ', '316', 'Caraorman'),
11179
+ (11144, 'RO ', '316', 'Carcaliu'),
11180
+ (11145, 'RO ', '316', 'Cardon'),
11181
+ (11146, 'RO ', '316', 'Carjelari'),
11182
+ (11147, 'RO ', '316', 'Casimcea'),
11183
+ (11148, 'RO ', '316', 'Caslita'),
11184
+ (11149, 'RO ', '316', 'Cataloi'),
11185
+ (11150, 'RO ', '316', 'Caugagia'),
11186
+ (11151, 'RO ', '316', 'Ceamurlia de Jos'),
11187
+ (11152, 'RO ', '316', 'Ceamurlia de Sus'),
11188
+ (11153, 'RO ', '316', 'Ceatalchioi'),
11189
+ (11154, 'RO ', '316', 'Cerbu'),
11190
+ (11155, 'RO ', '316', 'Cerna'),
11191
+ (11156, 'RO ', '316', 'Chilia Veche'),
11192
+ (11157, 'RO ', '316', 'Cismeaua Noua'),
11193
+ (11158, 'RO ', '316', 'Ciucurova'),
11194
+ (11159, 'RO ', '316', 'Closca'),
11195
+ (11160, 'RO ', '316', 'Colina'),
11196
+ (11161, 'RO ', '316', 'Corugea'),
11197
+ (11162, 'RO ', '316', 'Crisan'),
11198
+ (11163, 'RO ', '316', 'Daeni'),
11199
+ (11164, 'RO ', '316', 'Dorobantu'),
11200
+ (11165, 'RO ', '316', 'Dunavatu de Jos'),
11201
+ (11166, 'RO ', '316', 'Dunavatu de Sus'),
11202
+ (11167, 'RO ', '316', 'Enisala'),
11203
+ (11168, 'RO ', '316', 'Fagarasu Nou'),
11204
+ (11169, 'RO ', '316', 'Fantana Mare'),
11205
+ (11170, 'RO ', '316', 'Fantana Oilor'),
11206
+ (11171, 'RO ', '316', 'Floresti'),
11207
+ (11172, 'RO ', '316', 'Frecatei'),
11208
+ (11173, 'RO ', '316', 'Garvan'),
11209
+ (11174, 'RO ', '316', 'General Praporgescu'),
11210
+ (11175, 'RO ', '316', 'Gorgova'),
11211
+ (11176, 'RO ', '316', 'Greci'),
11212
+ (11177, 'RO ', '316', 'Grindu'),
11213
+ (11178, 'RO ', '316', 'Haidar'),
11214
+ (11179, 'RO ', '316', 'Hamcearca'),
11215
+ (11180, 'RO ', '316', 'Horia'),
11216
+ (11181, 'RO ', '316', 'I.C. Bratianu'),
11217
+ (11182, 'RO ', '316', 'Iazurile'),
11218
+ (11183, 'RO ', '316', 'Ilganii de Jos'),
11219
+ (11184, 'RO ', '316', 'Ilganii de Sus'),
11220
+ (11185, 'RO ', '316', 'Isaccea'),
11221
+ (11186, 'RO ', '316', 'Iulia'),
11222
+ (11187, 'RO ', '316', 'Izvoarele'),
11223
+ (11188, 'RO ', '316', 'Jijila'),
11224
+ (11189, 'RO ', '316', 'Jurilovca'),
11225
+ (11190, 'RO ', '316', 'Lastuni'),
11226
+ (11191, 'RO ', '316', 'Letea'),
11227
+ (11192, 'RO ', '316', 'Luminita'),
11228
+ (11193, 'RO ', '316', 'Lunca'),
11229
+ (11194, 'RO ', '316', 'Luncavita'),
11230
+ (11195, 'RO ', '316', 'Macin'),
11231
+ (11196, 'RO ', '316', 'Magurele'),
11232
+ (11197, 'RO ', '316', 'Mahmudia'),
11233
+ (11198, 'RO ', '316', 'Malcoci'),
11234
+ (11199, 'RO ', '316', 'Maliuc'),
11235
+ (11200, 'RO ', '316', 'Mesteru'),
11236
+ (11201, 'RO ', '316', 'Mihai Bravu'),
11237
+ (11202, 'RO ', '316', 'Mihail Kogalniceanu'),
11238
+ (11203, 'RO ', '316', 'Mila 23'),
11239
+ (11204, 'RO ', '316', 'Mina Altan Tepe'),
11240
+ (11205, 'RO ', '316', 'Mineri'),
11241
+ (11206, 'RO ', '316', 'Mircea Voda'),
11242
+ (11207, 'RO ', '316', 'Murighiol'),
11243
+ (11208, 'RO ', '316', 'Nalbant'),
11244
+ (11209, 'RO ', '316', 'Neatarnarea'),
11245
+ (11210, 'RO ', '316', 'Nicolae Balcescu'),
11246
+ (11211, 'RO ', '316', 'Niculitel'),
11247
+ (11212, 'RO ', '316', 'Nifon'),
11248
+ (11213, 'RO ', '316', 'Nufaru'),
11249
+ (11214, 'RO ', '316', 'Ostrov'),
11250
+ (11215, 'RO ', '316', 'Ostrov Tataru'),
11251
+ (11216, 'RO ', '316', 'Panduru'),
11252
+ (11217, 'RO ', '316', 'Parches'),
11253
+ (11218, 'RO ', '316', 'Pardina'),
11254
+ (11219, 'RO ', '316', 'Partizani'),
11255
+ (11220, 'RO ', '316', 'Patlageanca'),
11256
+ (11221, 'RO ', '316', 'Peceneaga'),
11257
+ (11222, 'RO ', '316', 'Periprava '),
11258
+ (11223, 'RO ', '316', 'Piatra'),
11259
+ (11224, 'RO ', '316', 'Plauru'),
11260
+ (11225, 'RO ', '316', 'Plopul'),
11261
+ (11226, 'RO ', '316', 'Posta'),
11262
+ (11227, 'RO ', '316', 'Rachelu'),
11263
+ (11228, 'RO ', '316', 'Rahman'),
11264
+ (11229, 'RO ', '316', 'Randunica'),
11265
+ (11230, 'RO ', '316', 'Razboieni'),
11266
+ (11231, 'RO ', '316', 'Revarsarea'),
11267
+ (11232, 'RO ', '316', 'Sabangia'),
11268
+ (11233, 'RO ', '316', 'Salceni'),
11269
+ (11234, 'RO ', '316', 'Salcioara'),
11270
+ (11235, 'RO ', '316', 'Sambata Noua'),
11271
+ (11236, 'RO ', '316', 'Sarichioi'),
11272
+ (11237, 'RO ', '316', 'Sarighiol de Deal'),
11273
+ (11238, 'RO ', '316', 'Sarinasuf'),
11274
+ (11239, 'RO ', '316', 'Satu Nou'),
11275
+ (11240, 'RO ', '316', 'Sfantu Gheorghe'),
11276
+ (11241, 'RO ', '316', 'Sfistofca'),
11277
+ (11242, 'RO ', '316', 'Slava Cercheza'),
11278
+ (11243, 'RO ', '316', 'Slava Rusa'),
11279
+ (11244, 'RO ', '316', 'Smardan'),
11280
+ (11245, 'RO ', '316', 'Somova'),
11281
+ (11246, 'RO ', '316', 'Stanca'),
11282
+ (11247, 'RO ', '316', 'Stejaru'),
11283
+ (11248, 'RO ', '316', 'Sulina'),
11284
+ (11249, 'RO ', '316', 'Tatanir'),
11285
+ (11250, 'RO ', '316', 'Telita'),
11286
+ (11251, 'RO ', '316', 'Tichilesti'),
11287
+ (11252, 'RO ', '316', 'Topolog'),
11288
+ (11253, 'RO ', '316', 'Traian'),
11289
+ (11254, 'RO ', '316', 'Trestenic'),
11290
+ (11255, 'RO ', '316', 'Tudor Vladimirescu'),
11291
+ (11256, 'RO ', '316', 'Tulcea'),
11292
+ (11257, 'RO ', '316', 'Turcoaia'),
11293
+ (11258, 'RO ', '316', 'Turda'),
11294
+ (11259, 'RO ', '316', 'Uzlina'),
11295
+ (11260, 'RO ', '316', 'Vacareni'),
11296
+ (11261, 'RO ', '316', 'Valea Nucarilor'),
11297
+ (11262, 'RO ', '316', 'Valea Teilor'),
11298
+ (11263, 'RO ', '316', 'Vasile Alecsandri'),
11299
+ (11264, 'RO ', '316', 'Victoria'),
11300
+ (11265, 'RO ', '316', 'Visina'),
11301
+ (11266, 'RO ', '316', 'Visterna'),
11302
+ (11267, 'RO ', '316', 'Vulturu'),
11303
+ (11268, 'RO ', '316', 'Zebil'),
11304
+ (11269, 'RO ', '318', 'Afanata'),
11305
+ (11270, 'RO ', '318', 'Aldesti'),
11306
+ (11271, 'RO ', '318', 'Alunu'),
11307
+ (11272, 'RO ', '318', 'Amarasti'),
11308
+ (11273, 'RO ', '318', 'Andreiesti'),
11309
+ (11274, 'RO ', '318', 'Aninoasa'),
11310
+ (11275, 'RO ', '318', 'Aranghel'),
11311
+ (11276, 'RO ', '318', 'Aricioaia'),
11312
+ (11277, 'RO ', '318', 'Armasesti'),
11313
+ (11278, 'RO ', '318', 'Arsanca'),
11314
+ (11279, 'RO ', '318', 'Auresti'),
11315
+ (11280, 'RO ', '318', 'Avramesti'),
11316
+ (11281, 'RO ', '318', 'Babeni'),
11317
+ (11282, 'RO ', '318', 'Babeni-Oltetu'),
11318
+ (11283, 'RO ', '318', 'Babuesti'),
11319
+ (11284, 'RO ', '318', 'Badeni'),
11320
+ (11285, 'RO ', '318', 'Baiasa'),
11321
+ (11286, 'RO ', '318', 'Baiasu'),
11322
+ (11287, 'RO ', '318', 'Baile Govora'),
11323
+ (11288, 'RO ', '318', 'Baile Olanesti'),
11324
+ (11289, 'RO ', '318', 'Bajenari'),
11325
+ (11290, 'RO ', '318', 'Balaciu'),
11326
+ (11291, 'RO ', '318', 'Balcesti'),
11327
+ (11292, 'RO ', '318', 'Balomireasa'),
11328
+ (11293, 'RO ', '318', 'Balota'),
11329
+ (11294, 'RO ', '318', 'Balsoara'),
11330
+ (11295, 'RO ', '318', 'Baltateni'),
11331
+ (11296, 'RO ', '318', 'Balteni'),
11332
+ (11297, 'RO ', '318', 'Balutoaia'),
11333
+ (11298, 'RO ', '318', 'Banesti'),
11334
+ (11299, 'RO ', '318', 'Bantesti'),
11335
+ (11300, 'RO ', '318', 'Barbarigeni'),
11336
+ (11301, 'RO ', '318', 'Barbatesti'),
11337
+ (11302, 'RO ', '318', 'Barbuceni'),
11338
+ (11303, 'RO ', '318', 'Barcanele'),
11339
+ (11304, 'RO ', '318', 'Barcanesti'),
11340
+ (11305, 'RO ', '318', 'Barlogu'),
11341
+ (11306, 'RO ', '318', 'Baroiu'),
11342
+ (11307, 'RO ', '318', 'Barsesti (Budesti)'),
11343
+ (11308, 'RO ', '318', 'Barsesti (Mihaesti)'),
11344
+ (11309, 'RO ', '318', 'Barsoiu'),
11345
+ (11310, 'RO ', '318', 'Barza'),
11346
+ (11311, 'RO ', '318', 'Barzesti'),
11347
+ (11312, 'RO ', '318', 'Batasani'),
11348
+ (11313, 'RO ', '318', 'Becsani'),
11349
+ (11314, 'RO ', '318', 'Benesti'),
11350
+ (11315, 'RO ', '318', 'Berbesti'),
11351
+ (11316, 'RO ', '318', 'Berbesti (Lalosu)'),
11352
+ (11317, 'RO ', '318', 'Bercioiu'),
11353
+ (11318, 'RO ', '318', 'Beresti'),
11354
+ (11319, 'RO ', '318', 'Berislavesti'),
11355
+ (11320, 'RO ', '318', 'Bistrita'),
11356
+ (11321, 'RO ', '318', 'Blanoiu'),
11357
+ (11322, 'RO ', '318', 'Blejani'),
11358
+ (11323, 'RO ', '318', 'Blidari'),
11359
+ (11324, 'RO ', '318', 'Bocsa'),
11360
+ (11325, 'RO ', '318', 'Bodesti (Alunu)'),
11361
+ (11326, 'RO ', '318', 'Bodesti (Barbatesti)'),
11362
+ (11327, 'RO ', '318', 'Bogdanesti (Bujoreni)'),
11363
+ (11328, 'RO ', '318', 'Bogdanesti (Otesani)'),
11364
+ (11329, 'RO ', '318', 'Bogdanesti (Tomsani)'),
11365
+ (11330, 'RO ', '318', 'Boisoara'),
11366
+ (11331, 'RO ', '318', 'Bonciu'),
11367
+ (11332, 'RO ', '318', 'Bondoci'),
11368
+ (11333, 'RO ', '318', 'Borosesti'),
11369
+ (11334, 'RO ', '318', 'Botorani'),
11370
+ (11335, 'RO ', '318', 'Bradisor'),
11371
+ (11336, 'RO ', '318', 'Bradu-Clocotici'),
11372
+ (11337, 'RO ', '318', 'Bratia din Deal'),
11373
+ (11338, 'RO ', '318', 'Bratia din Vale'),
11374
+ (11339, 'RO ', '318', 'Bratovesti'),
11375
+ (11340, 'RO ', '318', 'Brezoi'),
11376
+ (11341, 'RO ', '318', 'Brosteni'),
11377
+ (11342, 'RO ', '318', 'Buciumeni'),
11378
+ (11343, 'RO ', '318', 'Bucsani'),
11379
+ (11344, 'RO ', '318', 'Buda'),
11380
+ (11345, 'RO ', '318', 'Budele'),
11381
+ (11346, 'RO ', '318', 'Budesti'),
11382
+ (11347, 'RO ', '318', 'Budesti (Diculesti)'),
11383
+ (11348, 'RO ', '318', 'Budurasti'),
11384
+ (11349, 'RO ', '318', 'Bujoreni'),
11385
+ (11350, 'RO ', '318', 'Bulagei'),
11386
+ (11351, 'RO ', '318', 'Buleta'),
11387
+ (11352, 'RO ', '318', 'Bumbuesti'),
11388
+ (11353, 'RO ', '318', 'Bunesti'),
11389
+ (11354, 'RO ', '318', 'Bungetani'),
11390
+ (11355, 'RO ', '318', 'Burdalesti'),
11391
+ (11356, 'RO ', '318', 'Butanu'),
11392
+ (11357, 'RO ', '318', 'Buzdugan'),
11393
+ (11358, 'RO ', '318', 'Caciulata'),
11394
+ (11359, 'RO ', '318', 'Caineni'),
11395
+ (11360, 'RO ', '318', 'Cainenii Mari'),
11396
+ (11361, 'RO ', '318', 'Cainenii Mici'),
11397
+ (11362, 'RO ', '318', 'Caligi'),
11398
+ (11363, 'RO ', '318', 'Calimanesti'),
11399
+ (11364, 'RO ', '318', 'Calina'),
11400
+ (11365, 'RO ', '318', 'Calinesti'),
11401
+ (11366, 'RO ', '318', 'Capu Dealului'),
11402
+ (11367, 'RO ', '318', 'Carcadiesti'),
11403
+ (11368, 'RO ', '318', 'Carlogani(valcea)'),
11404
+ (11369, 'RO ', '318', 'Carstanesti'),
11405
+ (11370, 'RO ', '318', 'Casa Veche'),
11406
+ (11371, 'RO ', '318', 'Catetu'),
11407
+ (11372, 'RO ', '318', 'Cazanesti (Ghioroiu)'),
11408
+ (11373, 'RO ', '318', 'Cazanesti (Milcoiu)'),
11409
+ (11374, 'RO ', '318', 'Cazanesti (Ramnicu Valcea)'),
11410
+ (11375, 'RO ', '318', 'Ceretu'),
11411
+ (11376, 'RO ', '318', 'Cermegesti (Ladesti)'),
11412
+ (11377, 'RO ', '318', 'Cermegesti (Pesceana)'),
11413
+ (11378, 'RO ', '318', 'Cerna'),
11414
+ (11379, 'RO ', '318', 'Cernelele'),
11415
+ (11380, 'RO ', '318', 'Cernisoara'),
11416
+ (11381, 'RO ', '318', 'Cetateaua'),
11417
+ (11382, 'RO ', '318', 'Cheia'),
11418
+ (11383, 'RO ', '318', 'Cherasti'),
11419
+ (11384, 'RO ', '318', 'Chiceni'),
11420
+ (11385, 'RO ', '318', 'Chirculesti'),
11421
+ (11386, 'RO ', '318', 'Chiricesti'),
11422
+ (11387, 'RO ', '318', 'Cioboti'),
11423
+ (11388, 'RO ', '318', 'Ciocaltei'),
11424
+ (11389, 'RO ', '318', 'Ciocanari'),
11425
+ (11390, 'RO ', '318', 'Cioponesti'),
11426
+ (11391, 'RO ', '318', 'Ciorasti'),
11427
+ (11392, 'RO ', '318', 'Ciortesti'),
11428
+ (11393, 'RO ', '318', 'Ciresu'),
11429
+ (11394, 'RO ', '318', 'Ciresul'),
11430
+ (11395, 'RO ', '318', 'Ciucheti'),
11431
+ (11396, 'RO ', '318', 'Ciumagi'),
11432
+ (11397, 'RO ', '318', 'Ciungetu'),
11433
+ (11398, 'RO ', '318', 'Ciutesti'),
11434
+ (11399, 'RO ', '318', 'Coasta (Golesti)'),
11435
+ (11400, 'RO ', '318', 'Coasta (Pausesti-Maglasi)'),
11436
+ (11401, 'RO ', '318', 'Coasta Cerbului'),
11437
+ (11402, 'RO ', '318', 'Coasta Mare'),
11438
+ (11403, 'RO ', '318', 'Cocoru'),
11439
+ (11404, 'RO ', '318', 'Colelia'),
11440
+ (11405, 'RO ', '318', 'Coltesti'),
11441
+ (11406, 'RO ', '318', 'Comanca'),
11442
+ (11407, 'RO ', '318', 'Condoiesti'),
11443
+ (11408, 'RO ', '318', 'Contea'),
11444
+ (11409, 'RO ', '318', 'Copacelu'),
11445
+ (11410, 'RO ', '318', 'Copaceni'),
11446
+ (11411, 'RO ', '318', 'Copaceni (Racovita)'),
11447
+ (11412, 'RO ', '318', 'Corbii din Vale'),
11448
+ (11413, 'RO ', '318', 'Corbu'),
11449
+ (11414, 'RO ', '318', 'Cornet'),
11450
+ (11415, 'RO ', '318', 'Cosani'),
11451
+ (11416, 'RO ', '318', 'Cosota'),
11452
+ (11417, 'RO ', '318', 'Costesti'),
11453
+ (11418, 'RO ', '318', 'Crangu'),
11454
+ (11419, 'RO ', '318', 'Cremenari'),
11455
+ (11420, 'RO ', '318', 'Creteni'),
11456
+ (11421, 'RO ', '318', 'Cucesti'),
11457
+ (11422, 'RO ', '318', 'Cuci'),
11458
+ (11423, 'RO ', '318', 'Cucoiu'),
11459
+ (11424, 'RO ', '318', 'Cuculesti'),
11460
+ (11425, 'RO ', '318', 'Cueni'),
11461
+ (11426, 'RO ', '318', 'Curaturile'),
11462
+ (11427, 'RO ', '318', 'Curtea'),
11463
+ (11428, 'RO ', '318', 'Daesti'),
11464
+ (11429, 'RO ', '318', 'Daesti (Popesti)'),
11465
+ (11430, 'RO ', '318', 'Damteni'),
11466
+ (11431, 'RO ', '318', 'Dancai'),
11467
+ (11432, 'RO ', '318', 'Dangesti'),
11468
+ (11433, 'RO ', '318', 'Danicei'),
11469
+ (11434, 'RO ', '318', 'Dealu Alunis'),
11470
+ (11435, 'RO ', '318', 'Dealu Bisericii'),
11471
+ (11436, 'RO ', '318', 'Dealu Corni'),
11472
+ (11437, 'RO ', '318', 'Dealu Glameia'),
11473
+ (11438, 'RO ', '318', 'Dealu Launele'),
11474
+ (11439, 'RO ', '318', 'Dealu Malului'),
11475
+ (11440, 'RO ', '318', 'Dealu Mare (Galicea)'),
11476
+ (11441, 'RO ', '318', 'Dealu Mare (Gusoeni)'),
11477
+ (11442, 'RO ', '318', 'Dealu Mare (Ionesti)'),
11478
+ (11443, 'RO ', '318', 'Dealu Scheiului'),
11479
+ (11444, 'RO ', '318', 'Dealu Valeni'),
11480
+ (11445, 'RO ', '318', 'Dejoi'),
11481
+ (11446, 'RO ', '318', 'Deleni'),
11482
+ (11447, 'RO ', '318', 'Delureni (Ionesti)'),
11483
+ (11448, 'RO ', '318', 'Delureni (Stoilesti)'),
11484
+ (11449, 'RO ', '318', 'Delureni (Valea Mare)'),
11485
+ (11450, 'RO ', '318', 'Dezrobiti'),
11486
+ (11451, 'RO ', '318', 'Diaconesti'),
11487
+ (11452, 'RO ', '318', 'Dianu'),
11488
+ (11453, 'RO ', '318', 'Diculesti'),
11489
+ (11454, 'RO ', '318', 'Dimulesti'),
11490
+ (11455, 'RO ', '318', 'Dobresti'),
11491
+ (11456, 'RO ', '318', 'Dobricea'),
11492
+ (11457, 'RO ', '318', 'Dobriceni'),
11493
+ (11458, 'RO ', '318', 'Dobrusa'),
11494
+ (11459, 'RO ', '318', 'Dosu Raului'),
11495
+ (11460, 'RO ', '318', 'Dozesti'),
11496
+ (11461, 'RO ', '318', 'Draganesti (Brezoi)'),
11497
+ (11462, 'RO ', '318', 'Draganesti (Golesti)'),
11498
+ (11463, 'RO ', '318', 'Draganu'),
11499
+ (11464, 'RO ', '318', 'Dragasani'),
11500
+ (11465, 'RO ', '318', 'Dragioiu'),
11501
+ (11466, 'RO ', '318', 'Dragoesti'),
11502
+ (11467, 'RO ', '318', 'Dragulesti'),
11503
+ (11468, 'RO ', '318', 'Dumbrava'),
11504
+ (11469, 'RO ', '318', 'Dumbravesti'),
11505
+ (11470, 'RO ', '318', 'Facai'),
11506
+ (11471, 'RO ', '318', 'Fartatesti'),
11507
+ (11472, 'RO ', '318', 'Fauresti'),
11508
+ (11473, 'RO ', '318', 'Fauresti (Zatreni)'),
11509
+ (11474, 'RO ', '318', 'Fedelesoiu'),
11510
+ (11475, 'RO ', '318', 'Firesti'),
11511
+ (11476, 'RO ', '318', 'Firijba'),
11512
+ (11477, 'RO ', '318', 'Fiscalia'),
11513
+ (11478, 'RO ', '318', 'Folestii de Jos'),
11514
+ (11479, 'RO ', '318', 'Folestii de Sus'),
11515
+ (11480, 'RO ', '318', 'Fotesti'),
11516
+ (11481, 'RO ', '318', 'Francesti'),
11517
+ (11482, 'RO ', '318', 'Francesti-Coasta'),
11518
+ (11483, 'RO ', '318', 'Frasina'),
11519
+ (11484, 'RO ', '318', 'Fumureni'),
11520
+ (11485, 'RO ', '318', 'Fundatura'),
11521
+ (11486, 'RO ', '318', 'Gageni'),
11522
+ (11487, 'RO ', '318', 'Gainesti'),
11523
+ (11488, 'RO ', '318', 'Galicea'),
11524
+ (11489, 'RO ', '318', 'Galtofani'),
11525
+ (11490, 'RO ', '318', 'Ganesti'),
11526
+ (11491, 'RO ', '318', 'Gantulei'),
11527
+ (11492, 'RO ', '318', 'Garnicet'),
11528
+ (11493, 'RO ', '318', 'Garnicetu'),
11529
+ (11494, 'RO ', '318', 'Gatejesti'),
11530
+ (11495, 'RO ', '318', 'Gaujani'),
11531
+ (11496, 'RO ', '318', 'Gavanesti'),
11532
+ (11497, 'RO ', '318', 'Geamana (Dragoesti)'),
11533
+ (11498, 'RO ', '318', 'Geamana (Stoilesti)'),
11534
+ (11499, 'RO ', '318', 'Genuneni'),
11535
+ (11500, 'RO ', '318', 'Ghindari'),
11536
+ (11501, 'RO ', '318', 'Ghiobesti'),
11537
+ (11502, 'RO ', '318', 'Ghioroiu'),
11538
+ (11503, 'RO ', '318', 'Gibesti'),
11539
+ (11504, 'RO ', '318', 'Ginerica'),
11540
+ (11505, 'RO ', '318', 'Giulesti'),
11541
+ (11506, 'RO ', '318', 'Giulestii de Sus'),
11542
+ (11507, 'RO ', '318', 'Giurgiuveni'),
11543
+ (11508, 'RO ', '318', 'Giuroiu'),
11544
+ (11509, 'RO ', '318', 'Glavile'),
11545
+ (11510, 'RO ', '318', 'Glodu'),
11546
+ (11511, 'RO ', '318', 'Golesti'),
11547
+ (11512, 'RO ', '318', 'Golotreni'),
11548
+ (11513, 'RO ', '318', 'Gorunesti (Balcesti)'),
11549
+ (11514, 'RO ', '318', 'Gorunesti (Slatioara)'),
11550
+ (11515, 'RO ', '318', 'Govora'),
11551
+ (11516, 'RO ', '318', 'Gradistea'),
11552
+ (11517, 'RO ', '318', 'Greblesti '),
11553
+ (11518, 'RO ', '318', 'Greci'),
11554
+ (11519, 'RO ', '318', 'Gropeni'),
11555
+ (11520, 'RO ', '318', 'Grosi'),
11556
+ (11521, 'RO ', '318', 'Gruieri'),
11557
+ (11522, 'RO ', '318', 'Gruiu'),
11558
+ (11523, 'RO ', '318', 'Gruiu Lupului'),
11559
+ (11524, 'RO ', '318', 'Guguianca'),
11560
+ (11525, 'RO ', '318', 'Gura Crucilor'),
11561
+ (11526, 'RO ', '318', 'Gura Suhasului'),
11562
+ (11527, 'RO ', '318', 'Gura Vaii'),
11563
+ (11528, 'RO ', '318', 'Gurguiata'),
11564
+ (11529, 'RO ', '318', 'Gurisoara'),
11565
+ (11530, 'RO ', '318', 'Gusoeni'),
11566
+ (11531, 'RO ', '318', 'Gusoianca'),
11567
+ (11532, 'RO ', '318', 'Herasti'),
11568
+ (11533, 'RO ', '318', 'Horezu'),
11569
+ (11534, 'RO ', '318', 'Hotarasa'),
11570
+ (11535, 'RO ', '318', 'Hotarele'),
11571
+ (11536, 'RO ', '318', 'Hotaroaia'),
11572
+ (11537, 'RO ', '318', 'Iacovile'),
11573
+ (11538, 'RO ', '318', 'Ifrimesti'),
11574
+ (11539, 'RO ', '318', 'Igoiu'),
11575
+ (11540, 'RO ', '318', 'Ilaciu'),
11576
+ (11541, 'RO ', '318', 'Ionesti'),
11577
+ (11542, 'RO ', '318', 'Irimesti'),
11578
+ (11543, 'RO ', '318', 'Izbasesti'),
11579
+ (11544, 'RO ', '318', 'Izvorasu'),
11580
+ (11545, 'RO ', '318', 'Izvoru'),
11581
+ (11546, 'RO ', '318', 'Izvoru Rece (Stoilesti)'),
11582
+ (11547, 'RO ', '318', 'Izvoru Rece (Vaideeni)'),
11583
+ (11548, 'RO ', '318', 'Jarostea'),
11584
+ (11549, 'RO ', '318', 'Jiblea Noua'),
11585
+ (11550, 'RO ', '318', 'Jiblea Veche'),
11586
+ (11551, 'RO ', '318', 'Lacusteni'),
11587
+ (11552, 'RO ', '318', 'Lacustenii de Jos'),
11588
+ (11553, 'RO ', '318', 'Lacustenii de Sus'),
11589
+ (11554, 'RO ', '318', 'Ladesti'),
11590
+ (11555, 'RO ', '318', 'Lalosu'),
11591
+ (11556, 'RO ', '318', 'Lapusata'),
11592
+ (11557, 'RO ', '318', 'Launele de Jos'),
11593
+ (11558, 'RO ', '318', 'Linia (Budesti)'),
11594
+ (11559, 'RO ', '318', 'Linia (Gradistea)'),
11595
+ (11560, 'RO ', '318', 'Linia Dealului'),
11596
+ (11561, 'RO ', '318', 'Linia Hanului'),
11597
+ (11562, 'RO ', '318', 'Linia pe Vale'),
11598
+ (11563, 'RO ', '318', 'Livadia'),
11599
+ (11564, 'RO ', '318', 'Livezi'),
11600
+ (11565, 'RO ', '318', 'Lunca (Bujoreni)'),
11601
+ (11566, 'RO ', '318', 'Lunca (Ocnele Mari)'),
11602
+ (11567, 'RO ', '318', 'Lungesti'),
11603
+ (11568, 'RO ', '318', 'Lupoaia'),
11604
+ (11569, 'RO ', '318', 'Lupuiesti'),
11605
+ (11570, 'RO ', '318', 'Maciuca'),
11606
+ (11571, 'RO ', '318', 'Maciuceni'),
11607
+ (11572, 'RO ', '318', 'Madulari'),
11608
+ (11573, 'RO ', '318', 'Madulari (Cernisoara)'),
11609
+ (11574, 'RO ', '318', 'Magura'),
11610
+ (11575, 'RO ', '318', 'Magureni'),
11611
+ (11576, 'RO ', '318', 'Malaia'),
11612
+ (11577, 'RO ', '318', 'Maldaresti'),
11613
+ (11578, 'RO ', '318', 'Maldaresti (Ladesti)'),
11614
+ (11579, 'RO ', '318', 'Maldaresti (Maciuca)'),
11615
+ (11580, 'RO ', '318', 'Maldarestii de Jos'),
11616
+ (11581, 'RO ', '318', 'Malu'),
11617
+ (11582, 'RO ', '318', 'Malu Alb'),
11618
+ (11583, 'RO ', '318', 'Malu Vartop'),
11619
+ (11584, 'RO ', '318', 'Mamu'),
11620
+ (11585, 'RO ', '318', 'Manailesti'),
11621
+ (11586, 'RO ', '318', 'Maneasa'),
11622
+ (11587, 'RO ', '318', 'Mangureni'),
11623
+ (11588, 'RO ', '318', 'Manicea'),
11624
+ (11589, 'RO ', '318', 'Marcea'),
11625
+ (11590, 'RO ', '318', 'Marcusu'),
11626
+ (11591, 'RO ', '318', 'Margineni'),
11627
+ (11592, 'RO ', '318', 'Maricesti'),
11628
+ (11593, 'RO ', '318', 'Marita'),
11629
+ (11594, 'RO ', '318', 'Mateesti'),
11630
+ (11595, 'RO ', '318', 'Mazararu'),
11631
+ (11596, 'RO ', '318', 'Mazili'),
11632
+ (11597, 'RO ', '318', 'Mecea'),
11633
+ (11598, 'RO ', '318', 'Meieni'),
11634
+ (11599, 'RO ', '318', 'Meresesti'),
11635
+ (11600, 'RO ', '318', 'Mierea'),
11636
+ (11601, 'RO ', '318', 'Mihaesti'),
11637
+ (11602, 'RO ', '318', 'Mijati'),
11638
+ (11603, 'RO ', '318', 'Mijlocu'),
11639
+ (11604, 'RO ', '318', 'Milcoiu'),
11640
+ (11605, 'RO ', '318', 'Milesti'),
11641
+ (11606, 'RO ', '318', 'Milostea'),
11642
+ (11607, 'RO ', '318', 'Miresti'),
11643
+ (11608, 'RO ', '318', 'Mitrofani'),
11644
+ (11609, 'RO ', '318', 'Mlaceni'),
11645
+ (11610, 'RO ', '318', 'Modoia'),
11646
+ (11611, 'RO ', '318', 'Mogesti'),
11647
+ (11612, 'RO ', '318', 'Mogosesti'),
11648
+ (11613, 'RO ', '318', 'Mologesti'),
11649
+ (11614, 'RO ', '318', 'Mosoroasa'),
11650
+ (11615, 'RO ', '318', 'Mosteni'),
11651
+ (11616, 'RO ', '318', 'Mrenesti'),
11652
+ (11617, 'RO ', '318', 'Muereasca'),
11653
+ (11618, 'RO ', '318', 'Muereasca de Sus'),
11654
+ (11619, 'RO ', '318', 'Munteni'),
11655
+ (11620, 'RO ', '318', 'Neghinesti'),
11656
+ (11621, 'RO ', '318', 'Negraia'),
11657
+ (11622, 'RO ', '318', 'Negreni'),
11658
+ (11623, 'RO ', '318', 'Negrulesti'),
11659
+ (11624, 'RO ', '318', 'Nemoiu'),
11660
+ (11625, 'RO ', '318', 'Nenciulesti'),
11661
+ (11626, 'RO ', '318', 'Netesti'),
11662
+ (11627, 'RO ', '318', 'Nicolae Balcescu'),
11663
+ (11628, 'RO ', '318', 'Nicolesti'),
11664
+ (11629, 'RO ', '318', 'Nisipi'),
11665
+ (11630, 'RO ', '318', 'Obarsia'),
11666
+ (11631, 'RO ', '318', 'Obislavu'),
11667
+ (11632, 'RO ', '318', 'Obogeni'),
11668
+ (11633, 'RO ', '318', 'Obrocesti'),
11669
+ (11634, 'RO ', '318', 'Ocnele Mari'),
11670
+ (11635, 'RO ', '318', 'Ocnita'),
11671
+ (11636, 'RO ', '318', 'Ocracu'),
11672
+ (11637, 'RO ', '318', 'Olanesti'),
11673
+ (11638, 'RO ', '318', 'Olanu'),
11674
+ (11639, 'RO ', '318', 'Olteanca (Glavile)'),
11675
+ (11640, 'RO ', '318', 'Olteanca (Ladesti)'),
11676
+ (11641, 'RO ', '318', 'Olteni'),
11677
+ (11642, 'RO ', '318', 'Oltetani'),
11678
+ (11643, 'RO ', '318', 'Oltetu'),
11679
+ (11644, 'RO ', '318', 'Opatesti'),
11680
+ (11645, 'RO ', '318', 'Orlesti'),
11681
+ (11646, 'RO ', '318', 'Ostroveni'),
11682
+ (11647, 'RO ', '318', 'Otesani'),
11683
+ (11648, 'RO ', '318', 'Otetelisu'),
11684
+ (11649, 'RO ', '318', 'Oveselu'),
11685
+ (11650, 'RO ', '318', 'Padina'),
11686
+ (11651, 'RO ', '318', 'Paduretu'),
11687
+ (11652, 'RO ', '318', 'Palanga'),
11688
+ (11653, 'RO ', '318', 'Paraienii de Jos'),
11689
+ (11654, 'RO ', '318', 'Paraienii de Mijloc'),
11690
+ (11655, 'RO ', '318', 'Paraienii de Sus'),
11691
+ (11656, 'RO ', '318', 'Parausani'),
11692
+ (11657, 'RO ', '318', 'Pasarei'),
11693
+ (11658, 'RO ', '318', 'Pascoaia'),
11694
+ (11659, 'RO ', '318', 'Pasculesti'),
11695
+ (11660, 'RO ', '318', 'Patesti'),
11696
+ (11661, 'RO ', '318', 'Pausa'),
11697
+ (11662, 'RO ', '318', 'Pausesti'),
11698
+ (11663, 'RO ', '318', 'Pausesti-Maglasi'),
11699
+ (11664, 'RO ', '318', 'Pausesti-Otasau'),
11700
+ (11665, 'RO ', '318', 'Perisani'),
11701
+ (11666, 'RO ', '318', 'Pertesti'),
11702
+ (11667, 'RO ', '318', 'Pesceana'),
11703
+ (11668, 'RO ', '318', 'Pietrari'),
11704
+ (11669, 'RO ', '318', 'Pietrari (Pausesti-Maglasi)'),
11705
+ (11670, 'RO ', '318', 'Pietrarii de Sus'),
11706
+ (11671, 'RO ', '318', 'Pietreni'),
11707
+ (11672, 'RO ', '318', 'Pietrisu'),
11708
+ (11673, 'RO ', '318', 'Pietroasa'),
11709
+ (11674, 'RO ', '318', 'Piscu Mare'),
11710
+ (11675, 'RO ', '318', 'Piscu Pietrei'),
11711
+ (11676, 'RO ', '318', 'Piscu Scoartei'),
11712
+ (11677, 'RO ', '318', 'Pleasa'),
11713
+ (11678, 'RO ', '318', 'Plesesti'),
11714
+ (11679, 'RO ', '318', 'Plesoiu (Livezi)'),
11715
+ (11680, 'RO ', '318', 'Plesoiu (Nicolae Balcescu)'),
11716
+ (11681, 'RO ', '318', 'Podeni'),
11717
+ (11682, 'RO ', '318', 'Poenari'),
11718
+ (11683, 'RO ', '318', 'Poenita'),
11719
+ (11684, 'RO ', '318', 'Poiana'),
11720
+ (11685, 'RO ', '318', 'Poienari'),
11721
+ (11686, 'RO ', '318', 'Pojogi-Cerna'),
11722
+ (11687, 'RO ', '318', 'Popesti'),
11723
+ (11688, 'RO ', '318', 'Popesti (Fartatesti)'),
11724
+ (11689, 'RO ', '318', 'Popesti (Golesti)'),
11725
+ (11690, 'RO ', '318', 'Popesti (Ladesti)'),
11726
+ (11691, 'RO ', '318', 'Popesti (Maciuca)'),
11727
+ (11692, 'RO ', '318', 'Popesti (Nicolae Balcescu)'),
11728
+ (11693, 'RO ', '318', 'Popesti (Sinesti)'),
11729
+ (11694, 'RO ', '318', 'Popesti (Stoenesti)'),
11730
+ (11695, 'RO ', '318', 'Popesti (Tetoiu)'),
11731
+ (11696, 'RO ', '318', 'Portaresti'),
11732
+ (11697, 'RO ', '318', 'Prajila'),
11733
+ (11698, 'RO ', '318', 'Predesti'),
11734
+ (11699, 'RO ', '318', 'Preotesti'),
11735
+ (11700, 'RO ', '318', 'Priba'),
11736
+ (11701, 'RO ', '318', 'Priloage'),
11737
+ (11702, 'RO ', '318', 'Pripoara'),
11738
+ (11703, 'RO ', '318', 'Pripoare'),
11739
+ (11704, 'RO ', '318', 'Priporu'),
11740
+ (11705, 'RO ', '318', 'Procopoaia'),
11741
+ (11706, 'RO ', '318', 'Prodanesti'),
11742
+ (11707, 'RO ', '318', 'Proieni'),
11743
+ (11708, 'RO ', '318', 'Prundeni'),
11744
+ (11709, 'RO ', '318', 'Racovita'),
11745
+ (11710, 'RO ', '318', 'Racovita (Budesti)'),
11746
+ (11711, 'RO ', '318', 'Racu'),
11747
+ (11712, 'RO ', '318', 'Radacinesti'),
11748
+ (11713, 'RO ', '318', 'Ramesti (Horezu)'),
11749
+ (11714, 'RO ', '318', 'Ramesti (susani)'),
11750
+ (11715, 'RO ', '318', 'Ramnicu Valcea'),
11751
+ (11716, 'RO ', '318', 'Rapa Caramizii'),
11752
+ (11717, 'RO ', '318', 'Rapanesti'),
11753
+ (11718, 'RO ', '318', 'Ratalesti'),
11754
+ (11719, 'RO ', '318', 'Rau Vadului'),
11755
+ (11720, 'RO ', '318', 'Raureni'),
11756
+ (11721, 'RO ', '318', 'Robaia'),
11757
+ (11722, 'RO ', '318', 'Robesti'),
11758
+ (11723, 'RO ', '318', 'Roesti'),
11759
+ (11724, 'RO ', '318', 'Roesti (Pesceana)'),
11760
+ (11725, 'RO ', '318', 'Romanesti'),
11761
+ (11726, 'RO ', '318', 'Romani'),
11762
+ (11727, 'RO ', '318', 'Romanii de Jos'),
11763
+ (11728, 'RO ', '318', 'Romanii de Sus'),
11764
+ (11729, 'RO ', '318', 'Rosia'),
11765
+ (11730, 'RO ', '318', 'Rosiile'),
11766
+ (11731, 'RO ', '318', 'Rosioara'),
11767
+ (11732, 'RO ', '318', 'Rosoveni'),
11768
+ (11733, 'RO ', '318', 'Rotarasti'),
11769
+ (11734, 'RO ', '318', 'Ruda'),
11770
+ (11735, 'RO ', '318', 'Rugetu (Mihaesti)'),
11771
+ (11736, 'RO ', '318', 'Rugetu (Slatioara)'),
11772
+ (11737, 'RO ', '318', 'Runcu'),
11773
+ (11738, 'RO ', '318', 'Rusanesti'),
11774
+ (11739, 'RO ', '318', 'Saioci'),
11775
+ (11740, 'RO ', '318', 'Salatrucel'),
11776
+ (11741, 'RO ', '318', 'Salistea'),
11777
+ (11742, 'RO ', '318', 'Sanbotin'),
11778
+ (11743, 'RO ', '318', 'Sarbi'),
11779
+ (11744, 'RO ', '318', 'Sarsanesti'),
11780
+ (11745, 'RO ', '318', 'Sarulesti'),
11781
+ (11746, 'RO ', '318', 'Sascioara'),
11782
+ (11747, 'RO ', '318', 'Satu Poieni'),
11783
+ (11748, 'RO ', '318', 'Scaiosi'),
11784
+ (11749, 'RO ', '318', 'Scarisoara'),
11785
+ (11750, 'RO ', '318', 'Scaueni'),
11786
+ (11751, 'RO ', '318', 'Schitu'),
11787
+ (11752, 'RO ', '318', 'Scorusu'),
11788
+ (11753, 'RO ', '318', 'Scundu'),
11789
+ (11754, 'RO ', '318', 'Seaca'),
11790
+ (11755, 'RO ', '318', 'Seaca (Salatrucel)'),
11791
+ (11756, 'RO ', '318', 'Seciu'),
11792
+ (11757, 'RO ', '318', 'Serbaneasa'),
11793
+ (11758, 'RO ', '318', 'Serbanesti (Lapusata)'),
11794
+ (11759, 'RO ', '318', 'Serbanesti (Pausesti)'),
11795
+ (11760, 'RO ', '318', 'Serbanesti (Salatrucel)'),
11796
+ (11761, 'RO ', '318', 'Serbanesti (Stefanesti)'),
11797
+ (11762, 'RO ', '318', 'Silea'),
11798
+ (11763, 'RO ', '318', 'Sinesti'),
11799
+ (11764, 'RO ', '318', 'Sirineasa'),
11800
+ (11765, 'RO ', '318', 'Slatioara'),
11801
+ (11766, 'RO ', '318', 'Slatioarele'),
11802
+ (11767, 'RO ', '318', 'Slavitesti'),
11803
+ (11768, 'RO ', '318', 'Snamana'),
11804
+ (11769, 'RO ', '318', 'Solicesti'),
11805
+ (11770, 'RO ', '318', 'Sotani'),
11806
+ (11771, 'RO ', '318', 'Sparleni'),
11807
+ (11772, 'RO ', '318', 'Spinu'),
11808
+ (11773, 'RO ', '318', 'Stanculesti'),
11809
+ (11774, 'RO ', '318', 'Stanesti'),
11810
+ (11775, 'RO ', '318', 'Stanesti (Stoilesti)'),
11811
+ (11776, 'RO ', '318', 'Stanesti-Lunca'),
11812
+ (11777, 'RO ', '318', 'Stanomiru'),
11813
+ (11778, 'RO ', '318', 'Stefanesti'),
11814
+ (11779, 'RO ', '318', 'Stefanesti (Maciuca)'),
11815
+ (11780, 'RO ', '318', 'Stirbesti'),
11816
+ (11781, 'RO ', '318', 'Stoenesti'),
11817
+ (11782, 'RO ', '318', 'Stoenesti (Berislavesti)'),
11818
+ (11783, 'RO ', '318', 'Stoicanesti'),
11819
+ (11784, 'RO ', '318', 'Stoiculesti'),
11820
+ (11785, 'RO ', '318', 'Stoilesti'),
11821
+ (11786, 'RO ', '318', 'Stolniceni'),
11822
+ (11787, 'RO ', '318', 'Strachinesti'),
11823
+ (11788, 'RO ', '318', 'Streminoasa'),
11824
+ (11789, 'RO ', '318', 'Stroesti'),
11825
+ (11790, 'RO ', '318', 'Stuparei'),
11826
+ (11791, 'RO ', '318', 'Sub Deal'),
11827
+ (11792, 'RO ', '318', 'Suiesti'),
11828
+ (11793, 'RO ', '318', 'Surdoiu'),
11829
+ (11794, 'RO ', '318', 'Suricaru'),
11830
+ (11795, 'RO ', '318', 'Surpatele'),
11831
+ (11796, 'RO ', '318', 'Surpati'),
11832
+ (11797, 'RO ', '318', 'Susani'),
11833
+ (11798, 'RO ', '318', 'Suseni'),
11834
+ (11799, 'RO ', '318', 'Suta'),
11835
+ (11800, 'RO ', '318', 'Sutesti'),
11836
+ (11801, 'RO ', '318', 'Tanasesti'),
11837
+ (11802, 'RO ', '318', 'Tanislavi'),
11838
+ (11803, 'RO ', '318', 'Targu Gangulesti'),
11839
+ (11804, 'RO ', '318', 'Tatarani'),
11840
+ (11805, 'RO ', '318', 'Teica'),
11841
+ (11806, 'RO ', '318', 'Teiu'),
11842
+ (11807, 'RO ', '318', 'Teiul'),
11843
+ (11808, 'RO ', '318', 'Teiusu'),
11844
+ (11809, 'RO ', '318', 'Telechesti'),
11845
+ (11810, 'RO ', '318', 'Tepesti'),
11846
+ (11811, 'RO ', '318', 'Tepsenari'),
11847
+ (11812, 'RO ', '318', 'Tetoiu'),
11848
+ (11813, 'RO ', '318', 'Tighina'),
11849
+ (11814, 'RO ', '318', 'Tina'),
11850
+ (11815, 'RO ', '318', 'Tisa'),
11851
+ (11816, 'RO ', '318', 'Titesti'),
11852
+ (11817, 'RO ', '318', 'Titireci'),
11853
+ (11818, 'RO ', '318', 'Tomsani'),
11854
+ (11819, 'RO ', '318', 'Troian'),
11855
+ (11820, 'RO ', '318', 'Trundin'),
11856
+ (11821, 'RO ', '318', 'Tufanii'),
11857
+ (11822, 'RO ', '318', 'Tulei-Campeni'),
11858
+ (11823, 'RO ', '318', 'Turburea'),
11859
+ (11824, 'RO ', '318', 'Turcesti'),
11860
+ (11825, 'RO ', '318', 'Tutulesti'),
11861
+ (11826, 'RO ', '318', 'Tuturu'),
11862
+ (11827, 'RO ', '318', 'Udresti'),
11863
+ (11828, 'RO ', '318', 'Ulmetel'),
11864
+ (11829, 'RO ', '318', 'Ulmetu'),
11865
+ (11830, 'RO ', '318', 'Ursani'),
11866
+ (11831, 'RO ', '318', 'Ursi (Popesti)'),
11867
+ (11832, 'RO ', '318', 'Ursi (Stoilesti)'),
11868
+ (11833, 'RO ', '318', 'Ursoaia'),
11869
+ (11834, 'RO ', '318', 'Urzica'),
11870
+ (11835, 'RO ', '318', 'Usurei'),
11871
+ (11836, 'RO ', '318', 'Vaideeni'),
11872
+ (11837, 'RO ', '318', 'Valea Alunisului'),
11873
+ (11838, 'RO ', '318', 'Valea Babei'),
11874
+ (11839, 'RO ', '318', 'Valea Balceasca'),
11875
+ (11840, 'RO ', '318', 'Valea Caselor (Dragasani)'),
11876
+ (11841, 'RO ', '318', 'Valea Caselor (Popesti)'),
11877
+ (11842, 'RO ', '318', 'Valea Cheii'),
11878
+ (11843, 'RO ', '318', 'Valea Gradistei'),
11879
+ (11844, 'RO ', '318', 'Valea lui Stan'),
11880
+ (11845, 'RO ', '318', 'Valea Lunga'),
11881
+ (11846, 'RO ', '318', 'Valea Macesului'),
11882
+ (11847, 'RO ', '318', 'Valea Mare'),
11883
+ (11848, 'RO ', '318', 'Valea Mare (Babeni)'),
11884
+ (11849, 'RO ', '318', 'Valea Mare (Berbesti)'),
11885
+ (11850, 'RO ', '318', 'Valea Raului'),
11886
+ (11851, 'RO ', '318', 'Valea Scheiului'),
11887
+ (11852, 'RO ', '318', 'Valea Ursului'),
11888
+ (11853, 'RO ', '318', 'Valea Valeni'),
11889
+ (11854, 'RO ', '318', 'Valea Viei'),
11890
+ (11855, 'RO ', '318', 'Valeni (Pausesti)'),
11891
+ (11856, 'RO ', '318', 'Valeni (Zatreni)'),
11892
+ (11857, 'RO ', '318', 'Varateci'),
11893
+ (11858, 'RO ', '318', 'Varatica'),
11894
+ (11859, 'RO ', '318', 'Varatici'),
11895
+ (11860, 'RO ', '318', 'Varleni'),
11896
+ (11861, 'RO ', '318', 'Vatasesti'),
11897
+ (11862, 'RO ', '318', 'Verdea'),
11898
+ (11863, 'RO ', '318', 'Vetelu'),
11899
+ (11864, 'RO ', '318', 'Viisoara'),
11900
+ (11865, 'RO ', '318', 'Vladesti '),
11901
+ (11866, 'RO ', '318', 'Vladuceni'),
11902
+ (11867, 'RO ', '318', 'Vladulesti'),
11903
+ (11868, 'RO ', '318', 'Voicesti'),
11904
+ (11869, 'RO ', '318', 'Voicestii din Vale'),
11905
+ (11870, 'RO ', '318', 'Voiculeasa'),
11906
+ (11871, 'RO ', '318', 'Voineasa'),
11907
+ (11872, 'RO ', '318', 'Voinesita'),
11908
+ (11873, 'RO ', '318', 'Vulpuesti'),
11909
+ (11874, 'RO ', '318', 'Zarneni'),
11910
+ (11875, 'RO ', '318', 'Zarnesti'),
11911
+ (11876, 'RO ', '318', 'Zatreni'),
11912
+ (11877, 'RO ', '318', 'Zatrenii de Sus'),
11913
+ (11878, 'RO ', '318', 'Zavideni'),
11914
+ (11879, 'RO ', '318', 'Zavoieni'),
11915
+ (11880, 'RO ', '318', 'Zgubea'),
11916
+ (11881, 'RO ', '318', 'Zlatarei'),
11917
+ (11882, 'RO ', '318', 'Zmeuratu'),
11918
+ (11883, 'RO ', '317', '1 Decembrie'),
11919
+ (11884, 'RO ', '317', 'Albesti'),
11920
+ (11885, 'RO ', '317', 'Albesti (Delesti)'),
11921
+ (11886, 'RO ', '317', 'Albita'),
11922
+ (11887, 'RO ', '317', 'Alexandru Vlahuta'),
11923
+ (11888, 'RO ', '317', 'Armaseni (Bacesti)'),
11924
+ (11889, 'RO ', '317', 'Armaseni (Bunesti-Averesti)'),
11925
+ (11890, 'RO ', '317', 'Armasoaia'),
11926
+ (11891, 'RO ', '317', 'Arsita'),
11927
+ (11892, 'RO ', '317', 'Arsura'),
11928
+ (11893, 'RO ', '317', 'Averesti'),
11929
+ (11894, 'RO ', '317', 'Avramesti'),
11930
+ (11895, 'RO ', '317', 'Babusa'),
11931
+ (11896, 'RO ', '317', 'Babuta'),
11932
+ (11897, 'RO ', '317', 'Bacani'),
11933
+ (11898, 'RO ', '317', 'Bacaoani'),
11934
+ (11899, 'RO ', '317', 'Bacesti'),
11935
+ (11900, 'RO ', '317', 'Badeana '),
11936
+ (11901, 'RO ', '317', 'Bahnari'),
11937
+ (11902, 'RO ', '317', 'Balesti'),
11938
+ (11903, 'RO ', '317', 'Baltateni'),
11939
+ (11904, 'RO ', '317', 'Baltati'),
11940
+ (11905, 'RO ', '317', 'Balteni'),
11941
+ (11906, 'RO ', '317', 'Balteni-Deal'),
11942
+ (11907, 'RO ', '317', 'Banca'),
11943
+ (11908, 'RO ', '317', 'Bancesti'),
11944
+ (11909, 'RO ', '317', 'Barbosi'),
11945
+ (11910, 'RO ', '317', 'Barlad'),
11946
+ (11911, 'RO ', '317', 'Barlalesti'),
11947
+ (11912, 'RO ', '317', 'Barzesti'),
11948
+ (11913, 'RO ', '317', 'Bejenesti'),
11949
+ (11914, 'RO ', '317', 'Belcesti'),
11950
+ (11915, 'RO ', '317', 'Belzeni'),
11951
+ (11916, 'RO ', '317', 'Bereasa'),
11952
+ (11917, 'RO ', '317', 'Berezeni'),
11953
+ (11918, 'RO ', '317', 'Blagesti'),
11954
+ (11919, 'RO ', '317', 'Blesca'),
11955
+ (11920, 'RO ', '317', 'Bobesti'),
11956
+ (11921, 'RO ', '317', 'Bogdana'),
11957
+ (11922, 'RO ', '317', 'Bogdana-Voloseni'),
11958
+ (11923, 'RO ', '317', 'Bogdanesti'),
11959
+ (11924, 'RO ', '317', 'Bogdanesti (Falciu)'),
11960
+ (11925, 'RO ', '317', 'Bogdanita'),
11961
+ (11926, 'RO ', '317', 'Bogesti'),
11962
+ (11927, 'RO ', '317', 'Bolati'),
11963
+ (11928, 'RO ', '317', 'Borodesti'),
11964
+ (11929, 'RO ', '317', 'Botesti'),
11965
+ (11930, 'RO ', '317', 'Botoi'),
11966
+ (11931, 'RO ', '317', 'Bousori'),
11967
+ (11932, 'RO ', '317', 'Bozia'),
11968
+ (11933, 'RO ', '317', 'Bradesti'),
11969
+ (11934, 'RO ', '317', 'Brahasoaia'),
11970
+ (11935, 'RO ', '317', 'Brodoc'),
11971
+ (11936, 'RO ', '317', 'Broscosesti'),
11972
+ (11937, 'RO ', '317', 'Brosteni'),
11973
+ (11938, 'RO ', '317', 'Buda (Alexandru Vlahuta)'),
11974
+ (11939, 'RO ', '317', 'Buda (Bogdanesti)'),
11975
+ (11940, 'RO ', '317', 'Buda (Osesti)'),
11976
+ (11941, 'RO ', '317', 'Budu Cantemir'),
11977
+ (11942, 'RO ', '317', 'Buhaiesti'),
11978
+ (11943, 'RO ', '317', 'Bulboaca'),
11979
+ (11944, 'RO ', '317', 'Bumbata'),
11980
+ (11945, 'RO ', '317', 'Bunesti'),
11981
+ (11946, 'RO ', '317', 'Bunesti-Averesti'),
11982
+ (11947, 'RO ', '317', 'Bursuci'),
11983
+ (11948, 'RO ', '317', 'Buscata'),
11984
+ (11949, 'RO ', '317', 'Butucaria'),
11985
+ (11950, 'RO ', '317', 'Calimanesti'),
11986
+ (11951, 'RO ', '317', 'Calugareni'),
11987
+ (11952, 'RO ', '317', 'Cantalaresti'),
11988
+ (11953, 'RO ', '317', 'Capotesti'),
11989
+ (11954, 'RO ', '317', 'Capusneni'),
11990
+ (11955, 'RO ', '317', 'Carja'),
11991
+ (11956, 'RO ', '317', 'Carjoani'),
11992
+ (11957, 'RO ', '317', 'Cartibasi'),
11993
+ (11958, 'RO ', '317', 'Cazanesti'),
11994
+ (11959, 'RO ', '317', 'Cepesti'),
11995
+ (11960, 'RO ', '317', 'Cetatuia'),
11996
+ (11961, 'RO ', '317', 'Chersacosu'),
11997
+ (11962, 'RO ', '317', 'Chetresti'),
11998
+ (11963, 'RO ', '317', 'Chetrosu'),
11999
+ (11964, 'RO ', '317', 'Chilieni'),
12000
+ (11965, 'RO ', '317', 'Chircesti'),
12001
+ (11966, 'RO ', '317', 'Chitcani'),
12002
+ (11967, 'RO ', '317', 'Chitoc'),
12003
+ (11968, 'RO ', '317', 'Cioatele'),
12004
+ (11969, 'RO ', '317', 'Ciocani'),
12005
+ (11970, 'RO ', '317', 'Ciofeni'),
12006
+ (11971, 'RO ', '317', 'Ciortolom'),
12007
+ (11972, 'RO ', '317', 'Ciuperca'),
12008
+ (11973, 'RO ', '317', 'Codaesti'),
12009
+ (11974, 'RO ', '317', 'Codreni'),
12010
+ (11975, 'RO ', '317', 'Condrea'),
12011
+ (11976, 'RO ', '317', 'Copaceana'),
12012
+ (11977, 'RO ', '317', 'Corbu'),
12013
+ (11978, 'RO ', '317', 'Corni-Albesti'),
12014
+ (11979, 'RO ', '317', 'Corodesti'),
12015
+ (11980, 'RO ', '317', 'Coroiesti'),
12016
+ (11981, 'RO ', '317', 'Coroiesti (Bogdanita)'),
12017
+ (11982, 'RO ', '317', 'Coroiestii de Sus'),
12018
+ (11983, 'RO ', '317', 'Coroiu'),
12019
+ (11984, 'RO ', '317', 'Cosca'),
12020
+ (11985, 'RO ', '317', 'Cosesti'),
12021
+ (11986, 'RO ', '317', 'Costesti'),
12022
+ (11987, 'RO ', '317', 'Cotic'),
12023
+ (11988, 'RO ', '317', 'Cozmesti'),
12024
+ (11989, 'RO ', '317', 'Crang'),
12025
+ (11990, 'RO ', '317', 'Crangu Nou'),
12026
+ (11991, 'RO ', '317', 'Crasna'),
12027
+ (11992, 'RO ', '317', 'Cretesti'),
12028
+ (11993, 'RO ', '317', 'Cretestii de Sus'),
12029
+ (11994, 'RO ', '317', 'Cristesti'),
12030
+ (11995, 'RO ', '317', 'Crivesti'),
12031
+ (11996, 'RO ', '317', 'Cujba'),
12032
+ (11997, 'RO ', '317', 'Cursesti-Deal'),
12033
+ (11998, 'RO ', '317', 'Cursesti-Vale'),
12034
+ (11999, 'RO ', '317', 'Curteni'),
12035
+ (12000, 'RO ', '317', 'Danesti'),
12036
+ (12001, 'RO ', '317', 'Davidesti'),
12037
+ (12002, 'RO ', '317', 'Dealu Mare'),
12038
+ (12003, 'RO ', '317', 'Dealu Secarii'),
12039
+ (12004, 'RO ', '317', 'Delea'),
12040
+ (12005, 'RO ', '317', 'Deleni'),
12041
+ (12006, 'RO ', '317', 'Deleni (Hoceni)'),
12042
+ (12007, 'RO ', '317', 'Delesti'),
12043
+ (12008, 'RO ', '317', 'Dimitrie Cantemir '),
12044
+ (12009, 'RO ', '317', 'Dinga'),
12045
+ (12010, 'RO ', '317', 'Doagele'),
12046
+ (12011, 'RO ', '317', 'Dobroslovesti'),
12047
+ (12012, 'RO ', '317', 'Docaneasa'),
12048
+ (12013, 'RO ', '317', 'Docani'),
12049
+ (12014, 'RO ', '317', 'Dodesti'),
12050
+ (12015, 'RO ', '317', 'Dragesti'),
12051
+ (12016, 'RO ', '317', 'Dragomiresti'),
12052
+ (12017, 'RO ', '317', 'Dranceni'),
12053
+ (12018, 'RO ', '317', 'Draxeni'),
12054
+ (12019, 'RO ', '317', 'Drujesti'),
12055
+ (12020, 'RO ', '317', 'Duda'),
12056
+ (12021, 'RO ', '317', 'Duda-Epureni'),
12057
+ (12022, 'RO ', '317', 'Dumasca'),
12058
+ (12023, 'RO ', '317', 'Dumbraveni'),
12059
+ (12024, 'RO ', '317', 'Dumesti'),
12060
+ (12025, 'RO ', '317', 'Dumestii Vechi'),
12061
+ (12026, 'RO ', '317', 'Emil Racovita'),
12062
+ (12027, 'RO ', '317', 'Epureni'),
12063
+ (12028, 'RO ', '317', 'Epureni (Duda-Epureni)'),
12064
+ (12029, 'RO ', '317', 'Falciu'),
12065
+ (12030, 'RO ', '317', 'Fantana Blanarului'),
12066
+ (12031, 'RO ', '317', 'Fantanele'),
12067
+ (12032, 'RO ', '317', 'Fastaci'),
12068
+ (12033, 'RO ', '317', 'Fedesti'),
12069
+ (12034, 'RO ', '317', 'Feresti'),
12070
+ (12035, 'RO ', '317', 'Floreni'),
12071
+ (12036, 'RO ', '317', 'Floresti'),
12072
+ (12037, 'RO ', '317', 'Focsa'),
12073
+ (12038, 'RO ', '317', 'Focseasca'),
12074
+ (12039, 'RO ', '317', 'Frasinu'),
12075
+ (12040, 'RO ', '317', 'Fruntiseni'),
12076
+ (12041, 'RO ', '317', 'Fulgu'),
12077
+ (12042, 'RO ', '317', 'Fundatura (Arsura)'),
12078
+ (12043, 'RO ', '317', 'Fundatura (Delesti)'),
12079
+ (12044, 'RO ', '317', 'Fundatura Mare'),
12080
+ (12045, 'RO ', '317', 'Fundatura Mica'),
12081
+ (12046, 'RO ', '317', 'Fundu Vaii (Lipovat)'),
12082
+ (12047, 'RO ', '317', 'Fundu Vaii (Poienesti)'),
12083
+ (12048, 'RO ', '317', 'Gagesti'),
12084
+ (12049, 'RO ', '317', 'Galtesti'),
12085
+ (12050, 'RO ', '317', 'Ganesti'),
12086
+ (12051, 'RO ', '317', 'Gara Banca'),
12087
+ (12052, 'RO ', '317', 'Gara Docaneasa'),
12088
+ (12053, 'RO ', '317', 'Gara Rosiesti');
12089
+ INSERT INTO `directory_country_region_city` (`city_id`, `country_id`, `region_id`, `cityname`) VALUES
12090
+ (12054, 'RO ', '317', 'Gara Talasman'),
12091
+ (12055, 'RO ', '317', 'Garceni'),
12092
+ (12056, 'RO ', '317', 'Gardesti'),
12093
+ (12057, 'RO ', '317', 'Gavanu'),
12094
+ (12058, 'RO ', '317', 'Ghergheleu'),
12095
+ (12059, 'RO ', '317', 'Gherghesti'),
12096
+ (12060, 'RO ', '317', 'Ghermanesti (Banca)'),
12097
+ (12061, 'RO ', '317', 'Ghermanesti (Dranceni)'),
12098
+ (12062, 'RO ', '317', 'Ghicani'),
12099
+ (12063, 'RO ', '317', 'Ghireasca'),
12100
+ (12064, 'RO ', '317', 'Giurcani'),
12101
+ (12065, 'RO ', '317', 'Giurgesti'),
12102
+ (12066, 'RO ', '317', 'Glodeni'),
12103
+ (12067, 'RO ', '317', 'Grajdeni'),
12104
+ (12068, 'RO ', '317', 'Grivita'),
12105
+ (12069, 'RO ', '317', 'Grumezoaia'),
12106
+ (12070, 'RO ', '317', 'Gugesti'),
12107
+ (12071, 'RO ', '317', 'Gura Albesti'),
12108
+ (12072, 'RO ', '317', 'Gura Vaii'),
12109
+ (12073, 'RO ', '317', 'Gusitei'),
12110
+ (12074, 'RO ', '317', 'Halaresti'),
12111
+ (12075, 'RO ', '317', 'Halta Dodesti'),
12112
+ (12076, 'RO ', '317', 'Harsova'),
12113
+ (12077, 'RO ', '317', 'Harsoveni'),
12114
+ (12078, 'RO ', '317', 'Hoceni'),
12115
+ (12079, 'RO ', '317', 'Horga'),
12116
+ (12080, 'RO ', '317', 'Horoiata'),
12117
+ (12081, 'RO ', '317', 'Hreasca'),
12118
+ (12082, 'RO ', '317', 'Huc'),
12119
+ (12083, 'RO ', '317', 'Hupca'),
12120
+ (12084, 'RO ', '317', 'Hurdugi'),
12121
+ (12085, 'RO ', '317', 'Husi'),
12122
+ (12086, 'RO ', '317', 'Iana'),
12123
+ (12087, 'RO ', '317', 'Iaz'),
12124
+ (12088, 'RO ', '317', 'Ibanesti'),
12125
+ (12089, 'RO ', '317', 'Idrici'),
12126
+ (12090, 'RO ', '317', 'Iezer'),
12127
+ (12091, 'RO ', '317', 'Igesti'),
12128
+ (12092, 'RO ', '317', 'Ivanesti'),
12129
+ (12093, 'RO ', '317', 'Ivanesti (Padureni)'),
12130
+ (12094, 'RO ', '317', 'Ivesti'),
12131
+ (12095, 'RO ', '317', 'Lacu Babei'),
12132
+ (12096, 'RO ', '317', 'Lalesti'),
12133
+ (12097, 'RO ', '317', 'Latesti'),
12134
+ (12098, 'RO ', '317', 'Laza'),
12135
+ (12099, 'RO ', '317', 'Leosti (Padureni)'),
12136
+ (12100, 'RO ', '317', 'Leosti (Tatarani)'),
12137
+ (12101, 'RO ', '317', 'Lipovat'),
12138
+ (12102, 'RO ', '317', 'Lunca Banului'),
12139
+ (12103, 'RO ', '317', 'Lunca Veche'),
12140
+ (12104, 'RO ', '317', 'Lupesti'),
12141
+ (12105, 'RO ', '317', 'Macresti (Rebricea)'),
12142
+ (12106, 'RO ', '317', 'Macresti (Zapodeni)'),
12143
+ (12107, 'RO ', '317', 'Malusteni'),
12144
+ (12108, 'RO ', '317', 'Manastirea (Delesti)'),
12145
+ (12109, 'RO ', '317', 'Manastirea (Malusteni)'),
12146
+ (12110, 'RO ', '317', 'Manjesti'),
12147
+ (12111, 'RO ', '317', 'Mantu'),
12148
+ (12112, 'RO ', '317', 'Manzatesti'),
12149
+ (12113, 'RO ', '317', 'Manzati'),
12150
+ (12114, 'RO ', '317', 'Maraseni'),
12151
+ (12115, 'RO ', '317', 'Marasesti'),
12152
+ (12116, 'RO ', '317', 'Mascurei'),
12153
+ (12117, 'RO ', '317', 'Miclesti'),
12154
+ (12118, 'RO ', '317', 'Miclesti (Banca)'),
12155
+ (12119, 'RO ', '317', 'Mireni'),
12156
+ (12120, 'RO ', '317', 'Mitoc'),
12157
+ (12121, 'RO ', '317', 'Moara Domneasca'),
12158
+ (12122, 'RO ', '317', 'Moara Grecilor'),
12159
+ (12123, 'RO ', '317', 'Morareni'),
12160
+ (12124, 'RO ', '317', 'Moreni'),
12161
+ (12125, 'RO ', '317', 'Movileni'),
12162
+ (12126, 'RO ', '317', 'Muntenii de Jos'),
12163
+ (12127, 'RO ', '317', 'Muntenii de Sus'),
12164
+ (12128, 'RO ', '317', 'Murgeni'),
12165
+ (12129, 'RO ', '317', 'Musata'),
12166
+ (12130, 'RO ', '317', 'Negresti'),
12167
+ (12131, 'RO ', '317', 'Obarseni (Vinderei)'),
12168
+ (12132, 'RO ', '317', 'Obarseni (Voinesti)'),
12169
+ (12133, 'RO ', '317', 'Obarsenii Lingurari'),
12170
+ (12134, 'RO ', '317', 'Odaia Bogdana'),
12171
+ (12135, 'RO ', '317', 'Odaia Bursucani'),
12172
+ (12136, 'RO ', '317', 'Oltenesti'),
12173
+ (12137, 'RO ', '317', 'Oprisita'),
12174
+ (12138, 'RO ', '317', 'Osesti'),
12175
+ (12139, 'RO ', '317', 'Oteleni'),
12176
+ (12140, 'RO ', '317', 'Otetoaia'),
12177
+ (12141, 'RO ', '317', 'Padureni'),
12178
+ (12142, 'RO ', '317', 'Pahna'),
12179
+ (12143, 'RO ', '317', 'Pahnesti'),
12180
+ (12144, 'RO ', '317', 'Parpanita'),
12181
+ (12145, 'RO ', '317', 'Peicani'),
12182
+ (12146, 'RO ', '317', 'Perieni'),
12183
+ (12147, 'RO ', '317', 'Plopi'),
12184
+ (12148, 'RO ', '317', 'Plopoasa'),
12185
+ (12149, 'RO ', '317', 'Plotonesti'),
12186
+ (12150, 'RO ', '317', 'Pochidia'),
12187
+ (12151, 'RO ', '317', 'Podu Petris'),
12188
+ (12152, 'RO ', '317', 'Pogana'),
12189
+ (12153, 'RO ', '317', 'Poganesti'),
12190
+ (12154, 'RO ', '317', 'Pogonesti'),
12191
+ (12155, 'RO ', '317', 'Poiana lui Alexa'),
12192
+ (12156, 'RO ', '317', 'Poiana Pietrei'),
12193
+ (12157, 'RO ', '317', 'Poienesti'),
12194
+ (12158, 'RO ', '317', 'Poienesti-Deal'),
12195
+ (12159, 'RO ', '317', 'Polocin'),
12196
+ (12160, 'RO ', '317', 'Popeni (Gagesti)'),
12197
+ (12161, 'RO ', '317', 'Popeni (Zorleni)'),
12198
+ (12162, 'RO ', '317', 'Popesti (Dragomiresti)'),
12199
+ (12163, 'RO ', '317', 'Popesti (Miclesti)'),
12200
+ (12164, 'RO ', '317', 'Portari'),
12201
+ (12165, 'RO ', '317', 'Posta Elan'),
12202
+ (12166, 'RO ', '317', 'Pribesti'),
12203
+ (12167, 'RO ', '317', 'Protopopesti'),
12204
+ (12168, 'RO ', '317', 'Puiesti'),
12205
+ (12169, 'RO ', '317', 'Pungesti'),
12206
+ (12170, 'RO ', '317', 'Puntiseni'),
12207
+ (12171, 'RO ', '317', 'Puscasi'),
12208
+ (12172, 'RO ', '317', 'Racovita'),
12209
+ (12173, 'RO ', '317', 'Radaesti'),
12210
+ (12174, 'RO ', '317', 'Radeni'),
12211
+ (12175, 'RO ', '317', 'Radesti'),
12212
+ (12176, 'RO ', '317', 'Rafaila'),
12213
+ (12177, 'RO ', '317', 'Raiu'),
12214
+ (12178, 'RO ', '317', 'Ranceni'),
12215
+ (12179, 'RO ', '317', 'Ranzesti'),
12216
+ (12180, 'RO ', '317', 'Rascani (suletea)'),
12217
+ (12181, 'RO ', '317', 'Rasesti'),
12218
+ (12182, 'RO ', '317', 'Rasnita'),
12219
+ (12183, 'RO ', '317', 'Ratesu Cuzei'),
12220
+ (12184, 'RO ', '317', 'Rebricea'),
12221
+ (12185, 'RO ', '317', 'Rediu (Vaslui)'),
12222
+ (12186, 'RO ', '317', 'Rediu Galian'),
12223
+ (12187, 'RO ', '317', 'Rosiesti'),
12224
+ (12188, 'RO ', '317', 'Rosiori'),
12225
+ (12189, 'RO ', '317', 'Rusca'),
12226
+ (12190, 'RO ', '317', 'Salceni'),
12227
+ (12191, 'RO ', '317', 'Salcioara'),
12228
+ (12192, 'RO ', '317', 'Sarateni'),
12229
+ (12193, 'RO ', '317', 'Sarbi'),
12230
+ (12194, 'RO ', '317', 'Sasova'),
12231
+ (12195, 'RO ', '317', 'Satu Nou (Banca)'),
12232
+ (12196, 'RO ', '317', 'Satu Nou (Berezeni)'),
12233
+ (12197, 'RO ', '317', 'Satu Nou (Cretesti)'),
12234
+ (12198, 'RO ', '317', 'Satu Nou (Muntenii de Sus)'),
12235
+ (12199, 'RO ', '317', 'Satu Nou (Pochidia)'),
12236
+ (12200, 'RO ', '317', 'Satu Nou (Solesti)'),
12237
+ (12201, 'RO ', '317', 'Sauca'),
12238
+ (12202, 'RO ', '317', 'Schineni'),
12239
+ (12203, 'RO ', '317', 'Schinetea'),
12240
+ (12204, 'RO ', '317', 'Secuia'),
12241
+ (12205, 'RO ', '317', 'Serbotesti'),
12242
+ (12206, 'RO ', '317', 'Silistea (Iana)'),
12243
+ (12207, 'RO ', '317', 'Silistea (Pungesti)'),
12244
+ (12208, 'RO ', '317', 'Silistea (Todiresti)'),
12245
+ (12209, 'RO ', '317', 'Simila'),
12246
+ (12210, 'RO ', '317', 'Siscani'),
12247
+ (12211, 'RO ', '317', 'Sofronesti'),
12248
+ (12212, 'RO ', '317', 'Solesti'),
12249
+ (12213, 'RO ', '317', 'Soparleni'),
12250
+ (12214, 'RO ', '317', 'Stanilesti'),
12251
+ (12215, 'RO ', '317', 'Stefan cel Mare'),
12252
+ (12216, 'RO ', '317', 'Stioborani'),
12253
+ (12217, 'RO ', '317', 'Stoisesti'),
12254
+ (12218, 'RO ', '317', 'Stramtura-Mitoc'),
12255
+ (12219, 'RO ', '317', 'Stuhulet'),
12256
+ (12220, 'RO ', '317', 'Suletea'),
12257
+ (12221, 'RO ', '317', 'Suseni'),
12258
+ (12222, 'RO ', '317', 'Tabalaiesti'),
12259
+ (12223, 'RO ', '317', 'Tacuta'),
12260
+ (12224, 'RO ', '317', 'Tanacu'),
12261
+ (12225, 'RO ', '317', 'Tarzii'),
12262
+ (12226, 'RO ', '317', 'Tatarani'),
12263
+ (12227, 'RO ', '317', 'Tatomiresti'),
12264
+ (12228, 'RO ', '317', 'Teisoru'),
12265
+ (12229, 'RO ', '317', 'Telejna'),
12266
+ (12230, 'RO ', '317', 'Tibanestii Buhlii'),
12267
+ (12231, 'RO ', '317', 'Tifu'),
12268
+ (12232, 'RO ', '317', 'Todiresti'),
12269
+ (12233, 'RO ', '317', 'Tomesti'),
12270
+ (12234, 'RO ', '317', 'Tomsa'),
12271
+ (12235, 'RO ', '317', 'Toporasti'),
12272
+ (12236, 'RO ', '317', 'Trestiana'),
12273
+ (12237, 'RO ', '317', 'Trohan'),
12274
+ (12238, 'RO ', '317', 'Tufestii de Jos'),
12275
+ (12239, 'RO ', '317', 'Tupilati'),
12276
+ (12240, 'RO ', '317', 'Tutcani'),
12277
+ (12241, 'RO ', '317', 'Tutova'),
12278
+ (12242, 'RO ', '317', 'Ulea'),
12279
+ (12243, 'RO ', '317', 'Untesti'),
12280
+ (12244, 'RO ', '317', 'Urdesti'),
12281
+ (12245, 'RO ', '317', 'Urlati'),
12282
+ (12246, 'RO ', '317', 'Vadurile'),
12283
+ (12247, 'RO ', '317', 'Valea Grecului'),
12284
+ (12248, 'RO ', '317', 'Valea lui Darie'),
12285
+ (12249, 'RO ', '317', 'Valea Lunga'),
12286
+ (12250, 'RO ', '317', 'Valea Mare (Dumesti)'),
12287
+ (12251, 'RO ', '317', 'Valea Mare (Ivanesti)'),
12288
+ (12252, 'RO ', '317', 'Valea Mare (Negresti)'),
12289
+ (12253, 'RO ', '317', 'Valea Oanei'),
12290
+ (12254, 'RO ', '317', 'Valea Popii'),
12291
+ (12255, 'RO ', '317', 'Valea Silistei'),
12292
+ (12256, 'RO ', '317', 'Valea Targului'),
12293
+ (12257, 'RO ', '317', 'Valeni'),
12294
+ (12258, 'RO ', '317', 'Valeni (Padureni)'),
12295
+ (12259, 'RO ', '317', 'Valeni (Viisoara)'),
12296
+ (12260, 'RO ', '317', 'Vaslui'),
12297
+ (12261, 'RO ', '317', 'Verdes'),
12298
+ (12262, 'RO ', '317', 'Vetrisoaia'),
12299
+ (12263, 'RO ', '317', 'Viisoara'),
12300
+ (12264, 'RO ', '317', 'Viisoara (Vaslui)'),
12301
+ (12265, 'RO ', '317', 'Viltotesti'),
12302
+ (12266, 'RO ', '317', 'Vinderei'),
12303
+ (12267, 'RO ', '317', 'Vinetesti'),
12304
+ (12268, 'RO ', '317', 'Vizureni'),
12305
+ (12269, 'RO ', '317', 'Vladesti'),
12306
+ (12270, 'RO ', '317', 'Vladia'),
12307
+ (12271, 'RO ', '317', 'Voinesti'),
12308
+ (12272, 'RO ', '317', 'Vovriesti'),
12309
+ (12273, 'RO ', '317', 'Vulpaseni'),
12310
+ (12274, 'RO ', '317', 'Vulturesti'),
12311
+ (12275, 'RO ', '317', 'Vutcani'),
12312
+ (12276, 'RO ', '317', 'Zapodeni'),
12313
+ (12277, 'RO ', '317', 'Zizinca'),
12314
+ (12278, 'RO ', '317', 'Zorleni'),
12315
+ (12279, 'RO ', '319', 'Adjud'),
12316
+ (12280, 'RO ', '319', 'Adjudu Vechi'),
12317
+ (12281, 'RO ', '319', 'Alexandru Vlahuta'),
12318
+ (12282, 'RO ', '319', 'Andreiasu de Jos'),
12319
+ (12283, 'RO ', '319', 'Andreiasu de Sus'),
12320
+ (12284, 'RO ', '319', 'Anghelesti'),
12321
+ (12285, 'RO ', '319', 'Argea'),
12322
+ (12286, 'RO ', '319', 'Armeni'),
12323
+ (12287, 'RO ', '319', 'Arsita'),
12324
+ (12288, 'RO ', '319', 'Arva'),
12325
+ (12289, 'RO ', '319', 'Bahnele'),
12326
+ (12290, 'RO ', '319', 'Balanesti'),
12327
+ (12291, 'RO ', '319', 'Balesti'),
12328
+ (12292, 'RO ', '319', 'Balta Ratei'),
12329
+ (12293, 'RO ', '319', 'Barsesti'),
12330
+ (12294, 'RO ', '319', 'Batinesti'),
12331
+ (12295, 'RO ', '319', 'Beciu'),
12332
+ (12296, 'RO ', '319', 'Belciugele'),
12333
+ (12297, 'RO ', '319', 'Bicestii de Jos'),
12334
+ (12298, 'RO ', '319', 'Bicestii de Sus'),
12335
+ (12299, 'RO ', '319', 'Bichesti'),
12336
+ (12300, 'RO ', '319', 'Biliesti'),
12337
+ (12301, 'RO ', '319', 'Bizighesti'),
12338
+ (12302, 'RO ', '319', 'Blidari (Carligele)'),
12339
+ (12303, 'RO ', '319', 'Blidari (Dumitresti)'),
12340
+ (12304, 'RO ', '319', 'Bodesti'),
12341
+ (12305, 'RO ', '319', 'Boghesti'),
12342
+ (12306, 'RO ', '319', 'Boghestii de Sus'),
12343
+ (12307, 'RO ', '319', 'Bogza'),
12344
+ (12308, 'RO ', '319', 'Bolotesti'),
12345
+ (12309, 'RO ', '319', 'Bontesti'),
12346
+ (12310, 'RO ', '319', 'Bordeasca Noua'),
12347
+ (12311, 'RO ', '319', 'Bordeasca Veche'),
12348
+ (12312, 'RO ', '319', 'Bordesti'),
12349
+ (12313, 'RO ', '319', 'Bordestii de Jos'),
12350
+ (12314, 'RO ', '319', 'Botarlau'),
12351
+ (12315, 'RO ', '319', 'Bradacesti'),
12352
+ (12316, 'RO ', '319', 'Bradetu'),
12353
+ (12317, 'RO ', '319', 'Brosteni'),
12354
+ (12318, 'RO ', '319', 'Buda'),
12355
+ (12319, 'RO ', '319', 'Budesti'),
12356
+ (12320, 'RO ', '319', 'Burca'),
12357
+ (12321, 'RO ', '319', 'Burcioaia'),
12358
+ (12322, 'RO ', '319', 'Caiata'),
12359
+ (12323, 'RO ', '319', 'Calienii Noi'),
12360
+ (12324, 'RO ', '319', 'Calienii Vechi'),
12361
+ (12325, 'RO ', '319', 'Calimaneasa'),
12362
+ (12326, 'RO ', '319', 'Calimanesti'),
12363
+ (12327, 'RO ', '319', 'Campineanca'),
12364
+ (12328, 'RO ', '319', 'Campuri'),
12365
+ (12329, 'RO ', '319', 'Candesti'),
12366
+ (12330, 'RO ', '319', 'Carligele'),
12367
+ (12331, 'RO ', '319', 'Carsochesti-Corabita'),
12368
+ (12332, 'RO ', '319', 'Catauti'),
12369
+ (12333, 'RO ', '319', 'Ceardac'),
12370
+ (12334, 'RO ', '319', 'Cerbu'),
12371
+ (12335, 'RO ', '319', 'Chiojdeni'),
12372
+ (12336, 'RO ', '319', 'Chiricani'),
12373
+ (12337, 'RO ', '319', 'Chitcani'),
12374
+ (12338, 'RO ', '319', 'Ciolanesti'),
12375
+ (12339, 'RO ', '319', 'Ciorani'),
12376
+ (12340, 'RO ', '319', 'Ciorasti'),
12377
+ (12341, 'RO ', '319', 'Ciuslea'),
12378
+ (12342, 'RO ', '319', 'Clipicesti'),
12379
+ (12343, 'RO ', '319', 'Cocosari'),
12380
+ (12344, 'RO ', '319', 'Codresti'),
12381
+ (12345, 'RO ', '319', 'Colacu'),
12382
+ (12346, 'RO ', '319', 'Copacesti'),
12383
+ (12347, 'RO ', '319', 'Corbita'),
12384
+ (12348, 'RO ', '319', 'Cornetu'),
12385
+ (12349, 'RO ', '319', 'Coroteni'),
12386
+ (12350, 'RO ', '319', 'Costisa (Homocea)'),
12387
+ (12351, 'RO ', '319', 'Costisa (Tanasoaia)'),
12388
+ (12352, 'RO ', '319', 'Costisa de Sus'),
12389
+ (12353, 'RO ', '319', 'Cotesti'),
12390
+ (12354, 'RO ', '319', 'Covrag'),
12391
+ (12355, 'RO ', '319', 'Coza'),
12392
+ (12356, 'RO ', '319', 'Crucea de Jos'),
12393
+ (12357, 'RO ', '319', 'Crucea de Sus'),
12394
+ (12358, 'RO ', '319', 'Dalhauti'),
12395
+ (12359, 'RO ', '319', 'Dealu Cucului'),
12396
+ (12360, 'RO ', '319', 'Dealu Lung'),
12397
+ (12361, 'RO ', '319', 'Dealu Sarii'),
12398
+ (12362, 'RO ', '319', 'Diocheti-Rediu'),
12399
+ (12363, 'RO ', '319', 'Doaga'),
12400
+ (12364, 'RO ', '319', 'Domnesti-Sat'),
12401
+ (12365, 'RO ', '319', 'Domnesti-Targ'),
12402
+ (12366, 'RO ', '319', 'Dragosloveni (Dumbraveni)'),
12403
+ (12367, 'RO ', '319', 'Dragosloveni (Soveja)'),
12404
+ (12368, 'RO ', '319', 'Dumbrava (Panciu)'),
12405
+ (12369, 'RO ', '319', 'Dumbrava (Poiana Cristei)'),
12406
+ (12370, 'RO ', '319', 'Dumbraveni'),
12407
+ (12371, 'RO ', '319', 'Dumitresti'),
12408
+ (12372, 'RO ', '319', 'Dumitrestii de Sus'),
12409
+ (12373, 'RO ', '319', 'Dumitrestii-Fata'),
12410
+ (12374, 'RO ', '319', 'Dupa Magura'),
12411
+ (12375, 'RO ', '319', 'Fagetu'),
12412
+ (12376, 'RO ', '319', 'Faraoanele'),
12413
+ (12377, 'RO ', '319', 'Farcas'),
12414
+ (12378, 'RO ', '319', 'Faurei'),
12415
+ (12379, 'RO ', '319', 'Feldioara'),
12416
+ (12380, 'RO ', '319', 'Fetesti'),
12417
+ (12381, 'RO ', '319', 'Fetig'),
12418
+ (12382, 'RO ', '319', 'Fitionesti'),
12419
+ (12383, 'RO ', '319', 'Focsani'),
12420
+ (12384, 'RO ', '319', 'Frecatei'),
12421
+ (12385, 'RO ', '319', 'Gagesti'),
12422
+ (12386, 'RO ', '319', 'Galbeni'),
12423
+ (12387, 'RO ', '319', 'Galoiesti'),
12424
+ (12388, 'RO ', '319', 'Garoafa'),
12425
+ (12389, 'RO ', '319', 'Ghebari'),
12426
+ (12390, 'RO ', '319', 'Ghimicesti'),
12427
+ (12391, 'RO ', '319', 'Gogoiu'),
12428
+ (12392, 'RO ', '319', 'Golesti'),
12429
+ (12393, 'RO ', '319', 'Golestii de Sus'),
12430
+ (12394, 'RO ', '319', 'Gologanu'),
12431
+ (12395, 'RO ', '319', 'Gresu'),
12432
+ (12396, 'RO ', '319', 'Groapa Tufei'),
12433
+ (12397, 'RO ', '319', 'Gugesti'),
12434
+ (12398, 'RO ', '319', 'Gura Calitei'),
12435
+ (12399, 'RO ', '319', 'Gura Vaii'),
12436
+ (12400, 'RO ', '319', 'Hangulesti'),
12437
+ (12401, 'RO ', '319', 'Haret'),
12438
+ (12402, 'RO ', '319', 'Haulisca'),
12439
+ (12403, 'RO ', '319', 'Holbanesti'),
12440
+ (12404, 'RO ', '319', 'Homocea'),
12441
+ (12405, 'RO ', '319', 'Hotaru'),
12442
+ (12406, 'RO ', '319', 'Iresti'),
12443
+ (12407, 'RO ', '319', 'Iugani'),
12444
+ (12408, 'RO ', '319', 'Ivancesti'),
12445
+ (12409, 'RO ', '319', 'Izvoarele'),
12446
+ (12410, 'RO ', '319', 'Jaristea'),
12447
+ (12411, 'RO ', '319', 'Jgheaburi'),
12448
+ (12412, 'RO ', '319', 'Jiliste'),
12449
+ (12413, 'RO ', '319', 'Jitia'),
12450
+ (12414, 'RO ', '319', 'Jitia de Jos'),
12451
+ (12415, 'RO ', '319', 'Jorasti'),
12452
+ (12416, 'RO ', '319', 'Lacu lui Baban'),
12453
+ (12417, 'RO ', '319', 'Lamotesti'),
12454
+ (12418, 'RO ', '319', 'Largaseni'),
12455
+ (12419, 'RO ', '319', 'Lastuni'),
12456
+ (12420, 'RO ', '319', 'Lepsa'),
12457
+ (12421, 'RO ', '319', 'Lespezi'),
12458
+ (12422, 'RO ', '319', 'Liesti'),
12459
+ (12423, 'RO ', '319', 'Livada'),
12460
+ (12424, 'RO ', '319', 'Livezile'),
12461
+ (12425, 'RO ', '319', 'Lojnita'),
12462
+ (12426, 'RO ', '319', 'Luncile'),
12463
+ (12427, 'RO ', '319', 'Lupoaia'),
12464
+ (12428, 'RO ', '319', 'Magura'),
12465
+ (12429, 'RO ', '319', 'Mahriu'),
12466
+ (12430, 'RO ', '319', 'Maicanesti'),
12467
+ (12431, 'RO ', '319', 'Maluri'),
12468
+ (12432, 'RO ', '319', 'Manastioara'),
12469
+ (12433, 'RO ', '319', 'Maracini'),
12470
+ (12434, 'RO ', '319', 'Marasesti'),
12471
+ (12435, 'RO ', '319', 'Marasti '),
12472
+ (12436, 'RO ', '319', 'Martinesti'),
12473
+ (12437, 'RO ', '319', 'Matacina'),
12474
+ (12438, 'RO ', '319', 'Mera'),
12475
+ (12439, 'RO ', '319', 'Mesteacanu'),
12476
+ (12440, 'RO ', '319', 'Mihalceni'),
12477
+ (12441, 'RO ', '319', 'Milcovel'),
12478
+ (12442, 'RO ', '319', 'Milcovul'),
12479
+ (12443, 'RO ', '319', 'Mircestii Noi'),
12480
+ (12444, 'RO ', '319', 'Mircestii Vechi'),
12481
+ (12445, 'RO ', '319', 'Modruzeni'),
12482
+ (12446, 'RO ', '319', 'Moraresti'),
12483
+ (12447, 'RO ', '319', 'Motnau'),
12484
+ (12448, 'RO ', '319', 'Movilita'),
12485
+ (12449, 'RO ', '319', 'Muncelu'),
12486
+ (12450, 'RO ', '319', 'Nanesti'),
12487
+ (12451, 'RO ', '319', 'Naruja'),
12488
+ (12452, 'RO ', '319', 'Neculele'),
12489
+ (12453, 'RO ', '319', 'Negrilesti'),
12490
+ (12454, 'RO ', '319', 'Neicu'),
12491
+ (12455, 'RO ', '319', 'Nereju'),
12492
+ (12456, 'RO ', '319', 'Nereju Mic'),
12493
+ (12457, 'RO ', '319', 'Nistoresti'),
12494
+ (12458, 'RO ', '319', 'Obrejita'),
12495
+ (12459, 'RO ', '319', 'Ochesesti'),
12496
+ (12460, 'RO ', '319', 'Odobasca'),
12497
+ (12461, 'RO ', '319', 'Odobesti'),
12498
+ (12462, 'RO ', '319', 'Olareni'),
12499
+ (12463, 'RO ', '319', 'Olesesti'),
12500
+ (12464, 'RO ', '319', 'Olteni'),
12501
+ (12465, 'RO ', '319', 'Oreavu'),
12502
+ (12466, 'RO ', '319', 'Padureni (Jaristea)'),
12503
+ (12467, 'RO ', '319', 'Padureni (Marasesti)'),
12504
+ (12468, 'RO ', '319', 'Padureni (Tamboesti)'),
12505
+ (12469, 'RO ', '319', 'Paltin'),
12506
+ (12470, 'RO ', '319', 'Panciu'),
12507
+ (12471, 'RO ', '319', 'Patrascani'),
12508
+ (12472, 'RO ', '319', 'Paulesti'),
12509
+ (12473, 'RO ', '319', 'Paunesti'),
12510
+ (12474, 'RO ', '319', 'Pavalari'),
12511
+ (12475, 'RO ', '319', 'Petreanu'),
12512
+ (12476, 'RO ', '319', 'Petresti'),
12513
+ (12477, 'RO ', '319', 'Pietroasa (Bolotesti)'),
12514
+ (12478, 'RO ', '319', 'Pietroasa (Campineanca)'),
12515
+ (12479, 'RO ', '319', 'Pietroasa (Tamboesti)'),
12516
+ (12480, 'RO ', '319', 'Pietroasa (Vartescoiu)'),
12517
+ (12481, 'RO ', '319', 'Piscu Radului'),
12518
+ (12482, 'RO ', '319', 'Piscu Reghiului'),
12519
+ (12483, 'RO ', '319', 'Pitulusa'),
12520
+ (12484, 'RO ', '319', 'Placinteni'),
12521
+ (12485, 'RO ', '319', 'Plesesti'),
12522
+ (12486, 'RO ', '319', 'Plopu'),
12523
+ (12487, 'RO ', '319', 'Ploscuteni'),
12524
+ (12488, 'RO ', '319', 'Plostina'),
12525
+ (12489, 'RO ', '319', 'Podu Lacului'),
12526
+ (12490, 'RO ', '319', 'Podu Narujei'),
12527
+ (12491, 'RO ', '319', 'Podu Schiopului'),
12528
+ (12492, 'RO ', '319', 'Podu Stoica'),
12529
+ (12493, 'RO ', '319', 'Poduri'),
12530
+ (12494, 'RO ', '319', 'Podurile'),
12531
+ (12495, 'RO ', '319', 'Poenile'),
12532
+ (12496, 'RO ', '319', 'Poiana'),
12533
+ (12497, 'RO ', '319', 'Poiana Cristei'),
12534
+ (12498, 'RO ', '319', 'Poiana Stoichii'),
12535
+ (12499, 'RO ', '319', 'Poienita'),
12536
+ (12500, 'RO ', '319', 'Popesti'),
12537
+ (12501, 'RO ', '319', 'Prahuda'),
12538
+ (12502, 'RO ', '319', 'Precistanu'),
12539
+ (12503, 'RO ', '319', 'Prisaca'),
12540
+ (12504, 'RO ', '319', 'Prisecani'),
12541
+ (12505, 'RO ', '319', 'Pufesti'),
12542
+ (12506, 'RO ', '319', 'Putna'),
12543
+ (12507, 'RO ', '319', 'Rachitasu'),
12544
+ (12508, 'RO ', '319', 'Rachitosu'),
12545
+ (12509, 'RO ', '319', 'Racoasa'),
12546
+ (12510, 'RO ', '319', 'Radacinesti'),
12547
+ (12511, 'RO ', '319', 'Radulesti'),
12548
+ (12512, 'RO ', '319', 'Raiuti'),
12549
+ (12513, 'RO ', '319', 'Ramniceanca'),
12550
+ (12514, 'RO ', '319', 'Ramniceni'),
12551
+ (12515, 'RO ', '319', 'Rastoaca'),
12552
+ (12516, 'RO ', '319', 'Rebegari'),
12553
+ (12517, 'RO ', '319', 'Reghiu'),
12554
+ (12518, 'RO ', '319', 'Repedea'),
12555
+ (12519, 'RO ', '319', 'Romanesti'),
12556
+ (12520, 'RO ', '319', 'Roscari'),
12557
+ (12521, 'RO ', '319', 'Rosioara'),
12558
+ (12522, 'RO ', '319', 'Rotilestii Mari'),
12559
+ (12523, 'RO ', '319', 'Rotilestii Mici'),
12560
+ (12524, 'RO ', '319', 'Rucareni '),
12561
+ (12525, 'RO ', '319', 'Ruget'),
12562
+ (12526, 'RO ', '319', 'Ruginesti'),
12563
+ (12527, 'RO ', '319', 'Sahastru'),
12564
+ (12528, 'RO ', '319', 'Salcia Noua'),
12565
+ (12529, 'RO ', '319', 'Salcia Veche'),
12566
+ (12530, 'RO ', '319', 'Sarbi'),
12567
+ (12531, 'RO ', '319', 'Satu Nou (Ciorasti)'),
12568
+ (12532, 'RO ', '319', 'Satu Nou (Panciu)'),
12569
+ (12533, 'RO ', '319', 'Scafari'),
12570
+ (12534, 'RO ', '319', 'Scanteia'),
12571
+ (12535, 'RO ', '319', 'Seciu'),
12572
+ (12536, 'RO ', '319', 'Serbanesti'),
12573
+ (12537, 'RO ', '319', 'Serbesti'),
12574
+ (12538, 'RO ', '319', 'Sihlea'),
12575
+ (12539, 'RO ', '319', 'Siminoc'),
12576
+ (12540, 'RO ', '319', 'Sindrilari'),
12577
+ (12541, 'RO ', '319', 'Siscani'),
12578
+ (12542, 'RO ', '319', 'Slimnic'),
12579
+ (12543, 'RO ', '319', 'Slobozia Bradului'),
12580
+ (12544, 'RO ', '319', 'Slobozia Ciorasti'),
12581
+ (12545, 'RO ', '319', 'Sotarcari'),
12582
+ (12546, 'RO ', '319', 'Soveja'),
12583
+ (12547, 'RO ', '319', 'Spatareasa'),
12584
+ (12548, 'RO ', '319', 'Spinesti'),
12585
+ (12549, 'RO ', '319', 'Spulber'),
12586
+ (12550, 'RO ', '319', 'Strajescu'),
12587
+ (12551, 'RO ', '319', 'Straoane'),
12588
+ (12552, 'RO ', '319', 'Stupina'),
12589
+ (12553, 'RO ', '319', 'Suraia'),
12590
+ (12554, 'RO ', '319', 'Tabucesti'),
12591
+ (12555, 'RO ', '319', 'Tamboesti'),
12592
+ (12556, 'RO ', '319', 'Tanasari'),
12593
+ (12557, 'RO ', '319', 'Tanasoaia'),
12594
+ (12558, 'RO ', '319', 'Taratu'),
12595
+ (12559, 'RO ', '319', 'Tataranu'),
12596
+ (12560, 'RO ', '319', 'Tataru'),
12597
+ (12561, 'RO ', '319', 'Tepa'),
12598
+ (12562, 'RO ', '319', 'Terchesti'),
12599
+ (12563, 'RO ', '319', 'Tichiris'),
12600
+ (12564, 'RO ', '319', 'Tifesti'),
12601
+ (12565, 'RO ', '319', 'Tinoasa'),
12602
+ (12566, 'RO ', '319', 'Tipau'),
12603
+ (12567, 'RO ', '319', 'Tisita'),
12604
+ (12568, 'RO ', '319', 'Titila'),
12605
+ (12569, 'RO ', '319', 'Tojanii de Jos'),
12606
+ (12570, 'RO ', '319', 'Tojanii de Sus'),
12607
+ (12571, 'RO ', '319', 'Topesti'),
12608
+ (12572, 'RO ', '319', 'Trestia'),
12609
+ (12573, 'RO ', '319', 'Trestieni'),
12610
+ (12574, 'RO ', '319', 'Trotusanu'),
12611
+ (12575, 'RO ', '319', 'Tulburea'),
12612
+ (12576, 'RO ', '319', 'Tulnici'),
12613
+ (12577, 'RO ', '319', 'Tutu'),
12614
+ (12578, 'RO ', '319', 'Ungureni'),
12615
+ (12579, 'RO ', '319', 'Unirea'),
12616
+ (12580, 'RO ', '319', 'Urechesti'),
12617
+ (12581, 'RO ', '319', 'Ursoaia'),
12618
+ (12582, 'RO ', '319', 'Vadu Rosca'),
12619
+ (12583, 'RO ', '319', 'Vajaitoarea'),
12620
+ (12584, 'RO ', '319', 'Valcani'),
12621
+ (12585, 'RO ', '319', 'Valcele'),
12622
+ (12586, 'RO ', '319', 'Valcelele'),
12623
+ (12587, 'RO ', '319', 'Valea Beciului'),
12624
+ (12588, 'RO ', '319', 'Valea Mica'),
12625
+ (12589, 'RO ', '319', 'Valea Milcovului'),
12626
+ (12590, 'RO ', '319', 'Valea Neagra'),
12627
+ (12591, 'RO ', '319', 'Valea Sarii'),
12628
+ (12592, 'RO ', '319', 'Valeni (Movilita)'),
12629
+ (12593, 'RO ', '319', 'Valeni (Ruginesti)'),
12630
+ (12594, 'RO ', '319', 'Valeni (Straoane)'),
12631
+ (12595, 'RO ', '319', 'Vanatori'),
12632
+ (12596, 'RO ', '319', 'Varnita'),
12633
+ (12597, 'RO ', '319', 'Varsatura'),
12634
+ (12598, 'RO ', '319', 'Vartescoiu'),
12635
+ (12599, 'RO ', '319', 'Verdea'),
12636
+ (12600, 'RO ', '319', 'Vetresti-Herastrau'),
12637
+ (12601, 'RO ', '319', 'Vidra'),
12638
+ (12602, 'RO ', '319', 'Viisoara (Paunesti)'),
12639
+ (12603, 'RO ', '319', 'Viisoara (Vidra)'),
12640
+ (12604, 'RO ', '319', 'Vintileasca'),
12641
+ (12605, 'RO ', '319', 'Vitanesti'),
12642
+ (12606, 'RO ', '319', 'Vitanestii de sub Magura'),
12643
+ (12607, 'RO ', '319', 'Vizantea Manastireasca'),
12644
+ (12608, 'RO ', '319', 'Vizantea Razaseasca'),
12645
+ (12609, 'RO ', '319', 'Vizantea-Livezi'),
12646
+ (12610, 'RO ', '319', 'Vladnicu de Jos'),
12647
+ (12611, 'RO ', '319', 'Vladnicu de Sus'),
12648
+ (12612, 'RO ', '319', 'Voetin'),
12649
+ (12613, 'RO ', '319', 'Voloscani'),
12650
+ (12614, 'RO ', '319', 'Vrancioaia'),
12651
+ (12615, 'RO ', '319', 'Vulcaneasa'),
12652
+ (12616, 'RO ', '319', 'Vulturu');
12653
+ ");
12654
+
12655
+ $installer->endSetup();
app/design/adminhtml/default/default/layout/romcity/romcity.xml ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <layout version="0.1.0">
3
+ <adminhtml_sales_order_create_index>
4
+ <reference name="billing_address">
5
+ <action method="setTemplate">
6
+ <template>romcity/sales/order/create/form/address.phtml</template>
7
+ </action>
8
+ </reference>
9
+ <reference name="shipping_address">
10
+ <action method="setTemplate">
11
+ <template>romcity/sales/order/create/form/ship_address.phtml</template>
12
+ </action>
13
+ </reference>
14
+ </adminhtml_sales_order_create_index>
15
+ <adminhtml_sales_order_create_load_block_data>
16
+ <reference name="billing_address">
17
+ <action method="setTemplate">
18
+ <template>romcity/sales/order/create/form/address.phtml</template>
19
+ </action>
20
+ </reference>
21
+ <reference name="shipping_address">
22
+ <action method="setTemplate">
23
+ <template>romcity/sales/order/create/form/ship_address.phtml</template>
24
+ </action>
25
+ </reference>
26
+ </adminhtml_sales_order_create_load_block_data>
27
+
28
+ <adminhtml_sales_order_create_load_block_shipping_address>
29
+ <reference name="shipping_address">
30
+ <action method="setTemplate">
31
+ <template>romcity/sales/order/create/form/ship_address.phtml</template>
32
+ </action>
33
+ </reference>
34
+ </adminhtml_sales_order_create_load_block_shipping_address>
35
+
36
+ <adminhtml_sales_order_create_load_block_billing_address>
37
+ <reference name="billing_address">
38
+ <action method="setTemplate">
39
+ <template>romcity/sales/order/create/form/address.phtml</template>
40
+ </action>
41
+ </reference>
42
+ </adminhtml_sales_order_create_load_block_billing_address>
43
+ </layout>
app/design/adminhtml/default/default/template/romcity/customer/tab/addresses.phtml ADDED
@@ -0,0 +1,734 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category design
22
+ * @package default_default
23
+ * @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <!-- Addresses list -->
28
+ <table cellspacing="0" class="form-edit">
29
+ <tr>
30
+ <td class="address-list">
31
+ <div class="entry-edit-head">
32
+ <h4 class="icon-head head-customer-address-list"><?php echo Mage::helper('customer')->__('Customer Addresses') ?></h4>
33
+ </div>
34
+ <div class="sub-btn-set"><?php echo $this->getAddNewButtonHtml() ?></div>
35
+ <ul id="address_list">
36
+ <?php $_iterator = 0; ?>
37
+ <?php if(count($addressCollection)): ?>
38
+ <?php foreach ($addressCollection as $_address): ?>
39
+ <li id="address_item_<?php echo $_address->getId() ?>">
40
+ <?php if (!$this->isReadonly()): ?>
41
+ <a href="#" class="btn-remove-address">
42
+ <img src="<?php echo $this->getSkinUrl('images/cancel_icon.gif') ?>" alt="Remove address" id="delete_button<?php echo ++$_iterator ?>" />
43
+ </a>
44
+ <a href="#" id="select_button_<?php echo $_address->getId() ?>" class="select_button btn-edit-address">
45
+ <img src="<?php echo $this->getSkinUrl('images/edit_icon.gif') ?>" alt="Edit address"/>
46
+ </a>
47
+ <?php endif;?>
48
+ <address>
49
+ <?php echo $_address->format('html') ?>
50
+ </address>
51
+ <div class="address-type">
52
+ <span class="address-type-line">
53
+ <input type="radio" <?php if ($this->isReadonly()):?> disabled="disabled"<?php endif;?> value="<?php echo $_address->getId() ?>" id="address_item_billing<?php echo $_address->getId() ?>" name="account[default_billing]" title="<?php echo Mage::helper('customer')->__('Set as Default Billing Address') ?>"<?php if($_address->getId()==$customer->getDefaultBilling()): ?> checked="checked"<?php endif; ?>/>
54
+ &nbsp;<label for="address_item_billing<?php echo $_address->getId() ?>"><?php echo Mage::helper('customer')->__('Default Billing Address') ?></label>
55
+ </span>
56
+ <span class="address-type-line">
57
+ <input type="radio" <?php if ($this->isReadonly()):?> disabled="disabled"<?php endif;?> value="<?php echo $_address->getId() ?>" id="address_item_shipping<?php echo $_address->getId() ?>" name="account[default_shipping]" title="<?php echo Mage::helper('customer')->__('Set as Default Shipping Address') ?>"<?php if($_address->getId()==$customer->getDefaultShipping()): ?> checked="checked"<?php endif; ?>/>
58
+ &nbsp;<label for="address_item_shipping<?php echo $_address->getId() ?>"><?php echo Mage::helper('customer')->__('Default Shipping Address') ?></label>
59
+ </span>
60
+ </div>
61
+ </li>
62
+ <?php endforeach; ?>
63
+ <?php endif; ?>
64
+ </ul>
65
+ </td>
66
+ <td>
67
+ <!-- Template for adding address item to list -->
68
+ <?php $_templatePrefix = $this->getTemplatePrefix() ?>
69
+ <div id="address_item_template" class="no-display template">
70
+ <?php if (!$this->isReadonly()): ?>
71
+ <a href="#" class="btn-remove-address">
72
+ <img src="<?php echo $this->getSkinUrl('images/cancel_icon.gif') ?>" alt="Remove address" id="delete_button<?php echo ++$_iterator ?>" />
73
+ </a>
74
+ <a href="#" id="select_button_" class="select_button btn-edit-address">
75
+ <img src="<?php echo $this->getSkinUrl('images/edit_icon.gif') ?>" alt="Edit address"/>
76
+ </a>
77
+ <?php endif;?>
78
+ <address><?php echo Mage::helper('customer')->__('New Customer Address') ?></address>
79
+ <div class="address-type">
80
+ <span class="address-type-line">
81
+ <input <?php if ($this->isReadonly()):?> disabled="disabled"<?php endif;?> type="radio" value="<?php echo $_templatePrefix ?>" id="address_item_billing<?php echo $_templatePrefix ?>" name="account[default_billing]" title="<?php echo Mage::helper('customer')->__('Set as Default Billing Address') ?>"/>
82
+ &nbsp;<label for="address_item_billing<?php echo $_templatePrefix ?>"><?php echo Mage::helper('customer')->__('Default Billing Address') ?></label>
83
+ </span>
84
+ <span class="address-type-line">
85
+ <input <?php if ($this->isReadonly()):?> disabled="disabled"<?php endif;?> type="radio" value="<?php echo $_templatePrefix ?>" id="address_item_shipping<?php echo $_templatePrefix ?>" name="account[default_shipping]" title="<?php echo Mage::helper('customer')->__('Set as Default Shipping Address') ?>"/>
86
+ &nbsp;<label for="address_item_shipping<?php echo $_templatePrefix ?>"><?php echo Mage::helper('customer')->__('Default Shipping Address') ?></label>
87
+ </span>
88
+ </div>
89
+ </div>
90
+
91
+ <!-- Address form template -->
92
+ <div id="address_form_template" class="no-display template">
93
+ <?php
94
+ // Set form template elements prefix
95
+ $this->getForm()->setHtmlIdPrefix($_templatePrefix)
96
+ ->setFieldNameSuffix('address['.$_templatePrefix.']');
97
+ ?>
98
+ <?php echo $this->getForm()->getHtml() ?>
99
+ <?php echo $this->getCancelButtonHtml() ?>
100
+ </div>
101
+ <!-- -->
102
+
103
+ <!-- Addresses forms -->
104
+ <div class="entry-edit" id="address_form_container">
105
+ <?php if(count($addressCollection)): ?>
106
+ <?php foreach ($addressCollection as $_address): ?>
107
+ <div id="form_address_item_<?php echo $_address->getId() ?>" style="display:none">
108
+ <?php
109
+ $this->getForm()->addValues($_address->getData())
110
+ ->setHtmlIdPrefix("_item{$_address->getId()}")
111
+ ->setFieldNameSuffix('address['.$_address->getId().']');
112
+ $this->addValuesToNamePrefixElement($_address->getPrefix())
113
+ ->addValuesToNameSuffixElement($_address->getSuffix());
114
+ ?>
115
+ <?php echo $this->getForm()->getHtml() ?>
116
+ <input type="hidden" name="address[<?php echo $_address->getId() ?>][_deleted]" id="deleted_address_item_<?php echo $_address->getId() ?>" />
117
+ </div>
118
+ <?php endforeach; ?>
119
+ <?php else: ?>
120
+ <div id="no_address_message"><?php echo Mage::helper('customer')->__('This customer has no saved addresses.') ?></div>
121
+ <?php endif; ?>
122
+ </div>
123
+
124
+ <script type="text/javascript">
125
+ //<![CDATA[
126
+ var deleteButtonId = <?php echo $_iterator ?>;
127
+
128
+ var addressesModel = Class.create();
129
+ addressesModel.prototype = {
130
+ initialize : function() {
131
+ this.activeItem = null;
132
+ this.itemTemplate = $('address_item_template');
133
+ this.formTemplate = $('address_form_template');
134
+ this.itemContainer= $('address_list');
135
+ this.formContainer= $('address_form_container');
136
+ this.baseItemId = 'new_item';
137
+
138
+ this.defaultCountries = <?php echo $this->getDefaultCountriesJson(); ?>;
139
+ this.itemContentTemplate = new Template('<?php echo $this->helper('customer/address')->getFormat('js_template')?>');
140
+
141
+ this.onNewAddressClick = this.addNewAddress.bindAsEventListener(this);
142
+ this.onItemMouseOver = this.itemMouseOver.bindAsEventListener(this);
143
+ this.onItemMouseOut = this.itemMouseOut.bindAsEventListener(this);
144
+ this.onItemMouseClick = this.itemMouseClick.bindAsEventListener(this);
145
+ this.onItemFormFieldChange = this.syncFormData.bindAsEventListener(this);
146
+
147
+ this.loader = new varienLoader(true);
148
+ this.regionsUrl = '<?php echo $this->getRegionsUrl() ?>';
149
+ this.requiredStateForCountries = <?php echo $this->helper('directory')->getCountriesWithStatesRequired(true) ?>;
150
+ this.showAllRegions = <?php echo (string)$this->helper('directory')->getShowNonRequiredState() ? 1 : 0; ?>;
151
+
152
+ this.reloadItemList(1);
153
+
154
+ for(var i=0,n=this.itemList.length; i<n; i++){
155
+ if(this.itemList[i].id){
156
+ this.addItemObservers(this.itemList[i]);
157
+ this.initItem(this.itemList[i]);
158
+ }
159
+ }
160
+ if($('add_new_address_button')){
161
+ Event.observe('add_new_address_button', 'click', this.onNewAddressClick)
162
+ }
163
+
164
+ this.setActiveItem(this.itemList[0]);
165
+ this.setAddressAsDefault();
166
+ this.bindCountryRegionRelation();
167
+ this.loadCity();
168
+ },
169
+
170
+ reloadItemList : function(initial){
171
+ this.itemList = $$('#address_list li');
172
+ if( initial ) {
173
+ this.itemCount = this.itemList.length;
174
+ }
175
+ if(!this.itemList.length){
176
+ if($('no_address_message')){
177
+ $('no_address_message').show();
178
+ }
179
+ else {
180
+ this.formContainer.innerHTML+= '<div id="no_address_message"><?php echo addslashes(Mage::helper('customer')->__('This customer has no saved addresses.')) ?></div>'
181
+ }
182
+ }
183
+ },
184
+
185
+ initItem : function(item){
186
+ if(item && $('form_'+item.id)){
187
+ item.formBlock = $('form_'+item.id);
188
+ Element.hide($('form_'+item.id));
189
+ $('form_'+item.id).statusBar = item;
190
+ $('form_'+item.id).addressItem = item;
191
+
192
+ // set Zip optional/required
193
+ var countryElement = $('_item' + item.id.replace(/address_item_/, '') + 'country_id');
194
+ varienGlobalEvents.fireEvent("address_country_changed", countryElement);
195
+ }
196
+ },
197
+
198
+
199
+ addItemObservers : function(item){
200
+ if(item.id){
201
+ Event.observe(item, 'mouseover', this.onItemMouseOver);
202
+ Event.observe(item, 'mouseout', this.onItemMouseOut);
203
+ Event.observe(item, 'click', this.onItemMouseClick);
204
+ }
205
+ },
206
+
207
+ addNewAddress : function(event){
208
+ if(this.canCreateNewAddress){
209
+ this.itemCount++;
210
+ if($('no_address_message')){
211
+ $('no_address_message').hide();
212
+ }
213
+ // preventing duplication of ids for fields and blocks
214
+ while ($$("div[id='form_address_item_" + this.itemCount + "']").length) {
215
+ this.itemCount++;
216
+ }
217
+ // create new form elements
218
+ Element.insert(this.formContainer, {bottom:
219
+ '<div id="' + 'form_' + this.baseItemId + this.itemCount + '">'
220
+ + this.prepareTemplate(this.formTemplate.innerHTML)
221
+ + '</div>'
222
+ });
223
+
224
+ var newForm = $('form_' + this.baseItemId + this.itemCount);
225
+
226
+ $('_item'+this.itemCount+'firstname').value = $('_accountfirstname').value;
227
+ $('_item'+this.itemCount+'lastname').value = $('_accountlastname').value;
228
+
229
+ if ($('_accountwebsite_id').value !== '' && undefined !== this.defaultCountries[$('_accountwebsite_id').value]) {
230
+ $('_item'+this.itemCount+'country_id').value = this.defaultCountries[$('_accountwebsite_id').value];
231
+ }
232
+
233
+ Element.hide(newForm);
234
+ var template = '<li id="' + this.baseItemId+this.itemCount + '">';
235
+ deleteButtonId ++;
236
+ template += this.prepareTemplate(this.itemTemplate.innerHTML).replace('delete_button', 'delete_button'+ deleteButtonId);
237
+ template += '</li>';
238
+ Element.insert(this.itemContainer, {bottom: template});
239
+ var newItem = $(this.baseItemId+this.itemCount);
240
+ newItem.isNewAddress = true;
241
+ newItem.formBlock = newForm;
242
+
243
+
244
+ newForm.statusBar = newItem;
245
+ newForm.addressItem = newItem;
246
+
247
+ this.addItemObservers(newItem);
248
+ this.setActiveItem(newItem);
249
+ this.bindCountryRegionRelation(newForm.id);
250
+ this.loadCity(newForm.id);
251
+
252
+ if( $('_item'+this.itemCount+'firstname').value ) this.syncFormData($('_item'+this.itemCount+'firstname'));
253
+ if( $('_item'+this.itemCount+'lastname').value ) this.syncFormData($('_item'+this.itemCount+'lastname'));
254
+ }
255
+ this.reloadItemList();
256
+ //Event.stop(event);
257
+ },
258
+
259
+ prepareTemplate : function(template){
260
+ return template
261
+ .replace(/<?php echo $_templatePrefix ?>/g, '_item'+this.itemCount)
262
+ .replace(/_counted="undefined"/g, '')
263
+ .replace(/"select_button_"/g, 'select_button_' + this.itemCount)
264
+ ;
265
+ },
266
+
267
+ canCreateNewAddress : function(){
268
+ return true;
269
+ },
270
+
271
+ itemMouseOver : function(event){
272
+ var element = Event.findElement(event, 'li');
273
+ Element.addClassName(element, 'over');
274
+ },
275
+
276
+ itemMouseOut : function(event){
277
+ var element = Event.findElement(event, 'li');
278
+ Element.removeClassName(element, 'over');
279
+ },
280
+
281
+ itemMouseClick : function(event){
282
+ if (!Event) {
283
+ return;
284
+ }
285
+ var element = Event.findElement(event, 'li'); // find top item
286
+ var elem = Event.element(event); // exact element clicked
287
+
288
+ if ( ((elem.tagName.toUpperCase() == 'A') && elem.id.match(/^delete_button([0-9]*?)$/)) || ((elem.tagName.toUpperCase() == 'IMG') && elem.id.match(/^delete_button([0-9]*?)$/)) ) {
289
+ this.deleteAddress(element);
290
+ Event.stop(event);
291
+ }
292
+ else if(elem.tagName.toUpperCase() == 'INPUT') {
293
+ this.setAddressAsDefault(element);
294
+ }
295
+ else {
296
+ this.setActiveItem(element);
297
+ }
298
+ },
299
+
300
+ setAddressAsDefault : function(){
301
+ for(var i=0; i<this.itemList.length;i++){
302
+ if(this.itemList[i].id){
303
+ var inputs = $(this.itemList[i].id).getElementsBySelector('input');
304
+ var isActive = false;
305
+ for(var j in inputs){
306
+ if(inputs[j].type=='radio' && inputs[j].checked && this.itemList.length > 1){
307
+ isActive = true;
308
+ }
309
+ }
310
+ this.toggleDeleteButton(this.itemList[i], !isActive);
311
+ }
312
+ }
313
+ },
314
+
315
+ toggleDeleteButton : function(item, flag){
316
+ if(flag){
317
+ $(item).select('.btn-remove-address').each(Element.show);
318
+ $(item.formBlock).getElementsBySelector('.delete-address').each(Element.show);
319
+ } else {
320
+ $(item).select('.btn-remove-address').each(Element.hide);
321
+ $(item.formBlock).getElementsBySelector('.delete-address').each(Element.hide);
322
+ }
323
+ },
324
+
325
+ setActiveItem : function(item){
326
+ if(this.activeItem){
327
+ Element.removeClassName(this.activeItem, 'on');
328
+ if($('form_'+this.activeItem.id)){
329
+ Element.hide($('form_'+this.activeItem.id));
330
+ }
331
+ }
332
+ Element.addClassName(item, 'on');
333
+
334
+ if(item && $('form_'+item.id)){
335
+ $('form_'+item.id).changeRelation = item;
336
+ $('form_'+item.id).addressItem = item;
337
+ Element.show($('form_'+item.id));
338
+ //new Effect.Appear($('form_'+item.id), {duration : 0.3 });
339
+ //$('form_'+item.id).focus();
340
+ this.addFieldChangeObserver($('form_'+item.id));
341
+ var regionIdElement = $('_item' + item.id.replace(/address_item_/, '') + 'region_id');
342
+ var regionElement = $('_item' + item.id.replace(/address_item_/, '') + 'region');
343
+ this.countryEl = $('_item' + item.id.replace(/address_item_/, '') + 'country_id');
344
+ if (regionIdElement && regionElement) {
345
+ var actualId = regionElement.id;
346
+ if (('select' == regionIdElement.tagName.toLowerCase()) && regionIdElement) {
347
+ actualId = regionIdElement.id;
348
+ }
349
+ this._checkRegionRequired([regionIdElement, regionElement], actualId);
350
+ }
351
+ }
352
+
353
+ this.activeItem = item;
354
+ },
355
+
356
+ getFormContainerFields : function(container){
357
+ var fields = $$( '#' + container.id + ' input','#' + container.id + ' select','#' + container.id + ' textarea');
358
+ return fields;
359
+ },
360
+
361
+ addFieldChangeObserver : function(container){
362
+ var fields = this.getFormContainerFields(container);
363
+ for (var i = 0; i < fields.length; i++) {
364
+ Event.observe(fields[i], 'change', this.onItemFormFieldChange);
365
+ }
366
+
367
+ },
368
+
369
+ syncFormData : function(evt){
370
+ var container = false;
371
+
372
+ if(!evt.addClassName) {
373
+ var elm = Event.element(evt);
374
+ } else {
375
+ var elm = evt;
376
+ }
377
+
378
+ elm = $(elm);
379
+ while(elm.tagName.toUpperCase() != 'BODY') {
380
+ if(elm.addressItem){
381
+ container = elm;
382
+ }
383
+ elm = $(elm.parentNode);
384
+ }
385
+
386
+ if(container){
387
+ var data = {};
388
+ var fields = this.getFormContainerFields(container);
389
+ for(var i=0; i < fields.size(); i++){
390
+ if(fields[i].id){
391
+ var id = fields[i].id.replace(/^(_item)?[0-9]+/, '');
392
+ var id = id.replace(/^(id)?[0-9]+/, '');
393
+ var value = fields[i].getValue();
394
+ var tagName = fields[i].tagName.toLowerCase();
395
+ if (tagName == 'select') {
396
+ if (fields[i].multiple) {
397
+ var values = $([]);
398
+ var l = fields[i].options.length;
399
+ for (j=0; j<l; j++) {
400
+ var o = fields[i].options[j];
401
+ if (o.selected === true) {
402
+ values[values.length] = o.text.escapeHTML();
403
+ }
404
+ }
405
+ data[id] = values.join(', ');
406
+ } else {
407
+ var option = fields[i].options[fields[i].selectedIndex],
408
+ text = option.value == '0' || option.value == '' ? '' : option.text;
409
+ data[id] = text.escapeHTML();
410
+ }
411
+ } else if (value !== null) {
412
+ data[id] = value.escapeHTML();
413
+ }
414
+ }
415
+ }
416
+
417
+ // Set name of state to 'region' if list of states are in 'region_id' selectbox
418
+ if (!data['region'] && data['region_id']) {
419
+ data['region'] = data['region_id'];
420
+ delete data['region_id'];
421
+ }
422
+
423
+ // Set data to html
424
+ var itemContainer = container.addressItem.getElementsBySelector('address');
425
+ if(itemContainer[0]){
426
+ var html = this.itemContentTemplate.evaluate(data);
427
+ html = html.replace(new RegExp('(<br\\s*/?>\\s*){2,}','img'),'<br/>');
428
+ html = html.replace(new RegExp('<br\\s*/?>(\\s*,){1,}\\s*<br\\s*/?>','ig'),'<br/>');
429
+ html = html.replace(new RegExp('<br\\s*/?>(\\s*,){1,}(.*)<br\\s*/?>','ig'),'<br/>$2<br/>');
430
+ html = html.replace(new RegExp('<br\\s*/?>(.*?)(,\\s*){1,}<br\\s*/?>','ig'),'<br/>$1<br/>');
431
+ html = html.replace(new RegExp('<br\\s*/?>(.*?)(,\\s*){2,}(.*?)<br\\s*/?>','ig'),'<br/>$1, $3<br/>');
432
+ html = html.replace(new RegExp('t:\\s*<br\\s*/?>','ig'),'');
433
+ html = html.replace(new RegExp('f:\\s*<br\\s*/?>','ig'),'');
434
+ html = html.replace(new RegExp('vat:\\s*$','ig'),'');
435
+ itemContainer[0].innerHTML = html;
436
+ }
437
+ }
438
+ },
439
+
440
+ deleteAddress : function(item){
441
+ if(confirm('<?php echo Mage::helper('customer')->__('Are you sure you want to delete this address?') ?>')){
442
+ if (!item.isNewAddress && $('deleted_'+item.id)){
443
+ $('deleted_'+item.id).value = 1;
444
+ if (item.formBlock){
445
+ item.formBlock.addClassName('ignore-validation');
446
+ }
447
+ }
448
+ if (this.activeItem == item && item != this.itemList[0]) this.setActiveItem(this.itemList[0]);
449
+ if (item == this.itemList[0] && (this.itemList[1])) this.setActiveItem(this.itemList[1]);
450
+
451
+ this.formContainer.removeChild(item.formBlock);
452
+ this.itemContainer.removeChild(item);
453
+ this.reloadItemList();
454
+ this.setAddressAsDefault();
455
+ }
456
+ },
457
+
458
+ cancelAdd : function(button){
459
+ if(confirm('<?php echo addslashes(Mage::helper('customer')->__('Are you sure you want to cancel adding of this address?')) ?>')){
460
+ var item = $(this.baseItemId + button.id.replace(new RegExp('[a-z_]*',''), ''));
461
+
462
+ if( item.isNewAddress){
463
+ if ( this.activeItem == item ) this.formContainer.removeChild(item.formBlock);
464
+ }
465
+ if ( this.activeItem == item && item != this.itemList[0] ) this.setActiveItem(this.itemList[0]);
466
+ if ( item == this.itemList[0] && (this.itemList[1]) ) this.setActiveItem(this.itemList[1]);
467
+
468
+ this.itemContainer.removeChild(item);
469
+
470
+ this.reloadItemList();
471
+ this.setAddressAsDefault();
472
+ }
473
+ },
474
+
475
+ bindCountryRegionRelation : function(parentId){
476
+ //alert('OK');
477
+ if(parentId){
478
+ var countryElements = $(parentId).getElementsByClassName('countries');
479
+ }
480
+ else{
481
+ var countryElements = $$('.countries');
482
+ }
483
+
484
+ for(var i=0;i<=countryElements.length;i++){
485
+ if(countryElements[i]){
486
+ if(!countryElements[i].bindRegions || !countryElements[i].parentBindId || countryElements[i].parentBindId!=parentId){
487
+ //if(!countryElements[i].bindRegions || !countryElements[i].parentBindId){
488
+ Event.observe(countryElements[i], 'change', this.reloadRegionField.bind(this));
489
+
490
+ countryElements[i].bindRegions = true;
491
+ countryElements[i].parentBindId = parentId;
492
+ }
493
+ }
494
+ }
495
+ },
496
+
497
+ reloadRegionField : function(event){
498
+ var countryElement = Event.element(event);
499
+ if(countryElement.id){
500
+ var regionElement = $(countryElement.id.replace(/country_id/, 'region'));
501
+ if(regionElement){
502
+ this.regionElement = regionElement;
503
+ this.countryEl = countryElement;
504
+ if (countryElement.value) {
505
+ var url = this.regionsUrl + 'parent/' + countryElement.value;
506
+ this.loader.load(url, {}, this.refreshRegionField.bind(this));
507
+ } else {
508
+ // Set empty text field in region
509
+ this.refreshRegionField('[]');
510
+ }
511
+ }
512
+ // set Zip optional/required
513
+ varienGlobalEvents.fireEvent("address_country_changed", countryElement);
514
+ }
515
+ },
516
+
517
+ // serverResponse is either string with server response, or object to force some paricular data setting
518
+ refreshRegionField : function(serverResponse){
519
+ if (!serverResponse)
520
+ return;
521
+ var data = eval('(' + serverResponse + ')');
522
+
523
+ var row = Element.previous(this.regionElement.parentNode,0);
524
+ var reqLabel = Element.select(row, '.required');
525
+
526
+ // Set regions and refresh controls
527
+ // We use a pair of 'region' and 'region_id' to properly submit data:
528
+ // manually entered text goes in 'region' and selected option id goes in 'region_id'
529
+ var regionHtmlName = this.regionElement.name;
530
+ var regionIdHtmlName = regionHtmlName.replace(/region/, 'region_id');
531
+ var regionHtmlId = this.regionElement.id;
532
+ var regionIdHtmlId = regionHtmlId.replace(/region/, 'region_id');
533
+ var newInputId = null; // id of imput that was added to a page - filled below
534
+
535
+ if (data.length) {
536
+ // Create visible selectbox 'region_id' and hidden 'region'
537
+ var html = '<select name="' + regionIdHtmlName + '" id="' + regionIdHtmlId + '" class="required-entry select" title="' + this.regionElement.title + '" addresid ="'+this.regionElement.id+'">';
538
+ for (var i in data){
539
+ if(data[i].label) {
540
+ html+= '<option value="'+data[i].value+'"';
541
+ if(this.regionElement.value && (this.regionElement.value == data[i].value || this.regionElement.value == data[i].label)){
542
+ html+= ' selected="selected"';
543
+ }
544
+ html+='>'+data[i].label+'</option>';
545
+ }
546
+ }
547
+ html += '</select>';
548
+
549
+ html += '<input type="hidden" name="' + regionHtmlName + '" id="' + regionHtmlId + '"/>';
550
+
551
+ if (reqLabel) {
552
+ reqLabel.each(function(item){Element.show(item)});
553
+ }
554
+
555
+ newInputId = regionIdHtmlId;
556
+ } else {
557
+ // Create visible text input 'region' and hidden 'region_id'
558
+ var html = '<input type="text" name="' + regionHtmlName + '" id="' + regionHtmlId + '" class="input-text" title="' + this.regionElement.title + '" />';
559
+ html += '<input type="hidden" name="' + regionIdHtmlName + '" id="' + regionIdHtmlId + '"/>';
560
+
561
+ if (reqLabel) {
562
+ reqLabel.each(function(item){Element.hide(item)});
563
+ }
564
+
565
+ newInputId = regionHtmlId;
566
+ }
567
+
568
+ var parentNode = this.regionElement.parentNode;
569
+ parentNode.innerHTML = html;
570
+ this.regionElement = $(regionHtmlId);
571
+
572
+ // Updating in address info
573
+ var newInput = $(newInputId);
574
+ Event.observe(newInput, 'change', this.onItemFormFieldChange); // Restore observing to update address info
575
+ Event.observe(newInput, 'change', function(){
576
+ beforeAjax(this)
577
+ });
578
+ this.removeCity(newInput);
579
+ this.syncFormData(newInput); // Update address info now
580
+ var activeElementId = regionHtmlId;
581
+ if (('select' == $(regionIdHtmlId).tagName.toLowerCase()) && regionIdHtmlId) {
582
+ activeElementId = regionIdHtmlId;
583
+ }
584
+ this._checkRegionRequired([$(regionHtmlId), $(regionIdHtmlId)], activeElementId);
585
+ },
586
+
587
+ // eadesign added
588
+ loadCity : function(){
589
+
590
+ var action = '<?php echo $this->getUrl('citydropdownadmin/adminhtml_index/cities'); ?>';
591
+ var myRegion = $$('.regions-select-city');
592
+
593
+ for(var i=0;i<=myRegion.length;i++){
594
+ if(myRegion[i]) {
595
+ Event.observe($(myRegion[i]), 'change', function (event) {
596
+ var addressId = this.id.replace('_item','').replace('region_id','');
597
+ var normalInput ='<input id="_item'+addressId+'city" name="address['+addressId+'][city]" value="" class=" required-entry rom-city input-text required-entry ">';
598
+ var coutryid = $('_item'+addressId+'country_id').value;
599
+
600
+ getAjaxReqestAdminCustomer(action, coutryid, this.value, normalInput,addressId,addressId);
601
+ });
602
+ }
603
+ }
604
+ },
605
+
606
+ removeCity: function(newInput){
607
+ var isNew = newInput.readAttribute('name').includes('_item');
608
+
609
+ var addressId = newInput.id.replace('_item', '').replace('region', '').replace('_id', '');
610
+ var fieldName = addressId;
611
+ if(isNew){
612
+ fieldName = '_item'+addressId;
613
+ }
614
+
615
+ $('_item'+addressId+'city').replace('<input id="_item'+addressId+'city" name="address['+fieldName
616
+ +'][city]" class=" required-entry rom-city input-text">');
617
+ },
618
+
619
+ _checkRegionRequired: function(elements, activeElementId)
620
+ {
621
+ var label, wildCard;
622
+ var that = this;
623
+ var regionRequired = this.requiredStateForCountries.indexOf(this.countryEl.value) >= 0;
624
+
625
+ elements.each(function(currentElement) {
626
+ Validation.reset(currentElement);
627
+ label = $$('label[for="' + currentElement.id + '"]')[0];
628
+ if (label) {
629
+ wildCard = label.down('em') || label.down('span.required');
630
+ if (!that.showAllRegions) {
631
+ if (regionRequired) {
632
+ label.up('tr').show();
633
+ } else {
634
+ label.up('tr').hide();
635
+ }
636
+ }
637
+ }
638
+
639
+ if (label && wildCard) {
640
+ if (!regionRequired) {
641
+ wildCard.hide();
642
+ } else {
643
+ wildCard.show();
644
+ }
645
+ }
646
+
647
+ if (!regionRequired) {
648
+ if (currentElement.hasClassName('required-entry')) {
649
+ currentElement.removeClassName('required-entry');
650
+ }
651
+ if ('select' == currentElement.tagName.toLowerCase() &&
652
+ currentElement.hasClassName('validate-select')
653
+ ) {
654
+ currentElement.removeClassName('validate-select');
655
+ }
656
+ } else if (activeElementId == currentElement.id) {
657
+ if (!currentElement.hasClassName('required-entry')) {
658
+ currentElement.addClassName('required-entry');
659
+ }
660
+ if ('select' == currentElement.tagName.toLowerCase() &&
661
+ !currentElement.hasClassName('validate-select')
662
+ ) {
663
+ currentElement.addClassName('validate-select');
664
+ }
665
+ }
666
+ });
667
+ }
668
+ }
669
+
670
+ customerAddresses = new addressesModel();
671
+ //]]>
672
+ </script>
673
+ <script type="text/javascript">
674
+ //<![CDATA[
675
+ function beforeAjax(field) {
676
+ var action = '<?php echo $this->getUrl('citydropdownadmin/adminhtml_index/cities'); ?>';
677
+
678
+ if (!field) {
679
+ return;
680
+ }
681
+
682
+ var addressId = field.id.replace('_item', '').replace('region_id', '');
683
+
684
+ //var isNew = field.name.includes('_item');
685
+ var isNew = field.readAttribute('name').includes('_item');
686
+
687
+ var fieldName = addressId;
688
+ if(isNew){
689
+ fieldName = '_item'+addressId;
690
+ }
691
+
692
+ var normalInput = '<input id="_item' + addressId + 'city" name="address[' + fieldName + '][city]" value="" class=" required-entry rom-city input-text required-entry ">';
693
+ var coutryid = $('_item' + addressId + 'country_id').value;
694
+ getAjaxReqestAdminCustomer(action, coutryid, field.value, normalInput, addressId,fieldName);
695
+ }
696
+
697
+ function getAjaxReqestAdminCustomer(action, selectCountry, stateId, normalImput, addressId,fieldName) {
698
+
699
+ var request = new Ajax.Request(action,
700
+ {
701
+ method: 'GET',
702
+ onSuccess: function (data) {
703
+ $('_item' + addressId + 'city').replace('<select id="_item' + addressId + 'city" name="address[' + fieldName + '][city]" class="required-entry">' +
704
+ '<option value=""></option>' + convertJsonToHtml(data.responseText, this) +
705
+ '</select>');
706
+ },
707
+ onFailure: $('_item' + addressId + 'city').replace(normalImput),
708
+ parameters: {city_id: stateId, country_id: selectCountry}
709
+ }
710
+ );
711
+ }
712
+
713
+ function convertJsonToHtml(data, ship) {
714
+
715
+ var jsonData = data.evalJSON();
716
+
717
+ if (jsonData.length == 0) {
718
+ ship.replace(normalImput);
719
+ return;
720
+ }
721
+ htmlData = '';
722
+
723
+ jsonData.each(function (item) {
724
+ htmlData += '<option value="' + item.cityname + '">' + item.cityname + '</option>';
725
+
726
+ });
727
+
728
+ return htmlData;
729
+ }
730
+ //]]>
731
+ </script>
732
+ </td>
733
+ </tr>
734
+ </table>
app/design/adminhtml/default/default/template/romcity/sales/order/address/form.phtml ADDED
@@ -0,0 +1,94 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magentocommerce.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magentocommerce.com for more information.
20
+ *
21
+ * @category design
22
+ * @package default_default
23
+ * @copyright Copyright (c) 2012 Magento Inc. (http://www.magentocommerce.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <div>
28
+ <ul class="messages">
29
+ <li class="notice-msg">
30
+ <ul>
31
+ <li><?php echo Mage::helper('sales')->__('Changing address information will not recalculate shipping, tax or other order amount.') ?></li>
32
+ </ul>
33
+ </li>
34
+ </ul>
35
+ </div>
36
+ <div class="entry-edit">
37
+ <div class="entry-edit-head">
38
+ <h4 class="icon-head fieldset-legend"><?php echo $this->getHeaderText() ?></h4>
39
+ </div>
40
+ <div class="fieldset">
41
+ <?php echo $this->getForm()->toHtml() ?>
42
+ </div>
43
+ <script type="text/javascript">
44
+ function optchange_region_id(field,action){
45
+
46
+
47
+
48
+ var normalImput = '<input id="city" name="city" value="" class=" required-entry input-text required-entry" type="text">';
49
+ var selectCountry = $('country_id').value;
50
+ var selectedCity = field.value;
51
+
52
+ Event.observe($('country_id'), 'change', function(){
53
+ $('city').replace('<input id="city" name="city" value="" class=" required-entry input-text required-entry" type="text">');
54
+ });
55
+
56
+ var request = new Ajax.Request(action,
57
+ {
58
+ method: 'GET',
59
+ onSuccess: function (data) {
60
+ $('city').replace('<select id="city" name="city" class=" required-entry input-text required-entry">' +
61
+ '<option value=""></option>' + convertJsonToHtml(data.responseText, this,selectedCity) +
62
+ '</select>');
63
+ },
64
+ onFailure: $('city').replace(normalImput),
65
+ parameters: {city_id: field.value, country_id: selectCountry}
66
+ }
67
+ );
68
+ }
69
+ function convertJsonToHtml(data, ship, selectedCity) {
70
+
71
+ var jsonData = data.evalJSON();
72
+
73
+ if (jsonData.length == 0) {
74
+ ship.replace(normalImput);
75
+ return;
76
+ }
77
+
78
+ console.log(jsonData);
79
+
80
+ htmlData = '';
81
+
82
+ jsonData.each(function (item) {
83
+ if (item.cityname == selectedCity) {
84
+ htmlData += '<option value="' + item.cityname + '" selected>' + item.cityname + '</option>';
85
+ } else {
86
+ htmlData += '<option value="' + item.cityname + '">' + item.cityname + '</option>';
87
+ }
88
+
89
+ });
90
+
91
+ return htmlData;
92
+ }
93
+ </script>
94
+ </div>
app/design/adminhtml/default/default/template/romcity/sales/order/create/form/address.phtml ADDED
@@ -0,0 +1,157 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category design
22
+ * @package default_default
23
+ * @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ if ($this->getIsShipping()):
27
+ $_fieldsContainerId = 'order-shipping_address_fields';
28
+ $_addressChoiceContainerId = 'order-shipping_address_choice';
29
+ ?>
30
+ <script type="text/javascript">
31
+ order.shippingAddressContainer = '<?php echo $_fieldsContainerId ?>';
32
+ order.setAddresses(<?php echo $this->getAddressCollectionJson() ?>);
33
+ </script>
34
+ <?php
35
+ else:
36
+ $_fieldsContainerId = 'order-billing_address_fields';
37
+ $_addressChoiceContainerId = 'order-billing_address_choice';
38
+ ?>
39
+ <script type="text/javascript">
40
+ order.billingAddressContainer = '<?php echo $_fieldsContainerId ?>';
41
+ </script>
42
+ <?php
43
+ endif; ?>
44
+ <div class="entry-edit">
45
+
46
+ <div class="entry-edit-head">
47
+ <h4 class="icon-head fieldset-legend <?php echo $this->getHeaderCssClass() ?>"><?php echo $this->getHeaderText() ?></h4>
48
+ </div>
49
+
50
+ <fieldset class="np">
51
+ <div id="<?php echo $_addressChoiceContainerId ?>" class="order-choose-address">
52
+ <?php echo Mage::helper('sales')->__('Select from existing customer addresses:') ?><br/>
53
+ <?php $_id = $this->getForm()->getHtmlIdPrefix() . 'customer_address_id' ?>
54
+ <select id="<?php echo $_id ?>"
55
+ name="<?php echo $this->getForm()->getHtmlNamePrefix() ?>[customer_address_id]" style="width:97.5%;"
56
+ onchange="changeAddress(this, '<?php echo $_fieldsContainerId ?>')">
57
+ <option value=""><?php echo Mage::helper('sales')->__('Add New Address') ?></option>
58
+ <?php foreach ($this->getAddressCollection() as $_address): ?>
59
+ <?php //if($this->getAddressAsString($_address)!=$this->getAddressAsString($this->getAddress())): ?>
60
+ <option city="<?php echo $_address->getData('city') ?>"
61
+ value="<?php echo $_address->getId() ?>"<?php if ($_address->getId() == $this->getAddressId()): ?> selected="selected"<?php endif; ?>>
62
+ <?php echo $this->getAddressAsString($_address) ?>
63
+ </option>
64
+ <?php //endif; ?>
65
+ <?php endforeach; ?>
66
+
67
+ </select>
68
+ <br/>
69
+ <?php if ($this->getIsShipping()): ?>
70
+ <input type="checkbox" id="order-shipping_same_as_billing" name="shipping_same_as_billing"
71
+ onclick="order.setShippingAsBilling(this.checked)"
72
+ <?php if ($this->getIsAsBilling()): ?>checked<?php endif; ?>/>
73
+ <label for="order-shipping_same_as_billing"
74
+ class="no-float"><?php echo Mage::helper('sales')->__('Same As Billing Address') ?></label>
75
+ <?php else: ?>
76
+ &nbsp;
77
+ <?php endif; ?>
78
+ </div>
79
+
80
+ <div class="order-address" id="<?php echo $_fieldsContainerId ?>">
81
+ <div class="content">
82
+ <?php echo $this->getForm()->toHtml() ?>
83
+ </div>
84
+ <div class="order-save-in-address-book">
85
+ <input name="<?php echo $this->getForm()->getHtmlNamePrefix() ?>[save_in_address_book]" type="checkbox"
86
+ id="<?php echo $this->getForm()->getHtmlIdPrefix() ?>save_in_address_book"
87
+ value="1" <?php if (!$this->getDontSaveInAddressBook() && $this->getAddress()->getSaveInAddressBook()): ?> checked="checked"<?php endif; ?>/>
88
+ <label
89
+ for="<?php echo $this->getForm()->getHtmlIdPrefix() ?>save_in_address_book"><?php echo Mage::helper('sales')->__('Save in address book') ?></label>
90
+ </div>
91
+ </div>
92
+ <?php $hideElement = 'address-' . ($this->getIsShipping() ? 'shipping' : 'billing') . '-overlay'; ?>
93
+ <div style="display:none;" id="<?php echo $hideElement ?>" class="overlay">
94
+ <span><?php echo $this->__('Shipping address selection is not applicable') ?></span></div>
95
+ <script type="text/javascript">
96
+ order.bindAddressFields('<?php echo $_fieldsContainerId ?>');
97
+ order.bindAddressFields('<?php echo $_addressChoiceContainerId ?>');
98
+ <?php if($this->getIsShipping() && $this->getIsAsBilling()): ?>
99
+ order.disableShippingAddress(true);
100
+ <?php endif; ?>
101
+ </script>
102
+ <?php $orderArea = str_replace('_fields', '', str_replace('order-', '', $_fieldsContainerId)) ?>
103
+
104
+ <script type="text/javascript">
105
+
106
+ function changeAddress(select, area) {
107
+ order.selectAddress(select, area);
108
+ var selectedCity = $(select).options[select.selectedIndex].getAttribute('city');
109
+ optchange_order_billing_address_region_id('order-billing_address_region_id', selectedCity)
110
+ }
111
+
112
+ function syncCity(field) {
113
+ if ($('order-shipping_same_as_billing').checked) {
114
+ var billCity = field.value;
115
+ var shipCity = $('order-shipping_address_city');
116
+ shipCity.value = billCity;
117
+ order.setShippingAsBilling(true);
118
+ }
119
+ }
120
+
121
+ function optchange_order_billing_address_region_id(filed, selectedCity) {
122
+ var areSel_billing = '<?php echo $orderArea?>';
123
+ var fieldSelCountry_billing = 'order-billing_address_country_id';
124
+ var fieldSelCity_billing = 'order-billing_address_city';
125
+ var selElementReg = $(filed).value;
126
+ var selElementCountry = $(fieldSelCountry_billing).value;
127
+ var action = '<?php echo $this->getUrl('citydropdownadmin/adminhtml_index/cities'); ?>';
128
+ var normalInput = '<input id="' + fieldSelCity_billing + '" name="order[' + areSel_billing + '][city]" value="" onchange="syncCity(this)" class=" required-entry rom-city input-text required-entry">';
129
+
130
+ getAjaxReqestAdminCustomer_billing(action, selElementCountry, selElementReg, normalInput, fieldSelCity_billing, areSel_billing, selectedCity)
131
+ }
132
+
133
+ function getAjaxReqestAdminCustomer_billing(action, selectCountry, stateId, normalImput, fieldSelCity_billing, areSel_billing, selectedCity) {
134
+
135
+ var request = new Ajax.Request(action,
136
+ {
137
+ method: 'GET',
138
+ onSuccess: function (data) {
139
+ $(fieldSelCity_billing).replace('<select id="' + fieldSelCity_billing + '" name="order[' + areSel_billing + '][city]" onchange="syncCity(this)" class="required-entry">' +
140
+ '<option value=""></option>' + convertJsonToHtmlOrder(data.responseText, this, normalImput) +
141
+ '</select>');
142
+ var shipCity = $('order-billing_address_city');
143
+ shipCity.value = selectedCity;
144
+ if($('order-shipping_same_as_billing').checked){
145
+ order.setShippingAsBilling(true);
146
+ }
147
+ },
148
+ onFailure: $(fieldSelCity_billing).replace(normalImput),
149
+ parameters: {city_id: stateId, country_id: selectCountry}
150
+ }
151
+ );
152
+ }
153
+
154
+
155
+ </script>
156
+ </fieldset>
157
+ </div>
app/design/adminhtml/default/default/template/romcity/sales/order/create/form/ship_address.phtml ADDED
@@ -0,0 +1,206 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category design
22
+ * @package default_default
23
+ * @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ if ($this->getIsShipping()):
27
+ $_fieldsContainerId = 'order-shipping_address_fields';
28
+ $_addressChoiceContainerId = 'order-shipping_address_choice';
29
+ ?>
30
+ <script type="text/javascript">
31
+ order.shippingAddressContainer = '<?php echo $_fieldsContainerId ?>';
32
+ order.setAddresses(<?php echo $this->getAddressCollectionJson() ?>);
33
+ </script>
34
+ <?php
35
+ else:
36
+ $_fieldsContainerId = 'order-billing_address_fields';
37
+ $_addressChoiceContainerId = 'order-billing_address_choice';
38
+ ?>
39
+ <script type="text/javascript">
40
+ order.billingAddressContainer = '<?php echo $_fieldsContainerId ?>';
41
+ </script>
42
+ <?php
43
+ endif; ?>
44
+ <div class="entry-edit">
45
+
46
+ <div class="entry-edit-head">
47
+ <h4 class="icon-head fieldset-legend <?php echo $this->getHeaderCssClass() ?>"><?php echo $this->getHeaderText() ?></h4>
48
+ </div>
49
+
50
+ <fieldset class="np">
51
+ <div id="<?php echo $_addressChoiceContainerId ?>" class="order-choose-address">
52
+ <?php echo Mage::helper('sales')->__('Select from existing customer addresses:') ?><br/>
53
+ <?php $_id = $this->getForm()->getHtmlIdPrefix() . 'customer_address_id' ?>
54
+ <select id="<?php echo $_id ?>"
55
+ name="<?php echo $this->getForm()->getHtmlNamePrefix() ?>[customer_address_id]" style="width:97.5%;"
56
+ onchange="changeshipAddress(this, '<?php echo $_fieldsContainerId ?>')">
57
+ <option value=""><?php echo Mage::helper('sales')->__('Add New Address') ?></option>
58
+ <?php foreach ($this->getAddressCollection() as $_address): ?>
59
+ <?php //if($this->getAddressAsString($_address)!=$this->getAddressAsString($this->getAddress())): ?>
60
+ <option
61
+ city="<?php echo $_address->getData('city') ?>"
62
+ value="<?php echo $_address->getId() ?>"<?php if ($_address->getId() == $this->getAddressId()): ?> selected="selected"<?php endif; ?>>
63
+ <?php echo $this->getAddressAsString($_address) ?>
64
+ </option>
65
+ <?php //endif; ?>
66
+ <?php endforeach; ?>
67
+
68
+ </select>
69
+ <br/>
70
+ <?php if ($this->getIsShipping()): ?>
71
+ <input type="checkbox" id="order-shipping_same_as_billing" name="shipping_same_as_billing"
72
+ onclick="setBillingAsSshippingCity(this)"
73
+ <?php if ($this->getIsAsBilling()): ?>checked<?php endif; ?>/>
74
+ <label for="order-shipping_same_as_billing"
75
+ class="no-float"><?php echo Mage::helper('sales')->__('Same As Billing Address') ?></label>
76
+ <?php else: ?>
77
+ &nbsp;
78
+ <?php endif; ?>
79
+ </div>
80
+
81
+ <div class="order-address" id="<?php echo $_fieldsContainerId ?>">
82
+ <div class="content">
83
+ <?php echo $this->getForm()->toHtml() ?>
84
+ </div>
85
+ <div class="order-save-in-address-book">
86
+ <input name="<?php echo $this->getForm()->getHtmlNamePrefix() ?>[save_in_address_book]" type="checkbox"
87
+ id="<?php echo $this->getForm()->getHtmlIdPrefix() ?>save_in_address_book"
88
+ value="1" <?php if (!$this->getDontSaveInAddressBook() && $this->getAddress()->getSaveInAddressBook()): ?> checked="checked"<?php endif; ?>/>
89
+ <label
90
+ for="<?php echo $this->getForm()->getHtmlIdPrefix() ?>save_in_address_book"><?php echo Mage::helper('sales')->__('Save in address book') ?></label>
91
+ </div>
92
+ </div>
93
+ <?php $hideElement = 'address-' . ($this->getIsShipping() ? 'shipping' : 'billing') . '-overlay'; ?>
94
+ <div style="display:none;" id="<?php echo $hideElement ?>" class="overlay">
95
+ <span><?php echo $this->__('Shipping address selection is not applicable') ?></span></div>
96
+ <script type="text/javascript">
97
+ order.bindAddressFields('<?php echo $_fieldsContainerId ?>');
98
+ order.bindAddressFields('<?php echo $_addressChoiceContainerId ?>');
99
+ <?php if($this->getIsShipping() && $this->getIsAsBilling()): ?>
100
+ order.disableShippingAddress(true);
101
+ <?php endif; ?>
102
+ </script>
103
+ <?php $orderArea = str_replace('_fields', '', str_replace('order-', '', $_fieldsContainerId)) ?>
104
+ <script type="text/javascript">
105
+
106
+ $('order-billing_address_country_id').observe('change', function (event) {
107
+ resetCityBill();
108
+ });
109
+
110
+ function changeshipAddress(select, area) {
111
+ order.selectAddress(select, area);
112
+ var selectedCity = $(select).options[select.selectedIndex].getAttribute('city');
113
+ optchange_order_shipping_address_region_id('order-shipping_address_region_id', selectedCity)
114
+ }
115
+
116
+ varienGlobalEvents.attachEventHandler("address_country_changed", function (arg) {
117
+ //console.log($(arg))
118
+ if ($(arg).id == 'order-shipping_address_country_id') {
119
+ resetCityShip(false);
120
+ var shipRegion = $('order-shipping_address_region_id');
121
+ shipRegion.value = '';
122
+ if ($('order-shipping_same_as_billing').checked) {
123
+ resetCityShip(true);
124
+ var billCity = $('order-billing_address_city').value;
125
+ var shipCity = $('order-shipping_address_city');
126
+ shipCity.value = billCity;
127
+ }
128
+ }
129
+ });
130
+
131
+ function resetCityShip(sameAs) {
132
+ if (sameAs) {
133
+ var normalInput = '<input id="order-shipping_address_city" name="order[shipping_address][city]" value="" class=" required-entry input-text required-entry" type="text" disabled>';
134
+ } else {
135
+ var normalInput = '<input id="order-shipping_address_city" name="order[shipping_address][city]" value="" class=" required-entry input-text required-entry" type="text">';
136
+
137
+ }
138
+ var shipCity = $('order-shipping_address_city');
139
+ var shipRegion = $('order-shipping_address_region_id');
140
+ shipRegion.value = $('order-billing_address_region_id').value;
141
+ shipCity.replace(normalInput)
142
+ }
143
+
144
+ function resetCityBill() {
145
+ var normalInput = '<input id="order-billing_address_city" name="order[billing_address][city]" value="" onchange="syncCity(this)" class=" required-entry rom-city input-text required-entry">';
146
+ var shipCity = $('order-billing_address_city');
147
+ var shipRegion = $('order-billing_address_region_id');
148
+ shipRegion.value = '';
149
+ shipCity.replace(normalInput)
150
+ }
151
+
152
+ function setBillingAsSshippingCity(field) {
153
+ order.setShippingAsBilling(field.checked);
154
+ }
155
+
156
+ function optchange_order_shipping_address_region_id(field, selectedCity) {
157
+ var areSel_shipping = '<?php echo $orderArea?>';
158
+ var fieldSelCountry_shipping = 'order-shipping_address_country_id';
159
+ var fieldSelCity_shipping = 'order-shipping_address_city';
160
+ var selElementReg = $(field).value;
161
+ var selElementCountry = $(fieldSelCountry_shipping).value;
162
+ var action = '<?php echo $this->getUrl('citydropdownadmin/adminhtml_index/cities'); ?>';
163
+ var normalInput = '<input id="' + fieldSelCity_shipping + '" name="order[' + areSel_shipping + '][city]" value="" class=" required-entry rom-city input-text required-entry">';
164
+
165
+ getAjaxReqestAdminCustomer_shipping(action, selElementCountry, selElementReg, normalInput, fieldSelCity_shipping, areSel_shipping, selectedCity)
166
+
167
+ }
168
+
169
+ function getAjaxReqestAdminCustomer_shipping(action, selectCountry, stateId, normalImput, fieldSelCity_shipping, areSel_shipping, selectedCity) {
170
+ var request = new Ajax.Request(action,
171
+ {
172
+ method: 'GET',
173
+ onSuccess: function (data) {
174
+ $(fieldSelCity_shipping).replace('<select id="' + fieldSelCity_shipping + '" name="order[' + areSel_shipping + '][city]" class="required-entry">' +
175
+ '<option value=""></option>' + convertJsonToHtmlOrder(data.responseText, this, normalImput) +
176
+ '</select>');
177
+ var shipCity = $('order-shipping_address_city');
178
+ shipCity.value = selectedCity;
179
+ },
180
+ onFailure: $(fieldSelCity_shipping).replace(normalImput),
181
+ parameters: {city_id: stateId, country_id: selectCountry}
182
+ }
183
+ );
184
+ }
185
+
186
+ function convertJsonToHtmlOrder(data, ship, normalImput) {
187
+
188
+ var jsonData = data.evalJSON();
189
+
190
+ if (jsonData.length == 0) {
191
+ ship.replace(normalImput);
192
+ return;
193
+ }
194
+ htmlData = '';
195
+
196
+ jsonData.each(function (item) {
197
+ htmlData += '<option value="' + item.cityname + '">' + item.cityname + '</option>';
198
+
199
+ });
200
+
201
+ return htmlData;
202
+ }
203
+
204
+ </script>
205
+ </fieldset>
206
+ </div>
app/design/frontend/base/default/layout/romcity/romcity.xml ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <layout version="0.1.0">
3
+ <default>
4
+ <reference name="head">
5
+ <action method="addJs"><script>eadesign/romcity/field.js</script></action>
6
+ </reference>
7
+ </default>
8
+ <checkout_onepage_index>
9
+ <reference name="checkout.onepage.billing">
10
+ <action method="setTemplate">
11
+ <template>romcity/checkout/onepage/billing.phtml</template>
12
+ </action>
13
+ <block type="persistent/form_remember" name="persistent.remember.me" template="persistent/remember_me.phtml" />
14
+ <block type="core/template" name="persistent.remember.me.tooltip" template="persistent/remember_me_tooltip.phtml" />
15
+ </reference>
16
+ <reference name="checkout.onepage.shipping">
17
+ <action method="setTemplate">
18
+ <template>romcity/checkout/onepage/shipping.phtml</template>
19
+ </action>
20
+ </reference>
21
+ </checkout_onepage_index>
22
+
23
+ <customer_address_form>
24
+ <reference name="customer_address_edit">
25
+ <action method="setTemplate">
26
+ <template>romcity/customer/address/edit.phtml</template>
27
+ </action>
28
+ </reference>
29
+ </customer_address_form>
30
+ </layout>
app/design/frontend/base/default/template/romcity/checkout/onepage/billing.phtml ADDED
@@ -0,0 +1,351 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+
28
+ <form id="co-billing-form" action="">
29
+ <fieldset>
30
+ <ul class="form-list">
31
+ <?php if ($this->customerHasAddresses()): ?>
32
+ <li class="wide">
33
+ <label
34
+ for="billing-address-select"><?php echo $this->__('Select a billing address from your address book or enter a new address.') ?></label>
35
+
36
+ <div class="input-box">
37
+ <?php echo $this->getAddressesHtmlSelect('billing') ?>
38
+ </div>
39
+ </li>
40
+ <?php endif; ?>
41
+ <li id="billing-new-address-form"<?php if ($this->customerHasAddresses()): ?> style="display:none;"<?php endif; ?>>
42
+ <fieldset>
43
+ <input type="hidden" name="billing[address_id]" value="<?php echo $this->getAddress()->getId() ?>"
44
+ id="billing:address_id"/>
45
+ <ul>
46
+ <li class="fields"><?php echo $this->getLayout()->createBlock('customer/widget_name')->setObject($this->getAddress()->getFirstname() ? $this->getAddress() : $this->getQuote()->getCustomer())->setForceUseCustomerRequiredAttributes(!$this->isCustomerLoggedIn())->setFieldIdFormat('billing:%s')->setFieldNameFormat('billing[%s]')->toHtml() ?></li>
47
+ <li class="fields">
48
+ <div class="field">
49
+ <label for="billing:company"><?php echo $this->__('Company') ?></label>
50
+
51
+ <div class="input-box">
52
+ <input type="text" id="billing:company" name="billing[company]"
53
+ value="<?php echo $this->escapeHtml($this->getAddress()->getCompany()) ?>"
54
+ title="<?php echo $this->__('Company') ?>"
55
+ class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('company') ?>"/>
56
+ </div>
57
+ </div>
58
+ <?php if (!$this->isCustomerLoggedIn()): ?>
59
+ <div class="field">
60
+ <label for="billing:email"
61
+ class="required"><em>*</em><?php echo $this->__('Email Address') ?></label>
62
+
63
+ <div class="input-box">
64
+ <input type="text" name="billing[email]" id="billing:email"
65
+ value="<?php echo $this->escapeHtml($this->getAddress()->getEmail()) ?>"
66
+ title="<?php echo $this->__('Email Address') ?>"
67
+ class="input-text validate-email required-entry"/>
68
+ </div>
69
+ </div>
70
+ <?php endif; ?>
71
+ </li>
72
+ <?php $_streetValidationClass = $this->helper('customer/address')->getAttributeValidationClass('street'); ?>
73
+ <li class="wide">
74
+ <label for="billing:street1" class="required"><em>*</em><?php echo $this->__('Address') ?>
75
+ </label>
76
+
77
+ <div class="input-box">
78
+ <input type="text" title="<?php echo $this->__('Street Address') ?>"
79
+ name="billing[street][]" id="billing:street1"
80
+ value="<?php echo $this->escapeHtml($this->getAddress()->getStreet(1)) ?>"
81
+ class="input-text <?php echo $_streetValidationClass ?>"/>
82
+ </div>
83
+ </li>
84
+ <?php $_streetValidationClass = trim(str_replace('required-entry', '', $_streetValidationClass)); ?>
85
+ <?php for ($_i = 2, $_n = $this->helper('customer/address')->getStreetLines(); $_i <= $_n; $_i++): ?>
86
+ <li class="wide">
87
+ <div class="input-box">
88
+ <input type="text" title="<?php echo $this->__('Street Address %s', $_i) ?>"
89
+ name="billing[street][]" id="billing:street<?php echo $_i ?>"
90
+ value="<?php echo $this->escapeHtml($this->getAddress()->getStreet($_i)) ?>"
91
+ class="input-text <?php echo $_streetValidationClass ?>"/>
92
+ </div>
93
+ </li>
94
+ <?php endfor; ?>
95
+ <?php if ($this->helper('customer/address')->isVatAttributeVisible()) : ?>
96
+ <li class="wide">
97
+ <label for="billing:vat_id"><?php echo $this->__('VAT Number') ?></label>
98
+
99
+ <div class="input-box">
100
+ <input type="text" id="billing:vat_id" name="billing[vat_id]"
101
+ value="<?php echo $this->escapeHtml($this->getAddress()->getVatId()) ?>"
102
+ title="<?php echo $this->__('VAT Number') ?>"
103
+ class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('vat_id') ?>"/>
104
+ </div>
105
+ </li>
106
+ <?php endif; ?>
107
+ <li class="fields">
108
+ <div class="field">
109
+ <label for="billing:city" class="required"><em>*</em><?php echo $this->__('City') ?>
110
+ </label>
111
+
112
+ <div class="input-box">
113
+ <input type="text" title="<?php echo $this->__('City') ?>" name="billing[city]"
114
+ value="<?php echo $this->escapeHtml($this->getAddress()->getCity()) ?>"
115
+ class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('city') ?>"
116
+ id="billing:city"/>
117
+ </div>
118
+ </div>
119
+ <div class="field">
120
+ <label for="billing:region_id"
121
+ class="required"><em>*</em><?php echo $this->__('State/Province') ?></label>
122
+
123
+ <div class="input-box">
124
+ <select id="billing:region_id" name="billing[region_id]"
125
+ title="<?php echo $this->__('State/Province') ?>" class="validate-select"
126
+ style="display:none;">
127
+ <option
128
+ value=""><?php echo $this->__('Please select region, state or province') ?></option>
129
+ </select>
130
+ <script type="text/javascript">
131
+ //<![CDATA[
132
+ $('billing:region_id').setAttribute('defaultValue', "<?php echo $this->getAddress()->getRegionId() ?>");
133
+ //]]>
134
+ </script>
135
+ <input type="text" id="billing:region" name="billing[region]"
136
+ value="<?php echo $this->escapeHtml($this->getAddress()->getRegion()) ?>"
137
+ title="<?php echo $this->__('State/Province') ?>"
138
+ class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('region') ?>"
139
+ style="display:none;"/>
140
+ </div>
141
+ </div>
142
+ </li>
143
+ <li class="fields">
144
+ <div class="field">
145
+ <label for="billing:postcode"
146
+ class="required"><em>*</em><?php echo $this->__('Zip/Postal Code') ?></label>
147
+
148
+ <div class="input-box">
149
+ <input type="text" title="<?php echo $this->__('Zip/Postal Code') ?>"
150
+ name="billing[postcode]" id="billing:postcode"
151
+ value="<?php echo $this->escapeHtml($this->getAddress()->getPostcode()) ?>"
152
+ class="input-text validate-zip-international <?php echo $this->helper('customer/address')->getAttributeValidationClass('postcode') ?>"/>
153
+ </div>
154
+ </div>
155
+ <div class="field">
156
+ <label for="billing:country_id"
157
+ class="required"><em>*</em><?php echo $this->__('Country') ?></label>
158
+
159
+ <div class="input-box">
160
+ <?php echo $this->getCountryHtmlSelect('billing') ?>
161
+ </div>
162
+ </div>
163
+ </li>
164
+ <li class="fields">
165
+ <div class="field">
166
+ <label for="billing:telephone"
167
+ class="required"><em>*</em><?php echo $this->__('Telephone') ?></label>
168
+
169
+ <div class="input-box">
170
+ <input type="text" name="billing[telephone]"
171
+ value="<?php echo $this->escapeHtml($this->getAddress()->getTelephone()) ?>"
172
+ title="<?php echo $this->__('Telephone') ?>"
173
+ class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('telephone') ?>"
174
+ id="billing:telephone"/>
175
+ </div>
176
+ </div>
177
+ <div class="field">
178
+ <label for="billing:fax"><?php echo $this->__('Fax') ?></label>
179
+
180
+ <div class="input-box">
181
+ <input type="text" name="billing[fax]"
182
+ value="<?php echo $this->escapeHtml($this->getAddress()->getFax()) ?>"
183
+ title="<?php echo $this->__('Fax') ?>"
184
+ class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('fax') ?>"
185
+ id="billing:fax"/>
186
+ </div>
187
+ </div>
188
+ </li>
189
+ <?php if (!$this->isCustomerLoggedIn()): ?>
190
+
191
+ <?php $_dob = $this->getLayout()->createBlock('customer/widget_dob') ?>
192
+ <?php $_gender = $this->getLayout()->createBlock('customer/widget_gender') ?>
193
+ <?php if ($_dob->isEnabled() || $_gender->isEnabled()): ?>
194
+ <li class="fields">
195
+ <?php if ($_dob->isEnabled()): ?>
196
+ <div class="field">
197
+ <?php echo $_dob->setDate($this->getQuote()->getCustomerDob())->setFieldIdFormat('billing:%s')->setFieldNameFormat('billing[%s]')->toHtml() ?>
198
+ </div>
199
+ <?php endif; ?>
200
+ <?php if ($_gender->isEnabled()): ?>
201
+ <div class="field">
202
+ <?php echo $_gender->setGender($this->getQuote()->getCustomerGender())->setFieldIdFormat('billing:%s')->setFieldNameFormat('billing[%s]')->toHtml() ?>
203
+ </div>
204
+ <?php endif ?>
205
+ </li>
206
+ <?php endif ?>
207
+
208
+ <?php $_taxvat = $this->getLayout()->createBlock('customer/widget_taxvat') ?>
209
+ <?php if ($_taxvat->isEnabled()): ?>
210
+ <li>
211
+ <?php echo $_taxvat->setTaxvat($this->getQuote()->getCustomerTaxvat())->setFieldIdFormat('billing:%s')->setFieldNameFormat('billing[%s]')->toHtml() ?>
212
+ </li>
213
+ <?php endif ?>
214
+
215
+ <li class="fields" id="register-customer-password">
216
+ <div class="field">
217
+ <label for="billing:customer_password"
218
+ class="required"><em>*</em><?php echo $this->__('Password') ?></label>
219
+
220
+ <div class="input-box">
221
+ <input type="password" name="billing[customer_password]"
222
+ id="billing:customer_password"
223
+ title="<?php echo $this->__('Password') ?>"
224
+ class="input-text required-entry validate-password"/>
225
+ </div>
226
+ </div>
227
+ <div class="field">
228
+ <label for="billing:confirm_password"
229
+ class="required"><em>*</em><?php echo $this->__('Confirm Password') ?>
230
+ </label>
231
+
232
+ <div class="input-box">
233
+ <input type="password" name="billing[confirm_password]"
234
+ title="<?php echo $this->__('Confirm Password') ?>"
235
+ id="billing:confirm_password"
236
+ class="input-text required-entry validate-cpassword"/>
237
+ </div>
238
+ </div>
239
+ </li>
240
+ <?php endif; ?>
241
+ <?php if ($this->isCustomerLoggedIn() && $this->customerHasAddresses()): ?>
242
+ <li class="control">
243
+ <input type="checkbox" name="billing[save_in_address_book]" value="1"
244
+ title="<?php echo $this->__('Save in address book') ?>"
245
+ id="billing:save_in_address_book"
246
+ onchange="if(window.shipping) shipping.setSameAsBilling(false);"<?php if ($this->getAddress()->getSaveInAddressBook()): ?> checked="checked"<?php endif; ?>
247
+ class="checkbox"/><label
248
+ for="billing:save_in_address_book"><?php echo $this->__('Save in address book') ?></label>
249
+ </li>
250
+ <?php else: ?>
251
+ <li class="no-display"><input type="hidden" name="billing[save_in_address_book]" value="1"/>
252
+ </li>
253
+ <?php endif; ?>
254
+ <?php echo $this->getChildHtml('form.additional.info'); ?>
255
+ </ul>
256
+ </fieldset>
257
+ </li>
258
+ <?php /* Extensions placeholder */ ?>
259
+ <?php echo $this->getChildHtml('checkout.onepage.billing.extra') ?>
260
+ <?php if ($this->canShip()): ?>
261
+ <li class="control">
262
+ <input type="radio" name="billing[use_for_shipping]" id="billing:use_for_shipping_yes"
263
+ value="1"<?php if ($this->isUseBillingAddressForShipping()) { ?> checked="checked"<?php } ?>
264
+ title="<?php echo $this->__('Ship to this address') ?>"
265
+ onclick="$('shipping:same_as_billing').checked = true;" class="radio"/><label
266
+ for="billing:use_for_shipping_yes"><?php echo $this->__('Ship to this address') ?></label></li>
267
+ <li class="control">
268
+ <input type="radio" name="billing[use_for_shipping]" id="billing:use_for_shipping_no"
269
+ value="0"<?php if (!$this->isUseBillingAddressForShipping()) { ?> checked="checked"<?php } ?>
270
+ title="<?php echo $this->__('Ship to different address') ?>"
271
+ onclick="$('shipping:same_as_billing').checked = false;" class="radio"/><label
272
+ for="billing:use_for_shipping_no"><?php echo $this->__('Ship to different address') ?></label>
273
+ </li>
274
+ <?php endif; ?>
275
+ </ul>
276
+ <?php if (!$this->canShip()): ?>
277
+ <input type="hidden" name="billing[use_for_shipping]" value="1"/>
278
+ <?php endif; ?>
279
+ <div class="buttons-set" id="billing-buttons-container">
280
+ <p class="required"><?php echo $this->__('* Required Fields') ?></p>
281
+ <button type="button" title="<?php echo $this->__('Continue') ?>" class="button" onclick="beforeBillSave()">
282
+ <span><span><?php echo $this->__('Continue') ?></span></span></button>
283
+ <span class="please-wait" id="billing-please-wait" style="display:none;">
284
+ <img src="<?php echo $this->getSkinUrl('images/opc-ajax-loader.gif') ?>"
285
+ alt="<?php echo $this->__('Loading next step...') ?>"
286
+ title="<?php echo $this->__('Loading next step...') ?>"
287
+ class="v-middle"/> <?php echo $this->__('Loading next step...') ?>
288
+ </span>
289
+ </div>
290
+ </fieldset>
291
+ </form>
292
+ <script type="text/javascript">
293
+ //<![CDATA[
294
+ var billing = new Billing('co-billing-form', '<?php echo $this->getUrl('checkout/onepage/getAddress') ?>address/', '<?php echo $this->getUrl('checkout/onepage/saveBilling') ?>');
295
+ var billingForm = new VarienForm('co-billing-form');
296
+
297
+ //billingForm.setElementsRelation('billing:country_id', 'billing:region', '<?php echo $this->getUrl('directory/json/childRegion') ?>', '<?php echo $this->__('Select State/Province...') ?>');
298
+ $('billing-address-select') && billing.newAddress(!$('billing-address-select').value);
299
+
300
+ var billingRegionUpdater = new RegionUpdater('billing:country_id', 'billing:region', 'billing:region_id', <?php echo $this->helper('directory')->getRegionJson() ?>, undefined, 'billing:postcode');
301
+ CITIES_ACTION = "<?php echo $this->getUrl('citydropdown/index/cities'); ?>";
302
+ //]]>
303
+ </script>
304
+ <script type="text/javascript">
305
+ //<![CDATA[
306
+ var normalImput = '<input type="text" class=" input-text required-entry absolute-advice bil1" title="City" value="" id="billing:city" name="billing[city]" autocomplete="off">';
307
+ var normalImputShip = '<input type="text" class=" input-text required-entry absolute-advice ship1" title="City" value="" id="shipping:city" name="shipping[city]" autocomplete="off">';
308
+
309
+ <?php if($this->getAddress()->getRegionId()): ?>
310
+ document.observe("dom:loaded", function() {
311
+ var action = CITIES_ACTION;
312
+ var selectCountry = $('billing:country_id').value;
313
+ var stateId = $('billing:region_id').value;
314
+ var selectedCity = '<?php echo $this->escapeHtml($this->getAddress()->getCity()) ?>';
315
+ getAjaxReqest(action, selectCountry, stateId, normalImput,selectedCity)
316
+ });
317
+ <?php endif?>
318
+
319
+ Event.observe($('billing:region_id'), 'change', function (event) {
320
+ var selectedCity = false;
321
+ var action = CITIES_ACTION;
322
+ var selectCountry = $('billing:country_id').value;
323
+ var stateId = $('billing:region_id').value;
324
+ getAjaxReqest(action, selectCountry, stateId, normalImput,selectedCity)
325
+
326
+ });
327
+
328
+ Event.observe($('billing:country_id'), 'change', function (event) {
329
+ var shipCity = $('shipping:city');
330
+ $('billing:city').replace(normalImput);
331
+ if (shipCity != null) {
332
+ $('shipping:city').replace(normalImputShip);
333
+ }
334
+
335
+ });
336
+
337
+ function beforeBillSave() {
338
+ var selectedCity = false;
339
+ var action = CITIES_ACTION;
340
+ var selectCountry = $('billing:country_id').value;
341
+ var stateId = $('billing:region_id').value;
342
+ if (document.getElementById('billing:use_for_shipping_yes').checked) {
343
+ getAjaxReqestShip(action, selectCountry, stateId, normalImputShip,selectedCity)
344
+ } else {
345
+ $('shipping:city').replace(normalImputShip);
346
+ }
347
+
348
+ billing.save()
349
+ }
350
+ //]]>
351
+ </script>
app/design/frontend/base/default/template/romcity/checkout/onepage/shipping.phtml ADDED
@@ -0,0 +1,188 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <form action="" id="co-shipping-form">
28
+ <ul class="form-list">
29
+ <?php if ($this->customerHasAddresses()): ?>
30
+ <li class="wide">
31
+ <label for="shipping-address-select"><?php echo $this->__('Select a shipping address from your address book or enter a new address.') ?></label>
32
+ <div class="input-box">
33
+ <?php echo $this->getAddressesHtmlSelect('shipping') ?>
34
+ </div>
35
+ </li>
36
+ <?php endif ?>
37
+ <li id="shipping-new-address-form"<?php if ($this->customerHasAddresses()): ?> style="display:none;"<?php endif ?>>
38
+ <fieldset>
39
+ <input type="hidden" name="shipping[address_id]" value="<?php echo $this->getAddress()->getId() ?>" id="shipping:address_id" />
40
+ <ul>
41
+ <li class="fields"><?php echo $this->getLayout()->createBlock('customer/widget_name')->setObject($this->getAddress())->setFieldIdFormat('shipping:%s')->setFieldNameFormat('shipping[%s]')->setFieldParams('onchange="shipping.setSameAsBilling(false)"')->toHtml() ?></li>
42
+ <li class="fields">
43
+ <div class="fields">
44
+ <label for="shipping:company"><?php echo $this->__('Company') ?></label>
45
+ <div class="input-box">
46
+ <input type="text" id="shipping:company" name="shipping[company]" value="<?php echo $this->escapeHtml($this->getAddress()->getCompany()) ?>" title="<?php echo $this->__('Company') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('company') ?>" onchange="shipping.setSameAsBilling(false);" />
47
+ </div>
48
+ </div>
49
+ </li>
50
+ <?php $_streetValidationClass = $this->helper('customer/address')->getAttributeValidationClass('street'); ?>
51
+ <li class="wide">
52
+ <label for="shipping:street1" class="required"><em>*</em><?php echo $this->__('Address') ?></label>
53
+ <div class="input-box">
54
+ <input type="text" title="<?php echo $this->__('Street Address') ?>" name="shipping[street][]" id="shipping:street1" value="<?php echo $this->escapeHtml($this->getAddress()->getStreet(1)) ?>" class="input-text <?php echo $_streetValidationClass ?>" onchange="shipping.setSameAsBilling(false);" />
55
+ </div>
56
+ </li>
57
+ <?php $_streetValidationClass = trim(str_replace('required-entry', '', $_streetValidationClass)); ?>
58
+ <?php for ($_i = 2, $_n = $this->helper('customer/address')->getStreetLines(); $_i <= $_n; $_i++): ?>
59
+ <li class="wide">
60
+ <div class="input-box">
61
+ <input type="text" title="<?php echo $this->__('Street Address %s', $_i) ?>" name="shipping[street][]" id="shipping:street<?php echo $_i ?>" value="<?php echo $this->escapeHtml($this->getAddress()->getStreet($_i)) ?>" class="input-text <?php echo $_streetValidationClass ?>" onchange="shipping.setSameAsBilling(false);" />
62
+ </div>
63
+ </li>
64
+ <?php endfor; ?>
65
+ <?php if ($this->helper('customer/address')->isVatAttributeVisible()) : ?>
66
+ <li class="wide">
67
+ <label for="billing:vat_id"><?php echo $this->__('VAT Number'); ?></label>
68
+ <div class="input-box">
69
+ <input type="text" id="shipping:vat_id" name="shipping[vat_id]" value="<?php echo $this->escapeHtml($this->getAddress()->getVatId()); ?>" title="<?php echo $this->__('VAT Number'); ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('vat_id') ?>" />
70
+ </div>
71
+ </li>
72
+ <?php endif; ?>
73
+ <li class="fields">
74
+ <div class="field">
75
+ <label for="shipping:city" class="required"><em>*</em><?php echo $this->__('City') ?></label>
76
+ <div class="input-box">
77
+ <input type="text" title="<?php echo $this->__('City') ?>" name="shipping[city]" value="<?php echo $this->escapeHtml($this->getAddress()->getCity()) ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('city') ?>" id="shipping:city" onchange="shipping.setSameAsBilling(false);" />
78
+ </div>
79
+ </div>
80
+ <div class="field">
81
+ <label for="shipping:region" class="required"><em>*</em><?php echo $this->__('State/Province') ?></label>
82
+ <div class="input-box">
83
+ <select id="shipping:region_id" name="shipping[region_id]" title="<?php echo $this->__('State/Province') ?>" class="validate-select" style="display:none;">
84
+ <option value=""><?php echo $this->__('Please select region, state or province') ?></option>
85
+ </select>
86
+ <script type="text/javascript">
87
+ //<![CDATA[
88
+ $('shipping:region_id').setAttribute('defaultValue', "<?php echo $this->getAddress()->getRegionId() ?>");
89
+ //]]>
90
+ </script>
91
+ <input type="text" id="shipping:region" name="shipping[region]" value="<?php echo $this->escapeHtml($this->getAddress()->getRegion()) ?>" title="<?php echo $this->__('State/Province') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('region') ?>" style="display:none;" />
92
+ </div>
93
+ </div>
94
+ </li>
95
+ <li class="fields">
96
+ <div class="field">
97
+ <label for="shipping:postcode" class="required"><em>*</em><?php echo $this->__('Zip/Postal Code') ?></label>
98
+ <div class="input-box">
99
+ <input type="text" title="<?php echo $this->__('Zip/Postal Code') ?>" name="shipping[postcode]" id="shipping:postcode" value="<?php echo $this->escapeHtml($this->getAddress()->getPostcode()) ?>" class="input-text validate-zip-international <?php echo $this->helper('customer/address')->getAttributeValidationClass('postcode') ?>" onchange="shipping.setSameAsBilling(false);" />
100
+ </div>
101
+ </div>
102
+ <div class="field">
103
+ <label for="shipping:country_id" class="required"><em>*</em><?php echo $this->__('Country') ?></label>
104
+ <div class="input-box">
105
+ <?php echo $this->getCountryHtmlSelect('shipping') ?>
106
+ </div>
107
+ </div>
108
+ </li>
109
+ <li class="fields">
110
+ <div class="field">
111
+ <label for="shipping:telephone" class="required"><em>*</em><?php echo $this->__('Telephone') ?></label>
112
+ <div class="input-box">
113
+ <input type="text" name="shipping[telephone]" value="<?php echo $this->escapeHtml($this->getAddress()->getTelephone()) ?>" title="<?php echo $this->__('Telephone') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('telephone') ?>" id="shipping:telephone" onchange="shipping.setSameAsBilling(false);" />
114
+ </div>
115
+ </div>
116
+ <div class="field">
117
+ <label for="shipping:fax"><?php echo $this->__('Fax') ?></label>
118
+ <div class="input-box">
119
+ <input type="text" name="shipping[fax]" value="<?php echo $this->escapeHtml($this->getAddress()->getFax()) ?>" title="<?php echo $this->__('Fax') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('fax') ?>" id="shipping:fax" onchange="shipping.setSameAsBilling(false);" />
120
+ </div>
121
+ </div>
122
+ </li>
123
+ <?php if ($this->isCustomerLoggedIn() && $this->customerHasAddresses()):?>
124
+ <li class="control">
125
+ <input type="checkbox" name="shipping[save_in_address_book]" value="1" title="<?php echo $this->__('Save in address book') ?>" id="shipping:save_in_address_book" onchange="shipping.setSameAsBilling(false);"<?php if ($this->getAddress()->getSaveInAddressBook()):?> checked="checked"<?php endif;?> class="checkbox" /><label for="shipping:save_in_address_book"><?php echo $this->__('Save in address book') ?></label></li>
126
+ <?php else:?>
127
+ <li class="no-display"><input type="hidden" name="shipping[save_in_address_book]" value="1" /></li>
128
+ <?php endif;?>
129
+ </ul>
130
+ </fieldset>
131
+ </li>
132
+ <li class="control">
133
+ <input type="checkbox" name="shipping[same_as_billing]" id="shipping:same_as_billing" value="1"<?php if($this->getAddress()->getSameAsBilling()): ?> checked="checked"<?php endif; ?> title="<?php echo $this->__('Use Billing Address') ?>" onclick="shipping.setSameAsBilling(this.checked)" class="checkbox" /><label for="shipping:same_as_billing"><?php echo $this->__('Use Billing Address') ?></label>
134
+ </li>
135
+ </ul>
136
+ <div class="buttons-set" id="shipping-buttons-container">
137
+ <p class="required"><?php echo $this->__('* Required Fields') ?></p>
138
+ <p class="back-link"><a href="#" onclick="checkout.back(); return false;"><small>&laquo; </small><?php echo $this->__('Back') ?></a></p>
139
+ <button type="button" class="button" title="<?php echo $this->__('Continue') ?>" onclick="shipping.save()"><span><span><?php echo $this->__('Continue') ?></span></span></button>
140
+ <span id="shipping-please-wait" class="please-wait" style="display:none;">
141
+ <img src="<?php echo $this->getSkinUrl('images/opc-ajax-loader.gif') ?>" alt="<?php echo $this->__('Loading next step...') ?>" title="<?php echo $this->__('Loading next step...') ?>" class="v-middle" /> <?php echo $this->__('Loading next step...') ?>
142
+ </span>
143
+ </div>
144
+ </form>
145
+ <script type="text/javascript">
146
+ //<![CDATA[
147
+ var shipping = new Shipping('co-shipping-form', '<?php echo $this->getUrl('checkout/onepage/getAddress') ?>address/', '<?php echo $this->getUrl('checkout/onepage/saveShipping') ?>',
148
+ '<?php echo $this->getUrl('checkout/onepage/shippingMethod') ?>');
149
+ var shippingForm = new VarienForm('co-shipping-form');
150
+ shippingForm.extraChildParams = ' onchange="shipping.setSameAsBilling(false);"';
151
+ //shippingForm.setElementsRelation('shipping:country_id', 'shipping:region', '<?php echo $this->getUrl('directory/json/childRegion') ?>', '<?php echo $this->__('Select State/Province...') ?>');
152
+ $('shipping-address-select') && shipping.newAddress(!$('shipping-address-select').value);
153
+
154
+ var shippingRegionUpdater = new RegionUpdater('shipping:country_id', 'shipping:region', 'shipping:region_id', <?php echo $this->helper('directory')->getRegionJson() ?>, undefined, 'shipping:postcode');
155
+ //]]>
156
+ </script>
157
+
158
+ <script type="text/javascript">
159
+ //<![CDATA[
160
+ var normalImputShip = '<input type="text" class=" input-text required-entry absolute-advice ship2" title="City" value="" id="shipping:city" name="shipping[city]" autocomplete="off">';
161
+
162
+ <?php if($this->getAddress()->getRegionId()): ?>
163
+ Event.observe($('shipping-address-select'), 'change', function (event) {
164
+ var action = CITIES_ACTION;
165
+ var selectCountry = $('shipping:country_id').value;
166
+ var stateId = $('shipping:region_id').value;
167
+ var selectedCity = '<?php echo $this->escapeHtml($this->getAddress()->getCity()) ?>';
168
+ getAjaxReqestShip(action, selectCountry, stateId, normalImput,selectedCity)
169
+ });
170
+ <?php endif?>
171
+
172
+ Event.observe($('shipping:region_id'), 'change', function (event) {
173
+ var selectedCity = false;
174
+ var action = CITIES_ACTION;
175
+ var selectCountry = $('shipping:country_id').value;
176
+ var stateId = $('shipping:region_id').value;
177
+ getAjaxReqestShip(action, selectCountry, stateId, normalImputShip,selectedCity)
178
+
179
+ });
180
+ Event.observe($('shipping:country_id'), 'change', function (event) {
181
+ var shippingCity = $('shipping:city');
182
+ if(shippingCity!=null)
183
+ {
184
+ $('shipping:city').replace(normalImputShip);
185
+ }
186
+ });
187
+ //]]>
188
+ </script>
app/design/frontend/base/default/template/romcity/customer/address/edit.phtml ADDED
@@ -0,0 +1,191 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Magento
4
+ *
5
+ * NOTICE OF LICENSE
6
+ *
7
+ * This source file is subject to the Academic Free License (AFL 3.0)
8
+ * that is bundled with this package in the file LICENSE_AFL.txt.
9
+ * It is also available through the world-wide-web at this URL:
10
+ * http://opensource.org/licenses/afl-3.0.php
11
+ * If you did not receive a copy of the license and are unable to
12
+ * obtain it through the world-wide-web, please send an email
13
+ * to license@magento.com so we can send you a copy immediately.
14
+ *
15
+ * DISCLAIMER
16
+ *
17
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
18
+ * versions in the future. If you wish to customize Magento for your
19
+ * needs please refer to http://www.magento.com for more information.
20
+ *
21
+ * @category design
22
+ * @package base_default
23
+ * @copyright Copyright (c) 2006-2014 X.commerce, Inc. (http://www.magento.com)
24
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
25
+ */
26
+ ?>
27
+ <?php
28
+ /**
29
+ * Edit customer address template
30
+ *
31
+ * @see Mage_Customer_Block_Address_Edit
32
+ */
33
+ ?>
34
+ <?php if($this->getTitle()): ?>
35
+ <div class="page-title">
36
+ <h1><?php echo $this->getTitle() ?></h1>
37
+ </div>
38
+ <?php endif; ?>
39
+ <?php echo $this->getMessagesBlock()->toHtml() ?>
40
+ <form action="<?php echo $this->getSaveUrl() ?>" method="post" id="form-validate">
41
+ <div class="fieldset">
42
+ <?php echo $this->getBlockHtml('formkey')?>
43
+ <input type="hidden" name="success_url" value="<?php echo $this->getSuccessUrl() ?>" />
44
+ <input type="hidden" name="error_url" value="<?php echo $this->getErrorUrl() ?>" />
45
+ <h2 class="legend"><?php echo $this->__('Contact Information') ?></h2>
46
+ <ul class="form-list">
47
+ <li class="fields">
48
+ <?php echo $this->getNameBlockHtml() ?>
49
+ </li>
50
+ <li class="wide">
51
+ <label for="company"><?php echo $this->__('Company') ?></label>
52
+ <div class="input-box">
53
+ <input type="text" name="company" id="company" title="<?php echo $this->__('Company') ?>" value="<?php echo $this->escapeHtml($this->getAddress()->getCompany()) ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('company') ?>" />
54
+ </div>
55
+ </li>
56
+ <li class="fields">
57
+ <div class="field">
58
+ <label for="telephone" class="required"><em>*</em><?php echo $this->__('Telephone') ?></label>
59
+ <div class="input-box">
60
+ <input type="text" name="telephone" value="<?php echo $this->escapeHtml($this->getAddress()->getTelephone()) ?>" title="<?php echo $this->__('Telephone') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('telephone') ?>" id="telephone" />
61
+ </div>
62
+ </div>
63
+ <div class="field">
64
+ <label for="fax"><?php echo $this->__('Fax') ?></label>
65
+ <div class="input-box">
66
+ <input type="text" name="fax" id="fax" title="<?php echo $this->__('Fax') ?>" value="<?php echo $this->escapeHtml($this->getAddress()->getFax()) ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('fax') ?>" />
67
+ </div>
68
+ </div>
69
+ </li>
70
+ </ul>
71
+ </div>
72
+ <div class="fieldset">
73
+ <h2 class="legend"><?php echo $this->__('Address') ?></h2>
74
+ <ul class="form-list">
75
+ <?php $_streetValidationClass = $this->helper('customer/address')->getAttributeValidationClass('street'); ?>
76
+ <li class="wide">
77
+ <label for="street_1" class="required"><em>*</em><?php echo $this->__('Street Address') ?></label>
78
+ <div class="input-box">
79
+ <input type="text" name="street[]" value="<?php echo $this->escapeHtml($this->getAddress()->getStreet(1)) ?>" title="<?php echo $this->__('Street Address') ?>" id="street_1" class="input-text <?php echo $_streetValidationClass ?>" />
80
+ </div>
81
+ </li>
82
+ <?php $_streetValidationClass = trim(str_replace('required-entry', '', $_streetValidationClass)); ?>
83
+ <?php for ($_i = 2, $_n = $this->helper('customer/address')->getStreetLines(); $_i <= $_n; $_i++): ?>
84
+ <li class="wide">
85
+ <div class="input-box">
86
+ <input type="text" name="street[]" value="<?php echo $this->escapeHtml($this->getAddress()->getStreet($_i)) ?>" title="<?php echo $this->__('Street Address %s', $_i) ?>" id="street_<?php echo $_i ?>" class="input-text <?php echo $_streetValidationClass ?>" />
87
+ </div>
88
+ </li>
89
+ <?php endfor; ?>
90
+ <?php if ($this->helper('customer/address')->isVatAttributeVisible()) : ?>
91
+ <li class="wide">
92
+ <label for="vat_id"><?php echo $this->__('VAT Number') ?></label>
93
+ <div class="input-box">
94
+ <input type="text" name="vat_id" value="<?php echo $this->escapeHtml($this->getAddress()->getVatId()) ?>" title="<?php echo $this->__('VAT Number') ?>" id="vat_id" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('vat_id') ?>" />
95
+ </div>
96
+ </li>
97
+ <?php endif; ?>
98
+ <li class="fields">
99
+ <div class="field">
100
+ <label for="city" class="required"><em>*</em><?php echo $this->__('City') ?></label>
101
+ <div class="input-box">
102
+ <input type="text" name="city" value="<?php echo $this->escapeHtml($this->getAddress()->getCity()) ?>" title="<?php echo $this->__('City') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('city') ?>" id="city" />
103
+ </div>
104
+ </div>
105
+ <div class="field">
106
+ <label for="region_id" class="required"><em>*</em><?php echo $this->__('State/Province') ?></label>
107
+ <div class="input-box">
108
+ <select id="region_id" name="region_id" title="<?php echo $this->__('State/Province') ?>" class="validate-select" style="display:none;">
109
+ <option value=""><?php echo $this->__('Please select region, state or province') ?></option>
110
+ </select>
111
+ <script type="text/javascript">
112
+ //<![CDATA[
113
+ $('region_id').setAttribute('defaultValue', "<?php echo $this->getAddress()->getRegionId() ?>");
114
+ //]]>
115
+ </script>
116
+ <input type="text" id="region" name="region" value="<?php echo $this->escapeHtml($this->getAddress()->getRegion()) ?>" title="<?php echo $this->__('State/Province') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('region') ?>" />
117
+ </div>
118
+ </div>
119
+ </li>
120
+ <li class="fields">
121
+ <div class="field">
122
+ <label for="zip" class="required"><em>*</em><?php echo $this->__('Zip/Postal Code') ?></label>
123
+ <div class="input-box">
124
+ <input type="text" name="postcode" value="<?php echo $this->escapeHtml($this->getAddress()->getPostcode()) ?>" title="<?php echo $this->__('Zip/Postal Code') ?>" id="zip" class="input-text validate-zip-international <?php echo $this->helper('customer/address')->getAttributeValidationClass('postcode') ?>" />
125
+ </div>
126
+ </div>
127
+ <div class="field">
128
+ <label for="country" class="required"><em>*</em><?php echo $this->__('Country') ?></label>
129
+ <div class="input-box">
130
+ <?php echo $this->getCountryHtmlSelect() ?>
131
+ </div>
132
+ </div>
133
+ </li>
134
+ <li<?php if($this->canSetAsDefaultBilling()) echo ' class="control"' ?>>
135
+ <?php if($this->isDefaultBilling()): ?>
136
+ <strong><?php echo $this->__('Default Billing Address') ?></strong>
137
+ <?php elseif($this->canSetAsDefaultBilling()): ?>
138
+ <input type="checkbox" id="primary_billing" name="default_billing" value="1" title="<?php echo $this->__('Use as My Default Billing Address') ?>" class="checkbox" /><label for="primary_billing"><?php echo $this->__('Use as my default billing address') ?></label>
139
+ <?php else: ?>
140
+ <input type="hidden" name="default_billing" value="1" />
141
+ <?php endif; ?>
142
+ </li>
143
+ <li<?php if($this->canSetAsDefaultShipping()) echo ' class="control"' ?>>
144
+ <?php if($this->isDefaultShipping()): ?>
145
+ <strong><?php echo $this->__('Default Shipping Address') ?></strong>
146
+ <?php elseif($this->canSetAsDefaultShipping()): ?>
147
+ <input type="checkbox" id="primary_shipping" name="default_shipping" value="1" title="<?php echo $this->__('Use as My Default Shipping Address') ?>" class="checkbox" /><label for="primary_shipping"><?php echo $this->__('Use as my default shipping address') ?></label>
148
+ <?php else: ?>
149
+ <input type="hidden" name="default_shipping" value="1" />
150
+ <?php endif; ?>
151
+ </li>
152
+ </ul>
153
+ </div>
154
+ <div class="buttons-set">
155
+ <p class="required"><?php echo $this->__('* Required Fields') ?></p>
156
+ <p class="back-link"><a href="<?php echo $this->escapeUrl($this->getBackUrl()) ?>"><small>&laquo; </small><?php echo $this->__('Back') ?></a></p>
157
+ <button data-action="save-customer-address" type="submit" title="<?php echo $this->__('Save Address') ?>" class="button"><span><span><?php echo $this->__('Save Address') ?></span></span></button>
158
+ </div>
159
+ </form>
160
+ <script type="text/javascript">
161
+ //<![CDATA[
162
+ var dataForm = new VarienForm('form-validate', true);
163
+ new RegionUpdater('country', 'region', 'region_id', <?php echo $this->helper('directory')->getRegionJson() ?>, undefined, 'zip');
164
+ //]]>
165
+ </script>
166
+ <script type="text/javascript">
167
+ //<![CDATA[
168
+ CITIES_ACTION = "<?php echo $this->getUrl('citydropdown/index/cities'); ?>";
169
+
170
+ var normalImput = '<input type="text" name="city" value="<?php echo $this->escapeHtml($this->getAddress()->getCity()) ?>" title="<?php echo $this->__('City') ?>" class="input-text <?php echo $this->helper('customer/address')->getAttributeValidationClass('city') ?>" id="city" />'
171
+
172
+ document.observe("dom:loaded", function() {
173
+ <?php if($this->getAddress()->getRegionId()): ?>
174
+ var action = CITIES_ACTION;
175
+ var selectCountry = $('country').value;
176
+ var stateId = $('region_id').value;
177
+ var selectedCity = '<?php echo $this->escapeHtml($this->getAddress()->getCity()) ?>';
178
+ getAjaxReqestCustomer(action, selectCountry, stateId, normalImput,selectedCity)
179
+ //$('city').setValue('<?php echo $this->escapeHtml($this->getAddress()->getCity()) ?>');
180
+ <?php endif?>
181
+ });
182
+
183
+ Event.observe($('region_id'), 'change', function (event) {
184
+ var selectedCity = false;
185
+ var action = CITIES_ACTION;
186
+ var selectCountry = $('country').value;
187
+ var stateId = $('region_id').value;
188
+ getAjaxReqestCustomer(action, selectCountry, stateId, normalImput,selectedCity)
189
+ });
190
+ //]]>
191
+ </script>
app/etc/modules/Eadesigndev_Romcity.xml ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <config>
3
+ <modules>
4
+ <Eadesigndev_Romcity>
5
+ <active>true</active>
6
+ <codePool>local</codePool>
7
+ </Eadesigndev_Romcity>
8
+ </modules>
9
+ </config>
js/eadesign/romcity/field.js ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * Created by eadesignpc on 5/5/2015.
3
+ */
4
+ function getAjaxReqest(action, selectCountry, stateId, normalImput,selectedCity) {
5
+ var request = new Ajax.Request(action,
6
+ {
7
+ method: 'GET',
8
+ onSuccess: function (data) {
9
+ $('billing:city').replace('<select id="billing:city" name="billing[city]" class="required-entry">' +
10
+ '<option value=""></option>' + convertJsonToHtml(data.responseText, this,selectedCity) +
11
+ '</select>');
12
+ },
13
+ onFailure: $('billing:city').replace(normalImput),
14
+ parameters: {city_id: stateId, country_id: selectCountry}
15
+ }
16
+ );
17
+ }
18
+
19
+
20
+
21
+ function getAjaxReqestCustomer(action, selectCountry, stateId, normalImput, selectedCity) {
22
+ var request = new Ajax.Request(action,
23
+ {
24
+ method: 'GET',
25
+ onSuccess: function (data) {
26
+ $('city').replace('<select id="city" name="city" class="required-entry">' +
27
+ '<option value=""></option>' + convertJsonToHtml(data.responseText, this, selectedCity) +
28
+ '</select>');
29
+ },
30
+ onFailure: $('city').replace(normalImput),
31
+ parameters: {city_id: stateId, country_id: selectCountry}
32
+ }
33
+ );
34
+ }
35
+ function getAjaxReqestShip(action, selectCountry, stateId, normalImput,selectedCity) {
36
+ if (normalImput != null) {
37
+ var resetShip = true;
38
+ } else {
39
+ var resetShip = false;
40
+ }
41
+
42
+ var request = new Ajax.Request(action,
43
+ {
44
+ method: 'GET',
45
+ onSuccess: function (data) {
46
+ $('shipping:city').replace('<select id="shipping:city" name="shipping[city]" class="required-entry">' +
47
+ '<option value=""></option>' + convertJsonToHtml(data.responseText, this,selectedCity) +
48
+ '</select>');
49
+ },
50
+ onFailure: function (resetShip) {
51
+ if (resetShip) {
52
+ $('shipping:city').replace(normalImput)
53
+ }
54
+ },
55
+
56
+ parameters: {city_id: stateId, country_id: selectCountry}
57
+ }
58
+ );
59
+ }
60
+
61
+ function convertJsonToHtml(data, ship, selectedCity) {
62
+
63
+ var jsonData = data.evalJSON();
64
+
65
+ if (jsonData.length == 0) {
66
+ ship.replace(normalImput);
67
+ return;
68
+ }
69
+
70
+ console.log(jsonData);
71
+
72
+ htmlData = '';
73
+
74
+ jsonData.each(function (item) {
75
+ if (item.cityname == selectedCity) {
76
+ htmlData += '<option value="' + item.cityname + '" selected>' + item.cityname + '</option>';
77
+ } else {
78
+ htmlData += '<option value="' + item.cityname + '">' + item.cityname + '</option>';
79
+ }
80
+
81
+ });
82
+
83
+ return htmlData;
84
+ }
package.xml ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <package>
3
+ <name>Eadesigndev_Romcity</name>
4
+ <version>1.0.6</version>
5
+ <stability>stable</stability>
6
+ <license uri="http://opensource.org/licenses/osl-3.0.php">Extension license name (OSL v3.0)</license>
7
+ <channel>community</channel>
8
+ <extends/>
9
+ <summary>The extension will add a city drop-down for the regions that have a related list.</summary>
10
+ <description>The drop down will be available for all users so they do not write what they want into their orders. Only implemented for Romania for the moment.</description>
11
+ <notes>The final version for the live added.</notes>
12
+ <authors><author><name>EaDesign</name><user>eadesign</user><email>office@eadesign.ro</email></author></authors>
13
+ <date>2015-07-21</date>
14
+ <time>07:38:02</time>
15
+ <contents><target name="magelocal"><dir name="Eadesigndev"><dir name="Romcity"><dir name="Block"><dir name="Adminhtml"><dir name="Block"><dir name="Customer"><dir name="Edit"><dir name="Renderer"><file name="Region.php" hash="7d879f18affc0794c3a8989c2c203c7e"/></dir><dir name="Tab"><file name="Addresses.php" hash="80db8394d4993b740e96bae0ef0ca818"/></dir></dir></dir><dir name="Sales"><dir name="Order"><dir name="Address"><file name="Form.php" hash="9a252fda0ae3cf2817435d8b405a4e1e"/></dir><dir name="Create"><dir name="Billing"><file name="Address.php" hash="dd6d71990029c527e93c4795ad98cfce"/></dir><dir name="Shipping"><file name="Address.php" hash="f5c17f4a86642b56de90aaf8c7eff87b"/></dir></dir></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="eddff919b63cf14664b70fb3c2ca3b84"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="Customer"><dir name="Renderer"><file name="Region.php" hash="926fe1ce242e3c80c299e57a455d333b"/></dir></dir><dir name="Render"><file name="City.php" hash="45d76e7549acfef46f2756108eab69ca"/><file name="Cityorder.php" hash="a199d056cd3833a35b896f2bfd2e35a1"/></dir></dir><dir name="Mysql4"><dir name="Romcity"><file name="Collection.php" hash="f5ed9f7fcdcec468aea314995323df25"/></dir><file name="Romcity.php" hash="6a1d6413473cac44d18951e5bfc55166"/></dir><file name="Romcity.php" hash="40538e61e3b300ffdc361ebf69191d1c"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="IndexController.php" hash="d6dc438de622695d2a1fd2f3a141f56c"/></dir><file name="IndexController.php" hash="5d2d316cf019f60c3411145bc5deca57"/></dir><dir name="etc"><file name="config.xml" hash="ad5d92e880d57ddc4c28778ba25e4bf7"/></dir><dir name="sql"><dir name="eadsign_romcity_setup"><file name="mysql4-install-1.0.1.php" hash="5d1c981f19658a0ca6d58dd08053ffc8"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Eadesigndev_Romcity.xml" hash="0a6745536b4c7f5cacc734af08e714af"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><dir name="romcity"><file name="romcity.xml" hash="ab933fa5a4963a820fbc4b4658585342"/></dir></dir><dir name="template"><dir name="romcity"><dir name="customer"><dir name="tab"><file name="addresses.phtml" hash="3ca5f698b59e3cb44a070c38d64ff6a3"/></dir></dir><dir name="sales"><dir name="order"><dir name="address"><file name="form.phtml" hash="ec2f32f0d0d58aa9412f8ab337d4e57e"/></dir><dir name="create"><dir name="form"><file name="address.phtml" hash="3b7a428aacbc08787a566a3541718732"/><file name="ship_address.phtml" hash="cfd57cd941345532465d06d8c3ddc8e1"/></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="romcity"><file name="romcity.xml" hash="dadee20e5c0e6d6837fe52b72af640ad"/></dir></dir><dir name="template"><dir name="romcity"><dir name="checkout"><dir name="onepage"><file name="billing.phtml" hash="6ef682728aa1d5ba7e4faa56c256d344"/><file name="shipping.phtml" hash="52c5235bc8e75c7aea7a18dd5567c258"/></dir></dir><dir name="customer"><dir name="address"><file name="edit.phtml" hash="54aa4dec49676e1924897bd9eeb3f279"/></dir></dir></dir></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="eadesign"><dir name="romcity"><file name="field.js" hash="7df31b55764a8a82715f0d18db52c40c"/></dir></dir></dir></target></contents>
16
+ <compatible/>
17
+ <dependencies><required><php><min>5.2.0</min><max>5.6.3</max></php></required></dependencies>
18
+ </package>