o2ti_moip - Version 2.0.1

Version Notes

V2

Download this release

Release Info

Developer MOIP
Extension o2ti_moip
Version 2.0.1
Comparing to
See all releases


Code changes from version 2.0.0 to 2.0.1

app/code/local/MOIP/Transparente/Block/Form/Cc.php CHANGED
@@ -67,7 +67,7 @@ class MOIP_Transparente_Block_Form_Cc extends Mage_Payment_Block_Form {
67
  #$parcelas[]= '<li><input type="radio" name="payment[credito_parcelamento]" title="Selecione as Parcelas" id="credito_parcelamento" class="input-radio validate-one-required-by-name" value="'.$key.'"><label>'.$key.'x de '.$parcelas_result.' no total de '.$total_parcelado.' '.$asterisco.'</label></li>';
68
  }
69
  else if ($key == 0) {
70
- $parcelas[]= '<option value="1">À vista no total de sem juros</option>';
71
  }
72
  }
73
 
67
  #$parcelas[]= '<li><input type="radio" name="payment[credito_parcelamento]" title="Selecione as Parcelas" id="credito_parcelamento" class="input-radio validate-one-required-by-name" value="'.$key.'"><label>'.$key.'x de '.$parcelas_result.' no total de '.$total_parcelado.' '.$asterisco.'</label></li>';
68
  }
69
  else if ($key == 0) {
70
+ $parcelas[]= '<option value="1">À vista no valor total sem juros</option>';
71
  }
72
  }
73
 
app/code/local/MOIP/Transparente/Model/Api.php CHANGED
@@ -98,19 +98,30 @@ class MOIP_Transparente_Model_Api
98
  public function getAuditOrder($quote, $shipping)
99
  {
100
  $grandTotalProd = null;
101
- foreach ($quote->getAllItems() as $item) {
102
- $grandTotalProd += $item->getPriceInclTax() * $item->getQty();
 
 
 
 
 
 
103
  }
 
 
104
  $totals = $quote->getTotals();
105
  $grandTotal = $totals['grand_total']->getValue();
106
  $total_cal = $grandTotalProd + $shipping;
 
 
 
107
  if ($total_cal != $grandTotal) {
108
  if ($total_cal > $grandTotal) {
109
  $diff = $total_cal - $grandTotal;
110
  $return_values = array(
111
  "shipping" => number_format($shipping, 2, '', ''),
112
  "discount" => number_format($diff, 2, '', ''),
113
- "addition" => 0
114
  );
115
  } else {
116
  $diff = $grandTotal - $total_cal;
98
  public function getAuditOrder($quote, $shipping)
99
  {
100
  $grandTotalProd = null;
101
+
102
+ $items = $quote->getallvisibleitems();
103
+ $itemcount = count($items);
104
+ $produtos = array();
105
+ foreach ($items as $itemId => $item) {
106
+ if ($item->getPrice() > 0) {
107
+ $grandTotalProd += $item->getPrice() * $item->getQty();
108
+ }
109
  }
110
+
111
+
112
  $totals = $quote->getTotals();
113
  $grandTotal = $totals['grand_total']->getValue();
114
  $total_cal = $grandTotalProd + $shipping;
115
+ $this->generateLog($grandTotal, 'debub_valores.log');
116
+ $this->generateLog($grandTotalProd, 'debub_valores.log');
117
+
118
  if ($total_cal != $grandTotal) {
119
  if ($total_cal > $grandTotal) {
120
  $diff = $total_cal - $grandTotal;
121
  $return_values = array(
122
  "shipping" => number_format($shipping, 2, '', ''),
123
  "discount" => number_format($diff, 2, '', ''),
124
+ "addition" => 0,
125
  );
126
  } else {
127
  $diff = $grandTotal - $total_cal;
app/code/local/MOIP/Transparente/Model/Method/Cc.php CHANGED
@@ -104,12 +104,7 @@ class MOIP_Transparente_Model_Method_Cc extends Mage_Payment_Model_Method_Abstra
104
  );
105
  $specifiedCCType = $info->getCcType();
106
  if ($specifiedCCType == 'VI' || $specifiedCCType == "MC" || $$specifiedCCType == "AE" || $$specifiedCCType == "DC") {
107
- if (array_key_exists($specifiedCCType, $ccTypeRegExpList)) {
108
- $ccTypeRegExp = $ccTypeRegExpList[$specifiedCCType];
109
- if (!preg_match($ccTypeRegExp, $ccNumber)) {
110
- $errorMsg = Mage::helper('transparente')->__('Ops, não consigo processar o seu cartão confira o número por favor.');
111
- }
112
- }
113
  } else {
114
  if ($specifiedCCType)
115
  $errorMsg = "";
@@ -119,13 +114,7 @@ class MOIP_Transparente_Model_Method_Cc extends Mage_Payment_Model_Method_Abstra
119
  } else {
120
  $errorMsg = Mage::helper('transparente')->__('O número do cartão está inválido');
121
  }
122
- if ($errorMsg === false) {
123
- $verifcationRegEx = $this->getVerificationRegEx();
124
- $regExp = isset($verifcationRegEx[$info->getCcType()]) ? $verifcationRegEx[$info->getCcType()] : '';
125
- if (!$info->getCcCid() || !$regExp || !preg_match($regExp, $info->getCcCid())) {
126
- $errorMsg = Mage::helper('transparente')->__('O Código de Segurança (cvv) está inválido');
127
- }
128
- }
129
  if ($errorMsg === false) {
130
  if (!$info->getCcOwner()) {
131
  $errorMsg = Mage::helper('transparente')->__('O nome do portador do cartão não está correto');
@@ -138,7 +127,7 @@ class MOIP_Transparente_Model_Method_Cc extends Mage_Payment_Model_Method_Abstra
138
  }
139
  if ($errorMsg === false) {
140
  if (!$this->getValidaCPF($additionaldata['taxdocument_moip'])) {
141
- $errorMsg = Mage::helper('transparente')->__('Informe um CPF válido, caso seu cartão seja empresarial é necessário informar o seu CPF.');
142
  }
143
  }
144
  // if ($errorMsg === false) {
104
  );
105
  $specifiedCCType = $info->getCcType();
106
  if ($specifiedCCType == 'VI' || $specifiedCCType == "MC" || $$specifiedCCType == "AE" || $$specifiedCCType == "DC") {
107
+ $errorMsg = "";
 
 
 
 
 
108
  } else {
109
  if ($specifiedCCType)
110
  $errorMsg = "";
114
  } else {
115
  $errorMsg = Mage::helper('transparente')->__('O número do cartão está inválido');
116
  }
117
+
 
 
 
 
 
 
118
  if ($errorMsg === false) {
119
  if (!$info->getCcOwner()) {
120
  $errorMsg = Mage::helper('transparente')->__('O nome do portador do cartão não está correto');
127
  }
128
  if ($errorMsg === false) {
129
  if (!$this->getValidaCPF($additionaldata['taxdocument_moip'])) {
130
+ $errorMsg = Mage::helper('transparente')->__('Informe um CPF válido, caso seu cartão seja empresarial é necessário informar o seu CPF, para isto desmarque a opção "Sou o titular do cartão".');
131
  }
132
  }
133
  // if ($errorMsg === false) {
app/code/local/MOIP/Transparente/controllers/IndexController.php CHANGED
@@ -9,6 +9,8 @@ class MOIP_Transparente_IndexController extends Mage_Checkout_CartController
9
  $this->renderLayout();
10
  }
11
  public function RemoveAction() {
 
 
12
  if($this->getRequest()->getParams()){
13
  $data = $this->getRequest()->getParams();
14
  $model = Mage::getModel('transparente/write');
9
  $this->renderLayout();
10
  }
11
  public function RemoveAction() {
12
+ $this->loadLayout();
13
+
14
  if($this->getRequest()->getParams()){
15
  $data = $this->getRequest()->getParams();
16
  $model = Mage::getModel('transparente/write');
app/code/local/MOIP/Transparente/sql/transparente_setup/mysql4-install-0.1.0.php CHANGED
@@ -16,7 +16,11 @@ $installer->startSetup();
16
 
17
  $directory_country_region = Mage::getSingleton('core/resource')->getTableName('directory_country_region');
18
  $directory_country_region_name = Mage::getSingleton('core/resource')->getTableName('directory_country_region_name');
 
 
 
19
 
 
20
 
21
  $installer->run("
22
 
@@ -158,6 +162,8 @@ INSERT INTO `".$directory_country_region_name."` (`locale`, `region_id`, `name`)
158
 
159
  ");
160
  $installer->startSetup();
 
 
161
 
162
 
163
  $installer->endSetup();
16
 
17
  $directory_country_region = Mage::getSingleton('core/resource')->getTableName('directory_country_region');
18
  $directory_country_region_name = Mage::getSingleton('core/resource')->getTableName('directory_country_region_name');
19
+ $collection = Mage::getModel('directory/region')->getResourceCollection()
20
+ ->addCountryCodeFilter('BR')
21
+ ->load();
22
 
23
+ if (count($collection) == 0) {
24
 
25
  $installer->run("
26
 
162
 
163
  ");
164
  $installer->startSetup();
165
+ }
166
+
167
 
168
 
169
  $installer->endSetup();
app/design/frontend/base/default/template/MOIP/onestepcheckout/daskboard.phtml CHANGED
@@ -34,6 +34,7 @@
34
  $class_set_midle_coll = "no-set-coll";
35
  $class_Shippingcollun = "col-lg-4 col-xm-12 col-md-4";
36
  $class_Paymentcollun = "col-lg-4 col-xm-12 col-md-4";
 
37
  } elseif(Mage::getStoreConfig('onestepcheckout/layout/page_layout')==4){
38
 
39
  $class_address_user = "col-xm-12 col-lg-4 col-md-4";
34
  $class_set_midle_coll = "no-set-coll";
35
  $class_Shippingcollun = "col-lg-4 col-xm-12 col-md-4";
36
  $class_Paymentcollun = "col-lg-4 col-xm-12 col-md-4";
37
+ $class_Review = "col-lg-12 col-xm-12 col-md-12";
38
  } elseif(Mage::getStoreConfig('onestepcheckout/layout/page_layout')==4){
39
 
40
  $class_address_user = "col-xm-12 col-lg-4 col-md-4";
app/design/frontend/base/default/template/MOIP/product/view/parcelas.phtml CHANGED
@@ -4,7 +4,7 @@
4
  <?php $parcial = $this->getParcelamento($price, 'reduzido'); ?>
5
  <?php $integral = $this->getParcelamento($price, 'integral'); ?>
6
  <?php if($parcial): ?>
7
- <div id="parecelas-view" title="Parcelamento no Cartão de Crédito" data-toggle="popover-manual-moip" content-dynamic="popover-parcelas-content" data-placement="left" class="noselect" >em até <?php echo $this->getParcelamento($price, 'reduzido'); ?></div>
8
 
9
  <?php endif ?>
10
  <?php if($integral): ?>
@@ -29,16 +29,15 @@
29
  jQuery('#parecelas-view').popover({
30
  content: jQuery('.popover-parcelas-content').html(),
31
  html: true,
32
- trigger: 'click',
33
  template: '<div class="popover"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div><div class="popover-footer"><div class="images-moip-parcelas"><ul class="product_view_bandeiras"><li><img src="<?php echo $this->getVisaImage(); ?>" width="34px" height="22px" id="Moip_Visa" alt="Visa" border="0"></li><li><img src="<?php echo $this->getMastercardImage(); ?>" id="Moip_Mastercard" width="34px" height="22px" i alt="Mastercard" border="0" ></li><li><img src="<?php echo $this->getAmericanExpressImage(); ?>" id="Moip_AmericanExpress"width="34px" height="22px" alt="AmericanExpress" border="0" ></li><li><img src="<?php echo $this->getDinersImage(); ?>" width="34px" height="22px" id="Moip_Diners" alt="Diners" border="0" ></li><li><img src="<?php echo $this->getEloImage(); ?>"width="34px" height="22px" id="Moip_Elo" alt="Elo" border="0" ></li><li><img src="<?php echo $this->getHiperImage(); ?>" id="Moip_Hiper" alt="Hiper"width="34px" height="22px" border="0" ></li><li><img src="<?php echo $this->getHipercardImage(); ?>" id="Moip_Hipercard"width="34px" height="22px" alt="Hipercard" border="0" ></li></ul></div></div></div>'
34
- }).on("click", function () {
35
  jQuery('#parecelas-view').popover("show");
36
- jQuery(".popover.fade.left.in").css({"top": "30px"});
37
  })
38
- .on("mouseout", function () {
39
  setTimeout(function () {
40
  jQuery('#parecelas-view').popover("hide");
41
- }, 1000);
42
  });
43
  </script>
44
  <?php endif ?>
4
  <?php $parcial = $this->getParcelamento($price, 'reduzido'); ?>
5
  <?php $integral = $this->getParcelamento($price, 'integral'); ?>
6
  <?php if($parcial): ?>
7
+ <div id="parecelas-view" title="Parcelamento no Cartão de Crédito" data-toggle="popover-manual-moip" content-dynamic="popover-parcelas-content" data-placement="bottom" class="noselect" >em até <?php echo $this->getParcelamento($price, 'reduzido'); ?></div>
8
 
9
  <?php endif ?>
10
  <?php if($integral): ?>
29
  jQuery('#parecelas-view').popover({
30
  content: jQuery('.popover-parcelas-content').html(),
31
  html: true,
32
+ trigger: 'manual',
33
  template: '<div class="popover"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div><div class="popover-footer"><div class="images-moip-parcelas"><ul class="product_view_bandeiras"><li><img src="<?php echo $this->getVisaImage(); ?>" width="34px" height="22px" id="Moip_Visa" alt="Visa" border="0"></li><li><img src="<?php echo $this->getMastercardImage(); ?>" id="Moip_Mastercard" width="34px" height="22px" i alt="Mastercard" border="0" ></li><li><img src="<?php echo $this->getAmericanExpressImage(); ?>" id="Moip_AmericanExpress"width="34px" height="22px" alt="AmericanExpress" border="0" ></li><li><img src="<?php echo $this->getDinersImage(); ?>" width="34px" height="22px" id="Moip_Diners" alt="Diners" border="0" ></li><li><img src="<?php echo $this->getEloImage(); ?>"width="34px" height="22px" id="Moip_Elo" alt="Elo" border="0" ></li><li><img src="<?php echo $this->getHiperImage(); ?>" id="Moip_Hiper" alt="Hiper"width="34px" height="22px" border="0" ></li><li><img src="<?php echo $this->getHipercardImage(); ?>" id="Moip_Hipercard"width="34px" height="22px" alt="Hipercard" border="0" ></li></ul></div></div></div>'
34
+ }).on("mouseenter", function () {
35
  jQuery('#parecelas-view').popover("show");
 
36
  })
37
+ .on("mouseleave", function () {
38
  setTimeout(function () {
39
  jQuery('#parecelas-view').popover("hide");
40
+ }, 2000);
41
  });
42
  </script>
43
  <?php endif ?>
app/design/frontend/base/default/template/MOIP/transparente/cartoes_my_account.phtml CHANGED
@@ -7,7 +7,7 @@ que nos permite acessa-los quando você for realizar um novo pedido.</p>
7
 
8
 
9
  <?php $cofre = Mage::helper('core')->jsonDecode($cofre); ?>
10
- <form method="POST" action='<?php echo Mage::getBaseUrl('web', true); ?>transparente/index/Remove/' id="remove_card" class="remove_card">
11
  <div class="block block-account">
12
  <div class="block-title">
13
  <strong><span>Remova seus Cartões</span></strong>
7
 
8
 
9
  <?php $cofre = Mage::helper('core')->jsonDecode($cofre); ?>
10
+ <form method="POST" action='<?php echo Mage::getBaseUrl('web', true); ?>Transparente/index/Remove/' id="remove_card" class="remove_card">
11
  <div class="block block-account">
12
  <div class="block-title">
13
  <strong><span>Remova seus Cartões</span></strong>
app/design/frontend/base/default/template/MOIP/transparente/form/cc.phtml CHANGED
@@ -2,11 +2,7 @@
2
  <ul id="payment_form_<?php echo $_code ?>" class="form-list" style="display:none">
3
  <?php $cofre = $this->getCofre(); ?>
4
  <?php if($cofre != "false"): ?>
5
- <script type="text/javascript">
6
- $j(document).ready(function(){
7
- SetCofre();
8
- });
9
- </script>
10
 
11
  <div class="payment-cofre">
12
  <?php $cofre = Mage::helper('core')->jsonDecode($cofre); ?>
@@ -95,7 +91,7 @@
95
  <li class="fields card-number">
96
  <label for="<?php echo $_code ?>_number" class="required"><?php echo $this->__('Número do Cartão') ?></label>
97
  <div class="input-box">
98
- <input type="text" id="<?php echo $_code ?>_number" pattern="\d*" name="payment[<?php echo $_code ?>_number]" title="Número do seu Cartão de Crédito" class="required-entry input-text" placeholder="Número do Cartão" value="">
99
  </div>
100
  </li>
101
 
@@ -103,7 +99,7 @@
103
  <label for="<?php echo $_code ?>_cid" class="required"><?php echo $this->__('Cod. de Segurança') ?></label>
104
  <div class="input-box">
105
  <div class="v-fix">
106
- <input type="text" pattern="\d*" name="payment[<?php echo $_code ?>_cid]" title="Código de Seguranção do Seu Cartão" class="input-text cvv validate-length minimum-length-3 maximum-length-4 required-entry" id="<?php echo $_code ?>_cid" placeholder="CVV" value=""><a href="#" class="cvv-what-is-this">?</a>
107
  </div>
108
 
109
  </div>
@@ -211,4 +207,14 @@
211
  });
212
 
213
  //]]>
214
- </script>
 
 
 
 
 
 
 
 
 
 
2
  <ul id="payment_form_<?php echo $_code ?>" class="form-list" style="display:none">
3
  <?php $cofre = $this->getCofre(); ?>
4
  <?php if($cofre != "false"): ?>
5
+
 
 
 
 
6
 
7
  <div class="payment-cofre">
8
  <?php $cofre = Mage::helper('core')->jsonDecode($cofre); ?>
91
  <li class="fields card-number">
92
  <label for="<?php echo $_code ?>_number" class="required"><?php echo $this->__('Número do Cartão') ?></label>
93
  <div class="input-box">
94
+ <input type="text" id="<?php echo $_code ?>_number" pattern="\d*" title="Número do seu Cartão de Crédito" class="required-entry input-text" placeholder="Número do Cartão" value="">
95
  </div>
96
  </li>
97
 
99
  <label for="<?php echo $_code ?>_cid" class="required"><?php echo $this->__('Cod. de Segurança') ?></label>
100
  <div class="input-box">
101
  <div class="v-fix">
102
+ <input type="text" pattern="\d*" title="Código de Seguranção do Seu Cartão" class="input-text cvv validate-length minimum-length-3 maximum-length-4 required-entry" id="<?php echo $_code ?>_cid" placeholder="CVV" value=""><a href="#" class="cvv-what-is-this">?</a>
103
  </div>
104
 
105
  </div>
207
  });
208
 
209
  //]]>
210
+ </script>
211
+ <?php $cofre = $this->getCofre(); ?>
212
+ <?php if($cofre != "false"): ?>
213
+ <script type="text/javascript">
214
+ //<![CDATA[
215
+ jQuery(document).ready(function(){
216
+ SetCofre();
217
+ });
218
+ //]]>
219
+ </script>
220
+ <?php endif; ?>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>o2ti_moip</name>
4
- <version>2.0.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://moip.com/licensa_checkout_transparente.txt">Exclusivo para clientes Moip Pagamentos S/A</license>
7
  <channel>community</channel>
@@ -15,9 +15,9 @@ Solu&#xE7;&#xE3;o integrada para vendas via moip. gratuito e exclusivo para clie
15
  </description>
16
  <notes>V2</notes>
17
  <authors><author><name>MOIP</name><user>moip</user><email>contato@o2ti.com</email></author></authors>
18
- <date>2016-05-24</date>
19
- <time>16:19:53</time>
20
- <contents><target name="magelocal"><dir name="MOIP"><dir name="Account"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Form"><dir name="Button"><file name="Button.php" hash="007feb0784ae1478f0ae0990081f8620"/></dir><dir name="Field"><file name="Date.php" hash="0870f256c23b9a7eac0c7e9e7622ff27"/><file name="Selectcron.php" hash="85c0eceec8c74aa841bc1128f3ce1a4a"/><file name="Text.php" hash="101389c0b3a334919bf4efa5a8012eb5"/></dir></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="d46e407f76d70a006d456a33b7210d25"/></dir><dir name="Model"><file name="Observer.php" hash="9b28f254978c7576bf361d6f757bcf22"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="MoipaccountController.php" hash="2c0831f968c67fcfdc0cd840e06f00fa"/></dir></dir><dir name="etc"><file name="config.xml" hash="a21af3d69524bab554faebb174b19698"/><file name="system.xml" hash="416cc1192af6e508c945b03483e92964"/></dir></dir><dir name="All"><dir name="Helper"><file name="Data.php" hash="10b776758585cb50355c0d6d0a5fdd5b"/></dir><dir name="etc"><file name="config.xml" hash="0d6788a7062e82243626e1caf3987a4d"/><file name="system.xml" hash="825545991621cd6e0fc34a19476d78cc"/></dir></dir><dir name="Onestepcheckout"><dir name="Block"><dir name="Adminhtml"><dir name="Onestepcheckout"><dir name="Sales"><dir name="Order"><dir name="View"><dir name="Tab"><dir name="Info"><file name="Customermessages.php" hash="ddb3c364bb288b2e48f5ca20dbaf262b"/></dir></dir></dir></dir></dir></dir><dir name="System"><dir name="Config"><file name="Editor.php" hash="620ffe2b11d51c059aae85d069d17dd9"/></dir></dir></dir><dir name="Checkout"><dir name="Cart"><file name="Promotion.php" hash="40ade64028b400796d0fb77060703370"/></dir><dir name="Onepage"><dir name="Billing"><file name="Sortbilling.php" hash="aac00cf619be021d627bc6d6e0632247"/></dir><file name="Billing.php" hash="c41241da962110ee7bca3c7656148bde"/><dir name="Review"><file name="Info.php" hash="8585d5415e0589c9ffc53c160921cdb0"/><file name="Options.php" hash="7e3a4f53f4d687536ae3ff80728c0cc4"/></dir><file name="Shipping.php" hash="40b5b13c8408bac25d7eb45f6ddbdc86"/></dir></dir><file name="Onestepcheckout.php" hash="f6a3bc3e394fbadd34985586f71ee782"/></dir><dir name="Helper"><file name="Data.php" hash="5c19376368e6b2f744b448f0012f693e"/></dir><dir name="Model"><dir name="Customer"><file name="Customer.php" hash="f038378053e082fea387c16056624540"/></dir><dir name="Mysql4"><dir name="Onestepcheckout"><file name="Collection.php" hash="cb452401f753d3cd63196488d2985e09"/></dir><file name="Onestepcheckout.php" hash="370e27b4bdd3d450fff995f94bc74ad3"/></dir><file name="Observer.php" hash="e8b37e9fb11cf2f47eb61d1629927ed1"/><file name="Onestepcheckout.php" hash="90db8eeb14fc762e79098edfac0684f8"/><dir name="Sales"><dir name="Quote"><file name="Address.php" hash="904bdc6b5836ccdbb91810dba55b4a4b"/></dir></dir><file name="Status.php" hash="cd2132bb22a1992e6ea762586391733b"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Checkuncheck.php" hash="febcb4b243d5e09ae7b77d603af45d63"/><file name="Disablefield.php" hash="196dcdb92863dbe110a8edc0be4cf953"/><file name="Optionaddfield.php" hash="574f6f8d27245ab4f0d0362372f5082d"/><file name="Optionhidefield.php" hash="0cf65ef82933d93293eaada3125c3b1d"/><file name="Pagelayout.php" hash="b6ca9f9394e84806aecc39f5e62c11d5"/><dir name="Payment"><file name="Allowedmethods.php" hash="d1f4b5a2e79f2f9378fb58a88ce2732b"/></dir><file name="Subscribenewletter.php" hash="a4c99e4f5417aa1b6d42364f4c83258c"/></dir></dir></dir></dir><dir name="controllers"><file name="IndexController.php" hash="84956d00de1473ad3bf4a9098a037d46"/><file name="OrderController.php" hash="67f444751f3bc90bf9a4eca8e5e16c02"/><file name="TestController.php" hash="0ee82be0e1607d92fb4afa2bc6886b57"/></dir><dir name="etc"><file name="config.xml" hash="6da1f67c15a989f4d55b327e2c04e09b"/><file name="system.xml" hash="361dfe0b7931bc76a2026b2d3e1e4898"/></dir><dir name="sql"><dir name="moip_onestepcheckout_setup"><file name="mysql4-install-0.1.0.php" hash="ca03016b7dc2a6c84e258b9e7248e5ff"/><file name="mysql4-upgrade-0.1.0-0.2.0.php" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></dir></dir><dir name="Transparente"><dir name="Block"><dir name="Adminhtml"><dir name="Info"><file name="Boleto.php" hash="8839b160428c9bbe482c79a9637e9889"/><file name="Cc.php" hash="2e457a673e02024472f8145201cfb519"/><file name="Tef.php" hash="aaf85a2846426db34534c56eacbe3f01"/></dir><dir name="Sales"><dir name="Order"><dir name="Create"><dir name="Totals"><file name="Fee.php" hash="ff5c32dc11ba021ce5a08feece2c95c8"/></dir></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Fieldset"><dir name="Modules"><file name="Header.php" hash="b0fd3aa33c52191c41a486f3077f3564"/><file name="Oauth.php" hash="0d7425a67467f24348edb88a15fef4ea"/><file name="Reset.php" hash="66b629c16de08ffaf1826df704ff3158"/></dir></dir></dir></dir></dir><dir name="moip"><dir name="Info"><file name="Boleto.php" hash="65cc077e82ff199700a2741ff9e4d128"/><file name="Cc.php" hash="386ec65663d683c611a6f53d7e90365d"/><file name="Info.php" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="Tef.php" hash="c93516fb7d7e308c1e09d9583164b17b"/></dir></dir></dir><dir name="Checkout"><dir name="Totals"><file name="Fee.php" hash="77b13900da5c1fbda76bc59d12c50c58"/></dir></dir><dir name="Form"><file name="Admin.php" hash="8e14d3f9688bb9276b289749ac103876"/><file name="Boleto.php" hash="838b429eb4963a6946570836cf248475"/><file name="Cc.php" hash="ce1e5d4ab16e1707c1a25b9622748735"/><file name="Recurring.php" hash="3b05247c93000b5348f48a0924d916e9"/><file name="Tef.php" hash="ddbe5dfafbdcb22ec9d4fb901452f879"/></dir><dir name="Info"><file name="Admin.php" hash="d9f032feed4a4b8a4cd2ba920556ddee"/><file name="Boleto.php" hash="65cc077e82ff199700a2741ff9e4d128"/><file name="Boletorecurring.php" hash="3c2cefde47b7fd19361402dd8330c9f7"/><file name="Cc.php" hash="1a10028a49805b73db3a621a8171e605"/><file name="Tef.php" hash="c93516fb7d7e308c1e09d9583164b17b"/></dir><dir name="Onclick"><file name="Button.php" hash="2f1b70163cae117458228219cd37b790"/><file name="MoipOnclick.php" hash="ed325429be5a897762b89e860064e6bd"/><file name="PaymentMethod.php" hash="ab03241a3dc85f8537df83e5e294d385"/><file name="ShippingAddress.php" hash="bd069a1a705a60688fed1184ac84e76f"/><file name="ShippingMethods.php" hash="3084994424c4adcc12e700ad3f5c1226"/><file name="UpdateParcelas.php" hash="e5eb7e7ac75fbfcc8fc369e95ad3811a"/></dir><dir name="Product"><dir name="List"><file name="Parcelas.php" hash="df5d74cbf099971722dede2e279afc6c"/></dir><file name="List.php" hash="881a94bac6f0dfd100c39c1416c54b07"/><dir name="View"><file name="Discount.php" hash="74daeb4dc2e02fbfec5460edf6c1acdd"/><file name="Parcelas.php" hash="1b2c92b9e10da86523341cdb1e4bb4a7"/></dir><file name="View.php" hash="54f00539a0ce45c0aecdbd05d3a0323d"/></dir><dir name="Sales"><dir name="Order"><file name="Fee.php" hash="c468eae460f961c148ae542d95fc08a0"/></dir></dir><dir name="Standard"><file name="Cancel.php" hash="e7ebf3cdb13dcb613a57c28c05786db5"/><file name="CartSave.php" hash="12122d801ff6b8be4e1011bb5b0a2fac"/><file name="Form.php" hash="f3e3e6eb00a562c2c9d9982002d919b9"/><file name="Info.php" hash="c8b5f6584a4f9509465543eff575b9bf"/><file name="Novaforma.php" hash="bb3d5b10530e42aaaf0512b1256ef520"/><file name="Redirect.php" hash="67e925c23a929f7e86b8a2ddfceb30a4"/><file name="SuccessDetails.php" hash="38bacf81b6bb7197812d382eb30c2849"/><file name="SuccessRecurring.php" hash="f10661bf737963e896abda8c76f2e900"/></dir></dir><dir name="Helper"><file name="Data.php" hash="c8446f51a9fff30e01b8dbafe5011d3f"/></dir><dir name="Model"><file name="Admin.php" hash="fbf30f6692af7accab65fc510ed1c324"/><dir name="Adminhtml"><dir name="Method"><file name="Boleto.php" hash="e18c37bc0809131bfcd2cd48e3ba26c6"/><file name="Cc.php" hash="9d7ea1d6ee3211b8b773c75caa186895"/><file name="Tef.php" hash="a9cd73fc05421ab5a57455e35be6449c"/></dir></dir><file name="Api.php" hash="3c56fd9db2876268beea454124610945"/><dir name="Method"><file name="Boleto.php" hash="207360169ff21ebd28f51ce4cfbc332a"/><file name="BoletoRecurring.php" hash="4114ae194d6c40e9465985640e44526e"/><file name="Cc.php" hash="9cba347066280f534fbe8b89add36be5"/><file name="CcRecurring.php" hash="86d7c1a4b1f6a00bf14d469ea4d6dfc1"/><file name="Tef.php" hash="97716f1e29dde587a6a997ece801a5bc"/></dir><dir name="Mysql4"><file name="Collection.php" hash="97a5f80b4f89f83884481284785e2eeb"/><file name="Write.php" hash="d942fb856c2c7eaceac6866d88d85c54"/></dir><file name="Observer.php" hash="4ae2cdd2476499ec42b3ce7c08f96943"/><file name="Orders.php" hash="8de01cfc16794f2ded44c7a04be987a3"/><file name="Recurringapi.php" hash="7ef528c88d5d5e0cdb85ca45d8a3f190"/><dir name="Resource"><file name="Custommodel.php" hash="660a4b13ed53781dca0776830d2f44ed"/></dir><dir name="Sales"><dir name="Order"><dir name="Total"><dir name="Creditmemo"><file name="Fee.php" hash="b67ac4751127fbe629f3dd18b106da4e"/></dir><dir name="Invoice"><file name="Fee.php" hash="5e48ddfd32f32b33158457ab846a474c"/></dir></dir></dir><dir name="Quote"><dir name="Address"><dir name="Total"><file name="Fee.php" hash="1350d2100bb7b21cd9c268f370cba155"/></dir></dir></dir></dir><dir name="Source"><file name="Ambiente.php" hash="76749ed0937e4882357b23ac74ee22a0"/><file name="FormasPagamento.php" hash="9edf4a675cd6340a5fabd19996361eb4"/><file name="Holded.php" hash="91b7d0376723f0533b024eafae411f82"/><file name="Layout.php" hash="212b1597bdbc653a2c7c0ad94e710474"/></dir><file name="Standard.php" hash="a9d1d7aa440eaa93b87f232304cb1255"/><file name="Write.php" hash="2fa2858e62c781d368e9f53faa578dc5"/></dir><dir name="controllers"><file name="IndexController.php" hash="257d2748daf312ab546e234325a1ce74"/><file name="RecurringController.php" hash="cc20758ace2c4bfa51f376caf18971b1"/><file name="StandardController.php" hash="f1185941787fa54ff0bb155261a60670"/></dir><dir name="etc"><file name="adminhtml.xml" hash="1a54627d1dd35f685aa9fa2068ad7336"/><file name="config.xml" hash="e83def0640d09f4e7ee073bbaa1ee5cb"/><file name="system.xml" hash="759e1c721a00415d6f2ad54c2373c505"/></dir><dir name="sql"><dir name="transparente_setup"><file name="mysql4-install-0.1.0.php" hash="b44ad1c3b1558fb859600faf9c0d9c8d"/><file name="mysql4-upgrade-0.1.0-0.2.0.php" hash="81fca0fb48f978b4bfd697f17d7da05c"/><file name="mysql4-upgrade-0.1.0-0.2.2.php" hash="4026d30782262aba9040eaa9ac656dab"/><file name="mysql4-upgrade-0.2.0-0.2.1.php" hash="595c8684baa681ec619f5a0d335a4a33"/><file name="mysql4-upgrade-0.2.0-0.2.3.php" hash="596bb5051a36e2b89c57d6e65752b8d3"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="moip_transparente.xml" hash="5fdff234b2e3e62c8f1857f9bf638bba"/><file name="moip_onestepcheckout.xml" hash="d9c83c04973ad72160796f1c6859cb44"/></dir><dir name="template"><dir name="MOIP"><dir name="customer"><dir name="address"><file name="book.phtml" hash="07747e72a21de6cc5ba6afa9ccc3aed1"/><file name="edit.phtml" hash="9ea60abf23fd6d0ca04c528d75f67e35"/></dir><dir name="widget"><file name="dob.phtml" hash="fc4646c6f8f786e2e72e473bbdaf94bc"/><file name="taxvat.phtml" hash="67333f779d3c7503209ce057a3b44c34"/></dir></dir><dir name="onestepcheckout"><dir name="cadastro"><file name="CreateAccount.phtml" hash="8161a6cf78af954f671fbe39c5409e35"/><dir name="billing"><file name="billingform.phtml" hash="f7020c0f158575800cdc8d256a5ccfb0"/></dir><file name="billing.phtml" hash="601777b8bb81397682644f0b3a5bb48c"/><dir name="logged"><file name="forgotpassword.phtml" hash="01a4f512208b98042d8007151e2ae646"/><file name="login-pre.phtml" hash="c6fb46f65aa08edd7679c3b4e9277bf4"/></dir><file name="onepagejs.phtml" hash="bae17ddaed80f065bf5861a1b9a1e1bb"/></dir><dir name="daskboard"><dir name="onepage"><file name="agreements.phtml" hash="5b762aa76287b160fcbec8fed8b789e8"/><dir name="billing"><file name="billingform.phtml" hash="ab7c63247f6b3621e6113749dea1d631"/></dir><file name="billing.phtml" hash="601777b8bb81397682644f0b3a5bb48c"/><file name="coupon.phtml" hash="f53bbf81c555e3aa7f46c73e73233d16"/><file name="forgotpassword.phtml" hash="01a4f512208b98042d8007151e2ae646"/><file name="local.xml" hash="8d97f2c4d496b6a9ddf0a5453c861c80"/><file name="login.phtml" hash="08e7e9b4b3aa0b727d5ce35963de5db4"/><dir name="payment"><file name="methods.phtml" hash="0130a95f8d2e31f54b33ac701aadbdf6"/></dir><file name="payment.phtml" hash="3460a788826602c1059c2c4181ac2d27"/><dir name="review"><file name="button.phtml" hash="4d5c7c5a2d70f85ec324e79c7e81946b"/><file name="info.phtml" hash="84647398b66c129520413a957b4cb053"/><file name="info_simple.phtml" hash="423835c379f4f48f92f59fbcbbe79919"/><file name="item.phtml" hash="0634a6ab2409000d64a7f7e766935795"/><dir name="options"><file name="additional.phtml" hash="c7623ae5c2736421c911ed77fce09d4b"/></dir><file name="options.phtml" hash="35d426f28c2b87a853f811ab7a18e544"/><file name="totals.phtml" hash="2ba2a0937b2a08cd1f1bff1c8cf15c14"/><file name="totals_simple.phtml" hash="2d9a81ef0db47332f0e9c2105121c5fa"/></dir><file name="review.phtml" hash="145c515f7353809bf75113b67d014ad2"/><dir name="shipping"><file name="shipping_form.phtml" hash="0830100d1cc18a3885c39e79a00f769f"/></dir><file name="shipping.phtml" hash="09747a1b91974d35412d774cc53deb99"/><dir name="shipping_method"><file name="available.phtml" hash="8a815e7d1bc4e2b24a127c92c479e6bb"/></dir><file name="shipping_method.phtml" hash="d2b6d4e99c21febfbd122e548464e011"/></dir></dir><file name="daskboard.phtml" hash="4d9e67e60894d740fc3043e39b97fb46"/><file name="emptyupdate.phtml" hash="7bf34446254428a5c42740731127b435"/><file name="onepagejs.phtml" hash="ba60b07df1a09cb88580cbcfb3081619"/><dir name="page"><file name="1column.phtml" hash="696ed828b609ca6f681aec0b6ee2a6d1"/><file name="footer.phtml" hash="90bac8e4118dced808b68c33a19951ec"/><file name="single-header.phtml" hash="d71dea9b988ccb1879ed17493373168a"/></dir><file name="progresso.phtml" hash="1c96e111ef12a90c9c401babf4b32bbd"/><dir name="sales"><dir name="order"><dir name="info"><file name="customermessages.phtml" hash="813c6150e0e309612f40c9aee0d63c84"/><file name="customermessages.phtml~" hash="aa6199bb564edbf6d950fa154b624c02"/><file name="deliverydate.phtml" hash="a188cdefd8c346c28dbe2737097b208e"/><file name="deliverydate.phtml~" hash="75709e72398a0df41305dee259dc3de2"/></dir><file name="info.phtml" hash="a5b6b9223ec3d5da923e04f8becc84f3"/><dir name="view"><dir name="tab"><dir name="info"><file name="customermessages.phtml" hash="7de74c4598eceef2d17215585252f740"/><file name="deliverydate.phtml" hash="6e1260a32a1f6801ac185ef38a33114c"/></dir><file name="info.phtml" hash="57f4718dbfaa448976954368c1932b2b"/></dir></dir></dir></dir></dir><dir name="product"><dir name="list"><file name="parcelas.phtml" hash="9949b22a379f0d3dd3280ac5ef2ec1aa"/></dir><dir name="view"><file name="discount.phtml" hash="c0da2db78abfa783b0371081a7022708"/><file name="parcelas.phtml" hash="03d3f9abafdbd3eac5de21959feda06a"/></dir></dir><dir name="transparente"><file name="SuccessDetails.phtml" hash="4a9ce00efb864182add86a707e960373"/><file name="cartoes_my_account.phtml" hash="1614656ebf335b419e727dc77ac1872f"/><dir name="checkout"><dir name="sales"><dir name="order"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="92632830eb4c9da086b5f0e6e009c91c"/></dir></dir><file name="totals.phtml" hash="6477e543bda9576c165c1f6535dd210e"/></dir></dir><dir name="success"><file name="boleto.phtml" hash="7b7bf59324f817c97ce6086f3dce9a39"/><file name="success.phtml" hash="5ec122e95d05067f9cbe8b4d14e8ea1e"/></dir></dir><file name="emptyupdate.phtml" hash="5504d0197f33a3db19ae9f75b5a43b86"/><dir name="form"><file name="boleto.phtml" hash="1ce47db3c03c369c210cf84d5faf71a8"/><file name="cc.phtml" hash="190c8fa96f0b3f5c0dc65bcd4d52299b"/><file name="recurring.phtml" hash="328096b3dd3c33e5168ef589ede3e665"/><file name="tef.phtml" hash="007b06785147218cac812540df06bae6"/></dir><file name="horizontal_form.phtml" hash="5c0faf030d2f6ab70db994a738a3802c"/><dir name="info"><file name="admin.phtml" hash="6d22084d77797f31ec3c2ddf1d553f18"/><file name="boleto.phtml" hash="5ad35332c6e26388e315c939e90f1233"/><file name="boletorecurring.phtml" hash="b009def412655e442222ae7f25859628"/><file name="cc.phtml" hash="785a305ead96710b7ca48b5f001271fd"/><file name="tef.phtml" hash="eaf549920ac0c2e73e2222bfb82d9b82"/></dir><dir name="onclick"><file name="Button.phtml" hash="d19fa9db94b23448838c4ba558b9ed0d"/><file name="LoginOnclick.phtml" hash="034b27d272993dce6664bf8e6b64d8d2"/><file name="MoipOnclick.phtml" hash="0a62dc2d7259a10705b664720cf604e0"/><file name="Parcelas.phtml" hash="566c445c3ab4c41e4c0ee1dad735883a"/><file name="PaymentMethod.phtml" hash="2f80a6d4709d3860cef1f1da4f07dc94"/><file name="ShippingAddress.phtml" hash="10ab67699295331027c985b9d89113a4"/><file name="ShippingMethods.phtml" hash="fbcb438d723cea5e62f6a2cf8fae3721"/><file name="js.phtml" hash="19049dbed5e0369303430698b94e7062"/></dir><dir name="redirect"><file name="boleto.phtml" hash="bf53ff32e92e4d7890b4d27838b6b941"/><file name="cartao.phtml" hash="1699df8b1205b1d5ab846c6b1cee0312"/><file name="layout_boleto.phtml" hash="8d91c7873e692648a7c1d9bd29091793"/><file name="transferencia.phtml" hash="bf869064e0542a95c6a2de98b276b1bc"/></dir><file name="redirect.phtml" hash="c4f7f6fb47602100f6e09f7dbe56322b"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="MOIP"><dir name="account"><dir name="system"><dir name="config"><dir name="button"><file name="button.phtml" hash="a58ebe4073491f8f6c43b890fe3a394a"/></dir></dir></dir></dir><dir name="onestepcheckout"><dir name="sales"><dir name="order"><dir name="view"><dir name="tab"><dir name="info"><file name="Customermessages.phtml" hash="336f1612d37946b870e3ac5e18e52dc1"/></dir><file name="info.phtml" hash="1b6b38d40668d878487f1710a28c1e69"/></dir></dir></dir></dir></dir><dir name="sales"><dir name="order"><dir name="view"><file name="info.phtml" hash="c6aa8255f5c494857c557a21a59e3367"/></dir></dir></dir><dir name="transparente"><file name="Novaforma.phtml" hash="49d046daa42bae37c1c5e80ff88c3e0d"/><file name="SuccessDetails.phtml" hash="2835e1bad2aeb2c6da0f1a37698a0919"/><file name="boleto.phtml" hash="51e688993d1e51662b427fb8876d4543"/><file name="cartao.phtml" hash="ab138a2c019a14bcff47a9a24f9375ac"/><file name="cartoes_my_account.phtml" hash="1614656ebf335b419e727dc77ac1872f"/><file name="emptyupdate.phtml" hash="5504d0197f33a3db19ae9f75b5a43b86"/><dir name="form"><file name="admin.phtml" hash="aeb89bec1f82fac1fa489aa8b649ba51"/><file name="boleto.phtml" hash="7837ded090d7162d8444abc92943c998"/><file name="cc.phtml" hash="36aad4686a0bbd6ccd49c82bf8aa3cc1"/><file name="cc_info.phtml" hash="1eb275e7c943dcca608c5a3038c2a41a"/><file name="tef.phtml" hash="48b06cf947ee26b27311aadae012c730"/><file name="tef_info.phtml" hash="1eb275e7c943dcca608c5a3038c2a41a"/></dir><file name="form.phtml" hash="2085219ca42621f5ab0172cba283ee1a"/><file name="horizontal_form.phtml" hash="0f662bb905c79187454513b73fce2184"/><dir name="info"><file name="admin.phtml" hash="e4d4c7d6fadf9849ba4de459a5670fcd"/><file name="boleto.phtml" hash="5ad35332c6e26388e315c939e90f1233"/><file name="cc.phtml" hash="722c9b18f1da1c58575dd0817dfca5da"/><file name="pdf.phtml" hash="4b61a33fa3736e6c461cf4e9fd983398"/><file name="tef.phtml" hash="eaf549920ac0c2e73e2222bfb82d9b82"/></dir><file name="info.phtml" hash="1eb275e7c943dcca608c5a3038c2a41a"/><dir name="redirect"><file name="boleto.phtml" hash="51e688993d1e51662b427fb8876d4543"/><file name="cartao.phtml" hash="ab138a2c019a14bcff47a9a24f9375ac"/><file name="layout_boleto.phtml" hash="8d91c7873e692648a7c1d9bd29091793"/><file name="transferencia.phtml" hash="bf869064e0542a95c6a2de98b276b1bc"/></dir><file name="redirect.phtml" hash="c6ca09427cccb6038b5eaac783d1ace7"/><file name="script.phtml" hash="1da65a08f8a6425a2f463e617d8ac9e0"/><file name="transferencia.phtml" hash="ba3d60beab741b28bdf0e037fe6730b5"/></dir></dir></dir><dir name="layout"><file name="moip_onestepcheckout.xml" hash="c560a0a699348e116b8ffeef56be490a"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="MOIP_All.xml" hash="5b4232633c10117c66c4054b95984c0d"/><file name="MOIP_Transparente.xml" hash="ab4257449d5d37535d98c590bc896443"/><file name="MOIP_Onestepcheckout.xml" hash="07ae6f8ec3e1bccc5001ae9a8386c3fc"/></dir></target><target name="magelocale"><dir><dir name="en_US"><file name="MOIP_Onestepcheckout.csv" hash="d7fd83d1c115af767311368be3b3a2e4"/></dir><dir name="pt_BR"><file name="MOIP_Onestepcheckout.csv" hash="d7fd83d1c115af767311368be3b3a2e4"/></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="MOIP"><dir name="core"><dir name="css"><file name="bootstrap-modal.css" hash="e8d43b8285718d5c0b9f9a83ebfdbbca"/><file name="bootstrap-popover.css" hash="e1c6ddd150ea0a5da1cc3afa669ec921"/><file name="bootstrap-tabs.css" hash="6b3cdf6b171a0d6da7fdfe9f6c6ba7ec"/></dir></dir><dir name="onestepcheckout"><dir name="css"><file name="onestepcheckout.css" hash="7a1538bc463922db283a99aea3924931"/></dir><dir name="images"><file name="01.png" hash="4713bea09af9f742b6c2122f6fb59912"/><file name="02.png" hash="15cb983a16c4c1d8be6479ae5de625e6"/><file name="03.png" hash="3bc178975c6f25aecdaebbb7e86adaea"/><file name="04.png" hash="68ae3a414c70c12f340e7c801d854c53"/><file name="05.png" hash="6e8fe636f0593ed3cf00d140e68d2308"/><file name="ajax-loader-tr.gif" hash="6aadaa7b6f0a72ec38b7ca13c35e76f3"/><file name="bkg-giftmessage.png" hash="e0dc9f84c687af088bcc04e3ea200e0b"/><file name="bkg-step-review.png" hash="5acb4aba6f616dabbd8c94581d99122c"/><file name="error-icon.jpg" hash="8e44669e97a57d1d5cd00cb8b42fb506"/><file name="fancy_title_over.png" hash="b886fd165d4b7ac77d41fb52d87ffc60"/><file name="loja_segura.jpg" hash="327ad46c035ce265eaa5c5d85c0aa57a"/><file name="opc-ajax-loader.gif" hash="c289d3760794d891738c3de9a25bd298"/><file name="passed-icon.jpg" hash="c7b3467752d8ab38c8bcde4baaad505f"/><file name="validation_advice_bg.gif" hash="4903665d3dff3903fd31f87b82dffbd5"/></dir></dir><dir name="transparente"><dir name="css"><file name="cartao_save.css" hash="c6f20ba395b66de7abbec30b980de70d"/><file name="form.css" hash="a20913a06033cfa33f332d5c181aaf57"/><file name="redirect.css" hash="9e8385d037fa8690df6052ec051afc82"/></dir><dir name="imagem"><file name="AmericanExpress.png" hash="40ea216476033961d50f452bf4bca4df"/><file name="BancoDoBrasil.png" hash="572914d1e4b635dc56cd507c6c46b023"/><file name="Banrisul.png" hash="d4ac02772b3f521a92542b849e679092"/><file name="Bradesco.png" hash="ceb6a2aaf263fc359fabaf6f102cb8db"/><file name="Diners.png" hash="0f4264379e7b8ba6b1a30a3d69240ae2"/><file name="Elo.jpg" hash="d849a077b3033a5593b948c637ce99eb"/><file name="Elo.png" hash="dac4f02eb184c9e950bbcaf5d788f04d"/><file name="Hiper.jpg" hash="bce8dd2429c800aca14d9c5291a20abf"/><file name="Hiper.png" hash="fb470078d57f645fdbcc8405776a769e"/><file name="Hipercard.png" hash="c25430ddd8e441cc2fc3ef68219e7668"/><file name="Itau.png" hash="40d639fe4b14d063d810589577f0eb7d"/><file name="Mastercard.png" hash="836466c092121163320e9e6279f11f8b"/><file name="Visa.png" hash="cc0709d50773fa2815f7bfeb741a4219"/><file name="ajax-loader.gif" hash="a6addc833d7e5401b13e3e6368854181"/><dir name="azul"><file name="ababoleto.png" hash="47e3ede4db46d5938a68f126bb68bcfe"/><file name="abacartao.png" hash="667954485c4082bafa84920073288453"/><file name="abatransf.png" hash="0623c4cf50653b9c13d12cca5eed43f6"/></dir><file name="banktransfer.png" hash="097193377d68a8d249534e7b097b17f3"/><file name="bb.png" hash="572914d1e4b635dc56cd507c6c46b023"/><file name="boleto.png" hash="270edbd8f289228beb39d300da96029e"/><dir name="branco"><file name="ababoleto.png" hash="f3baeeaf41a6528905b97d825ac67cf7"/><file name="abacartao.png" hash="684d8a48644f55f2c3504da1f51a350b"/><file name="abatransf.png" hash="ea6f42607620ea8f8dca34c1fc98b42b"/><file name="e-sedex.gif" hash="24d2a4e6a39d33a263f2605bb1fdf9dd"/><file name="e-sedex.png" hash="19c04d68032987d594c4da51e3b66094"/><file name="pac.gif" hash="9e6328e16b3d29e94fcd6987c605ee90"/><file name="pac.png" hash="17aaff70f9924a8e37166429ceae549e"/><file name="sedex.gif" hash="9019cbbbf623e0ba58d5f3c7c81c3ee2"/><file name="sedex.png" hash="15e2831cad72756b9a9bf99a6e2af5e5"/></dir><file name="codigo-seguranca.png" hash="b1cdecab044511593083ff18033d4e4f"/><file name="freeshipping_freeshipping.gif" hash="cfc75257c8e52ff1b0a9e2f957667cec"/><file name="moip.png" hash="14273d22979881d4a57c960b952866e3"/><file name="moip_boleto.png" hash="c7619a9e9c0978df5a3b87b45dbc616f"/><file name="moip_brands_card.jpg" hash="a01377d0afa7ddd802a286c249ffcb90"/><file name="moip_cc.png" hash="cd1c4b1210235e1ec371370b185f75b1"/><file name="moip_tef.png" hash="097193377d68a8d249534e7b097b17f3"/><file name="moiphiper.png" hash="c25430ddd8e441cc2fc3ef68219e7668"/><file name="moipmaster.png" hash="836466c092121163320e9e6279f11f8b"/><file name="moipvisa.png" hash="cc0709d50773fa2815f7bfeb741a4219"/><dir name="preto"><file name="ababoleto.png" hash="a728ac886e7e57744e62bba2c7b0b969"/><file name="abacartao.png" hash="50b6103cb5b7e51a27f3c26eaa7411d0"/><file name="abatransf.png" hash="61eec388356aea3230fc5d811ef996ea"/></dir><dir name="verde"><file name="ababoleto.png" hash="3c3e047acb513328ebdfd6bfc9c339fa"/><file name="abacartao.png" hash="809d7e21263b3474d1685087a91ca18a"/><file name="abatransf.png" hash="0e3e6bdba002a69be78e126f3e7e775f"/></dir><dir name="vermelho"><file name="ababoleto.png" hash="0d84f05b75c8e964122c4f087268bd1c"/><file name="abacartao.png" hash="63b85e98d5b77c6a373bc351080e60f4"/><file name="abatransf.png" hash="0bef9fec6108a914ebc108f3c600c013"/></dir></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="MOIP"><dir name="transparente"><dir name="imagem"><file name="AmericanExpress.png" hash="40ea216476033961d50f452bf4bca4df"/><file name="BancoDoBrasil.png" hash="572914d1e4b635dc56cd507c6c46b023"/><file name="Banrisul.png" hash="d4ac02772b3f521a92542b849e679092"/><file name="Bradesco.png" hash="ceb6a2aaf263fc359fabaf6f102cb8db"/><file name="Diners.png" hash="0f4264379e7b8ba6b1a30a3d69240ae2"/><file name="Elo.jpg" hash="dac4f02eb184c9e950bbcaf5d788f04d"/><file name="Elo.png" hash="dac4f02eb184c9e950bbcaf5d788f04d"/><file name="Hiper.jpg" hash="fb470078d57f645fdbcc8405776a769e"/><file name="Hiper.png" hash="fb470078d57f645fdbcc8405776a769e"/><file name="Hipercard.png" hash="c25430ddd8e441cc2fc3ef68219e7668"/><file name="Itau.png" hash="40d639fe4b14d063d810589577f0eb7d"/><file name="Mastercard.png" hash="836466c092121163320e9e6279f11f8b"/><file name="Visa.png" hash="cc0709d50773fa2815f7bfeb741a4219"/><file name="btn-login-moip.png" hash="3459add85a9d0d069cdf6ea0cc5d2814"/><file name="moip_brands_card.jpg" hash="738ed90e8f040993ef9ebfb1517482d6"/><file name="moipamerican.png" hash="40ea216476033961d50f452bf4bca4df"/><file name="moipbanner2.png" hash="1c24f42b0cbb05f00ea779d3a719ebe1"/><file name="moipdiners.png" hash="0f4264379e7b8ba6b1a30a3d69240ae2"/><file name="moiphiper.png" hash="c25430ddd8e441cc2fc3ef68219e7668"/><file name="moipmaster.png" hash="836466c092121163320e9e6279f11f8b"/><file name="moipvisa.png" hash="cc0709d50773fa2815f7bfeb741a4219"/></dir></dir></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="MOIP"><dir name="core"><file name="bootstrap-modal.js" hash="33eee22cac655155b91eadd1e7b6e417"/><file name="bootstrap-tab.js" hash="ceef3daf42068b97915c25e392f81b8b"/><file name="bootstrap.min.js" hash="4becdc9104623e891fbb9d38bba01be4"/><file name="jquery.js" hash="315136162c3a659832e0f3bc79377315"/><file name="jquery_noconflict.js" hash="d41c4c89089b9e7e06a4a104ae37018f"/></dir><file name="jquery.js" hash="f8e2833ce2f57ec673b178be7eefbd82"/><file name="jquery.mask.min.js" hash="c5e89b28b44bdd0319c64fb6451a819d"/><file name="jquery_noconflict.js" hash="3edd24e3725ffc4569238df773b805f8"/><dir name="onestepcheckout"><file name="billing.js" hash="9d5f468c9e8d10e32781d347f2b8e41b"/><file name="change-events.js" hash="7a56dfda6d371393034912ff702f1830"/><file name="shipping.js" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir><dir name="transparente"><file name="moip.js" hash="5667e0ae375ce0af1701f0b65189f0d7"/><file name="oneclick.js" hash="c57e4938898692222f825a2bb3ca0238"/></dir><file name="validacao.js" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></dir></target></contents>
21
  <compatible/>
22
  <dependencies><required><php><min>5.0.0</min><max>15.5.5</max></php><extension><name>openssl</name><min>1</min><max>1</max></extension><extension><name>PDO</name><min>1</min><max>1</max></extension><extension><name>mcrypt</name><min>1</min><max>1</max></extension></required></dependencies>
23
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>o2ti_moip</name>
4
+ <version>2.0.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://moip.com/licensa_checkout_transparente.txt">Exclusivo para clientes Moip Pagamentos S/A</license>
7
  <channel>community</channel>
15
  </description>
16
  <notes>V2</notes>
17
  <authors><author><name>MOIP</name><user>moip</user><email>contato@o2ti.com</email></author></authors>
18
+ <date>2016-05-30</date>
19
+ <time>13:52:12</time>
20
+ <contents><target name="magelocal"><dir name="MOIP"><dir name="Account"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Form"><dir name="Button"><file name="Button.php" hash="007feb0784ae1478f0ae0990081f8620"/></dir><dir name="Field"><file name="Date.php" hash="0870f256c23b9a7eac0c7e9e7622ff27"/><file name="Selectcron.php" hash="85c0eceec8c74aa841bc1128f3ce1a4a"/><file name="Text.php" hash="101389c0b3a334919bf4efa5a8012eb5"/></dir></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="d46e407f76d70a006d456a33b7210d25"/></dir><dir name="Model"><file name="Observer.php" hash="9b28f254978c7576bf361d6f757bcf22"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="MoipaccountController.php" hash="2c0831f968c67fcfdc0cd840e06f00fa"/></dir></dir><dir name="etc"><file name="config.xml" hash="a21af3d69524bab554faebb174b19698"/><file name="system.xml" hash="416cc1192af6e508c945b03483e92964"/></dir></dir><dir name="All"><dir name="Helper"><file name="Data.php" hash="10b776758585cb50355c0d6d0a5fdd5b"/></dir><dir name="etc"><file name="config.xml" hash="0d6788a7062e82243626e1caf3987a4d"/><file name="system.xml" hash="825545991621cd6e0fc34a19476d78cc"/></dir></dir><dir name="Onestepcheckout"><dir name="Block"><dir name="Adminhtml"><dir name="Onestepcheckout"><dir name="Sales"><dir name="Order"><dir name="View"><dir name="Tab"><dir name="Info"><file name="Customermessages.php" hash="ddb3c364bb288b2e48f5ca20dbaf262b"/></dir></dir></dir></dir></dir></dir><dir name="System"><dir name="Config"><file name="Editor.php" hash="620ffe2b11d51c059aae85d069d17dd9"/></dir></dir></dir><dir name="Checkout"><dir name="Cart"><file name="Promotion.php" hash="40ade64028b400796d0fb77060703370"/></dir><dir name="Onepage"><dir name="Billing"><file name="Sortbilling.php" hash="aac00cf619be021d627bc6d6e0632247"/></dir><file name="Billing.php" hash="c41241da962110ee7bca3c7656148bde"/><dir name="Review"><file name="Info.php" hash="8585d5415e0589c9ffc53c160921cdb0"/><file name="Options.php" hash="7e3a4f53f4d687536ae3ff80728c0cc4"/></dir><file name="Shipping.php" hash="40b5b13c8408bac25d7eb45f6ddbdc86"/></dir></dir><file name="Onestepcheckout.php" hash="f6a3bc3e394fbadd34985586f71ee782"/></dir><dir name="Helper"><file name="Data.php" hash="5c19376368e6b2f744b448f0012f693e"/></dir><dir name="Model"><dir name="Customer"><file name="Customer.php" hash="f038378053e082fea387c16056624540"/></dir><dir name="Mysql4"><dir name="Onestepcheckout"><file name="Collection.php" hash="cb452401f753d3cd63196488d2985e09"/></dir><file name="Onestepcheckout.php" hash="370e27b4bdd3d450fff995f94bc74ad3"/></dir><file name="Observer.php" hash="e8b37e9fb11cf2f47eb61d1629927ed1"/><file name="Onestepcheckout.php" hash="90db8eeb14fc762e79098edfac0684f8"/><dir name="Sales"><dir name="Quote"><file name="Address.php" hash="904bdc6b5836ccdbb91810dba55b4a4b"/></dir></dir><file name="Status.php" hash="cd2132bb22a1992e6ea762586391733b"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Checkuncheck.php" hash="febcb4b243d5e09ae7b77d603af45d63"/><file name="Disablefield.php" hash="196dcdb92863dbe110a8edc0be4cf953"/><file name="Optionaddfield.php" hash="574f6f8d27245ab4f0d0362372f5082d"/><file name="Optionhidefield.php" hash="0cf65ef82933d93293eaada3125c3b1d"/><file name="Pagelayout.php" hash="b6ca9f9394e84806aecc39f5e62c11d5"/><dir name="Payment"><file name="Allowedmethods.php" hash="d1f4b5a2e79f2f9378fb58a88ce2732b"/></dir><file name="Subscribenewletter.php" hash="a4c99e4f5417aa1b6d42364f4c83258c"/></dir></dir></dir></dir><dir name="controllers"><file name="IndexController.php" hash="84956d00de1473ad3bf4a9098a037d46"/><file name="OrderController.php" hash="67f444751f3bc90bf9a4eca8e5e16c02"/><file name="TestController.php" hash="0ee82be0e1607d92fb4afa2bc6886b57"/></dir><dir name="etc"><file name="config.xml" hash="6da1f67c15a989f4d55b327e2c04e09b"/><file name="system.xml" hash="361dfe0b7931bc76a2026b2d3e1e4898"/></dir><dir name="sql"><dir name="moip_onestepcheckout_setup"><file name="mysql4-install-0.1.0.php" hash="ca03016b7dc2a6c84e258b9e7248e5ff"/><file name="mysql4-upgrade-0.1.0-0.2.0.php" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></dir></dir><dir name="Transparente"><dir name="Block"><dir name="Adminhtml"><dir name="Info"><file name="Boleto.php" hash="8839b160428c9bbe482c79a9637e9889"/><file name="Cc.php" hash="2e457a673e02024472f8145201cfb519"/><file name="Tef.php" hash="aaf85a2846426db34534c56eacbe3f01"/></dir><dir name="Sales"><dir name="Order"><dir name="Create"><dir name="Totals"><file name="Fee.php" hash="ff5c32dc11ba021ce5a08feece2c95c8"/></dir></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Form"><dir name="Fieldset"><dir name="Modules"><file name="Header.php" hash="b0fd3aa33c52191c41a486f3077f3564"/><file name="Oauth.php" hash="0d7425a67467f24348edb88a15fef4ea"/><file name="Reset.php" hash="66b629c16de08ffaf1826df704ff3158"/></dir></dir></dir></dir></dir><dir name="moip"><dir name="Info"><file name="Boleto.php" hash="65cc077e82ff199700a2741ff9e4d128"/><file name="Cc.php" hash="386ec65663d683c611a6f53d7e90365d"/><file name="Info.php" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="Tef.php" hash="c93516fb7d7e308c1e09d9583164b17b"/></dir></dir></dir><dir name="Checkout"><dir name="Totals"><file name="Fee.php" hash="77b13900da5c1fbda76bc59d12c50c58"/></dir></dir><dir name="Form"><file name="Admin.php" hash="8e14d3f9688bb9276b289749ac103876"/><file name="Boleto.php" hash="838b429eb4963a6946570836cf248475"/><file name="Cc.php" hash="bf49ad37ddfd9c68c705ca0ed4b41072"/><file name="Recurring.php" hash="3b05247c93000b5348f48a0924d916e9"/><file name="Tef.php" hash="ddbe5dfafbdcb22ec9d4fb901452f879"/></dir><dir name="Info"><file name="Admin.php" hash="d9f032feed4a4b8a4cd2ba920556ddee"/><file name="Boleto.php" hash="65cc077e82ff199700a2741ff9e4d128"/><file name="Boletorecurring.php" hash="3c2cefde47b7fd19361402dd8330c9f7"/><file name="Cc.php" hash="1a10028a49805b73db3a621a8171e605"/><file name="Tef.php" hash="c93516fb7d7e308c1e09d9583164b17b"/></dir><dir name="Onclick"><file name="Button.php" hash="2f1b70163cae117458228219cd37b790"/><file name="MoipOnclick.php" hash="ed325429be5a897762b89e860064e6bd"/><file name="PaymentMethod.php" hash="ab03241a3dc85f8537df83e5e294d385"/><file name="ShippingAddress.php" hash="bd069a1a705a60688fed1184ac84e76f"/><file name="ShippingMethods.php" hash="3084994424c4adcc12e700ad3f5c1226"/><file name="UpdateParcelas.php" hash="e5eb7e7ac75fbfcc8fc369e95ad3811a"/></dir><dir name="Product"><dir name="List"><file name="Parcelas.php" hash="df5d74cbf099971722dede2e279afc6c"/></dir><file name="List.php" hash="881a94bac6f0dfd100c39c1416c54b07"/><dir name="View"><file name="Discount.php" hash="74daeb4dc2e02fbfec5460edf6c1acdd"/><file name="Parcelas.php" hash="1b2c92b9e10da86523341cdb1e4bb4a7"/></dir><file name="View.php" hash="54f00539a0ce45c0aecdbd05d3a0323d"/></dir><dir name="Sales"><dir name="Order"><file name="Fee.php" hash="c468eae460f961c148ae542d95fc08a0"/></dir></dir><dir name="Standard"><file name="Cancel.php" hash="e7ebf3cdb13dcb613a57c28c05786db5"/><file name="CartSave.php" hash="12122d801ff6b8be4e1011bb5b0a2fac"/><file name="Form.php" hash="f3e3e6eb00a562c2c9d9982002d919b9"/><file name="Info.php" hash="c8b5f6584a4f9509465543eff575b9bf"/><file name="Novaforma.php" hash="bb3d5b10530e42aaaf0512b1256ef520"/><file name="Redirect.php" hash="67e925c23a929f7e86b8a2ddfceb30a4"/><file name="SuccessDetails.php" hash="38bacf81b6bb7197812d382eb30c2849"/><file name="SuccessRecurring.php" hash="f10661bf737963e896abda8c76f2e900"/></dir></dir><dir name="Helper"><file name="Data.php" hash="c8446f51a9fff30e01b8dbafe5011d3f"/></dir><dir name="Model"><file name="Admin.php" hash="fbf30f6692af7accab65fc510ed1c324"/><dir name="Adminhtml"><dir name="Method"><file name="Boleto.php" hash="e18c37bc0809131bfcd2cd48e3ba26c6"/><file name="Cc.php" hash="9d7ea1d6ee3211b8b773c75caa186895"/><file name="Tef.php" hash="a9cd73fc05421ab5a57455e35be6449c"/></dir></dir><file name="Api.php" hash="0523f5f5fbc04d7946cd7f9b296a6955"/><dir name="Method"><file name="Boleto.php" hash="207360169ff21ebd28f51ce4cfbc332a"/><file name="BoletoRecurring.php" hash="4114ae194d6c40e9465985640e44526e"/><file name="Cc.php" hash="34db6def9d01fd1b0ed83cd43427f4cd"/><file name="CcRecurring.php" hash="86d7c1a4b1f6a00bf14d469ea4d6dfc1"/><file name="Tef.php" hash="97716f1e29dde587a6a997ece801a5bc"/></dir><dir name="Mysql4"><file name="Collection.php" hash="97a5f80b4f89f83884481284785e2eeb"/><file name="Write.php" hash="d942fb856c2c7eaceac6866d88d85c54"/></dir><file name="Observer.php" hash="4ae2cdd2476499ec42b3ce7c08f96943"/><file name="Orders.php" hash="8de01cfc16794f2ded44c7a04be987a3"/><file name="Recurringapi.php" hash="7ef528c88d5d5e0cdb85ca45d8a3f190"/><dir name="Resource"><file name="Custommodel.php" hash="660a4b13ed53781dca0776830d2f44ed"/></dir><dir name="Sales"><dir name="Order"><dir name="Total"><dir name="Creditmemo"><file name="Fee.php" hash="b67ac4751127fbe629f3dd18b106da4e"/></dir><dir name="Invoice"><file name="Fee.php" hash="5e48ddfd32f32b33158457ab846a474c"/></dir></dir></dir><dir name="Quote"><dir name="Address"><dir name="Total"><file name="Fee.php" hash="1350d2100bb7b21cd9c268f370cba155"/></dir></dir></dir></dir><dir name="Source"><file name="Ambiente.php" hash="76749ed0937e4882357b23ac74ee22a0"/><file name="FormasPagamento.php" hash="9edf4a675cd6340a5fabd19996361eb4"/><file name="Holded.php" hash="91b7d0376723f0533b024eafae411f82"/><file name="Layout.php" hash="212b1597bdbc653a2c7c0ad94e710474"/></dir><file name="Standard.php" hash="a9d1d7aa440eaa93b87f232304cb1255"/><file name="Write.php" hash="2fa2858e62c781d368e9f53faa578dc5"/></dir><dir name="controllers"><file name="IndexController.php" hash="1dec7ee7a57f7b2b86f0a6765bc6d85f"/><file name="RecurringController.php" hash="cc20758ace2c4bfa51f376caf18971b1"/><file name="StandardController.php" hash="f1185941787fa54ff0bb155261a60670"/></dir><dir name="etc"><file name="adminhtml.xml" hash="1a54627d1dd35f685aa9fa2068ad7336"/><file name="config.xml" hash="e83def0640d09f4e7ee073bbaa1ee5cb"/><file name="system.xml" hash="759e1c721a00415d6f2ad54c2373c505"/></dir><dir name="sql"><dir name="transparente_setup"><file name="mysql4-install-0.1.0.php" hash="a670fdca751bdf66c3420cab5b05e2a9"/><file name="mysql4-upgrade-0.1.0-0.2.0.php" hash="81fca0fb48f978b4bfd697f17d7da05c"/><file name="mysql4-upgrade-0.1.0-0.2.2.php" hash="4026d30782262aba9040eaa9ac656dab"/><file name="mysql4-upgrade-0.2.0-0.2.1.php" hash="595c8684baa681ec619f5a0d335a4a33"/><file name="mysql4-upgrade-0.2.0-0.2.3.php" hash="596bb5051a36e2b89c57d6e65752b8d3"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="moip_transparente.xml" hash="5fdff234b2e3e62c8f1857f9bf638bba"/><file name="moip_onestepcheckout.xml" hash="d9c83c04973ad72160796f1c6859cb44"/></dir><dir name="template"><dir name="MOIP"><dir name="customer"><dir name="address"><file name="book.phtml" hash="07747e72a21de6cc5ba6afa9ccc3aed1"/><file name="edit.phtml" hash="9ea60abf23fd6d0ca04c528d75f67e35"/></dir><dir name="widget"><file name="dob.phtml" hash="fc4646c6f8f786e2e72e473bbdaf94bc"/><file name="taxvat.phtml" hash="67333f779d3c7503209ce057a3b44c34"/></dir></dir><dir name="onestepcheckout"><dir name="cadastro"><file name="CreateAccount.phtml" hash="8161a6cf78af954f671fbe39c5409e35"/><dir name="billing"><file name="billingform.phtml" hash="f7020c0f158575800cdc8d256a5ccfb0"/></dir><file name="billing.phtml" hash="601777b8bb81397682644f0b3a5bb48c"/><dir name="logged"><file name="forgotpassword.phtml" hash="01a4f512208b98042d8007151e2ae646"/><file name="login-pre.phtml" hash="c6fb46f65aa08edd7679c3b4e9277bf4"/></dir><file name="onepagejs.phtml" hash="bae17ddaed80f065bf5861a1b9a1e1bb"/></dir><dir name="daskboard"><dir name="onepage"><file name="agreements.phtml" hash="5b762aa76287b160fcbec8fed8b789e8"/><dir name="billing"><file name="billingform.phtml" hash="ab7c63247f6b3621e6113749dea1d631"/></dir><file name="billing.phtml" hash="601777b8bb81397682644f0b3a5bb48c"/><file name="coupon.phtml" hash="f53bbf81c555e3aa7f46c73e73233d16"/><file name="forgotpassword.phtml" hash="01a4f512208b98042d8007151e2ae646"/><file name="local.xml" hash="8d97f2c4d496b6a9ddf0a5453c861c80"/><file name="login.phtml" hash="08e7e9b4b3aa0b727d5ce35963de5db4"/><dir name="payment"><file name="methods.phtml" hash="0130a95f8d2e31f54b33ac701aadbdf6"/></dir><file name="payment.phtml" hash="3460a788826602c1059c2c4181ac2d27"/><dir name="review"><file name="button.phtml" hash="4d5c7c5a2d70f85ec324e79c7e81946b"/><file name="info.phtml" hash="84647398b66c129520413a957b4cb053"/><file name="info_simple.phtml" hash="423835c379f4f48f92f59fbcbbe79919"/><file name="item.phtml" hash="0634a6ab2409000d64a7f7e766935795"/><dir name="options"><file name="additional.phtml" hash="c7623ae5c2736421c911ed77fce09d4b"/></dir><file name="options.phtml" hash="35d426f28c2b87a853f811ab7a18e544"/><file name="totals.phtml" hash="2ba2a0937b2a08cd1f1bff1c8cf15c14"/><file name="totals_simple.phtml" hash="2d9a81ef0db47332f0e9c2105121c5fa"/></dir><file name="review.phtml" hash="145c515f7353809bf75113b67d014ad2"/><dir name="shipping"><file name="shipping_form.phtml" hash="0830100d1cc18a3885c39e79a00f769f"/></dir><file name="shipping.phtml" hash="09747a1b91974d35412d774cc53deb99"/><dir name="shipping_method"><file name="available.phtml" hash="8a815e7d1bc4e2b24a127c92c479e6bb"/></dir><file name="shipping_method.phtml" hash="d2b6d4e99c21febfbd122e548464e011"/></dir></dir><file name="daskboard.phtml" hash="1d1dcfd7ca58ee1fc14fb0ec491319f9"/><file name="emptyupdate.phtml" hash="7bf34446254428a5c42740731127b435"/><file name="onepagejs.phtml" hash="ba60b07df1a09cb88580cbcfb3081619"/><dir name="page"><file name="1column.phtml" hash="696ed828b609ca6f681aec0b6ee2a6d1"/><file name="footer.phtml" hash="90bac8e4118dced808b68c33a19951ec"/><file name="single-header.phtml" hash="d71dea9b988ccb1879ed17493373168a"/></dir><file name="progresso.phtml" hash="1c96e111ef12a90c9c401babf4b32bbd"/><dir name="sales"><dir name="order"><dir name="info"><file name="customermessages.phtml" hash="813c6150e0e309612f40c9aee0d63c84"/><file name="customermessages.phtml~" hash="aa6199bb564edbf6d950fa154b624c02"/><file name="deliverydate.phtml" hash="a188cdefd8c346c28dbe2737097b208e"/><file name="deliverydate.phtml~" hash="75709e72398a0df41305dee259dc3de2"/></dir><file name="info.phtml" hash="a5b6b9223ec3d5da923e04f8becc84f3"/><dir name="view"><dir name="tab"><dir name="info"><file name="customermessages.phtml" hash="7de74c4598eceef2d17215585252f740"/><file name="deliverydate.phtml" hash="6e1260a32a1f6801ac185ef38a33114c"/></dir><file name="info.phtml" hash="57f4718dbfaa448976954368c1932b2b"/></dir></dir></dir></dir></dir><dir name="product"><dir name="list"><file name="parcelas.phtml" hash="9949b22a379f0d3dd3280ac5ef2ec1aa"/></dir><dir name="view"><file name="discount.phtml" hash="c0da2db78abfa783b0371081a7022708"/><file name="parcelas.phtml" hash="819808c25f66211be0f4d8815c76ee0d"/></dir></dir><dir name="transparente"><file name="SuccessDetails.phtml" hash="4a9ce00efb864182add86a707e960373"/><file name="cartoes_my_account.phtml" hash="b344b81ca409096b299e7ed3b9ea5227"/><dir name="checkout"><dir name="sales"><dir name="order"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="92632830eb4c9da086b5f0e6e009c91c"/></dir></dir><file name="totals.phtml" hash="6477e543bda9576c165c1f6535dd210e"/></dir></dir><dir name="success"><file name="boleto.phtml" hash="7b7bf59324f817c97ce6086f3dce9a39"/><file name="success.phtml" hash="5ec122e95d05067f9cbe8b4d14e8ea1e"/></dir></dir><file name="emptyupdate.phtml" hash="5504d0197f33a3db19ae9f75b5a43b86"/><dir name="form"><file name="boleto.phtml" hash="1ce47db3c03c369c210cf84d5faf71a8"/><file name="cc.phtml" hash="101df14905e2eebda9911cfd808b1399"/><file name="recurring.phtml" hash="328096b3dd3c33e5168ef589ede3e665"/><file name="tef.phtml" hash="007b06785147218cac812540df06bae6"/></dir><file name="horizontal_form.phtml" hash="5c0faf030d2f6ab70db994a738a3802c"/><dir name="info"><file name="admin.phtml" hash="6d22084d77797f31ec3c2ddf1d553f18"/><file name="boleto.phtml" hash="5ad35332c6e26388e315c939e90f1233"/><file name="boletorecurring.phtml" hash="b009def412655e442222ae7f25859628"/><file name="cc.phtml" hash="785a305ead96710b7ca48b5f001271fd"/><file name="tef.phtml" hash="eaf549920ac0c2e73e2222bfb82d9b82"/></dir><dir name="onclick"><file name="Button.phtml" hash="d19fa9db94b23448838c4ba558b9ed0d"/><file name="LoginOnclick.phtml" hash="034b27d272993dce6664bf8e6b64d8d2"/><file name="MoipOnclick.phtml" hash="0a62dc2d7259a10705b664720cf604e0"/><file name="Parcelas.phtml" hash="566c445c3ab4c41e4c0ee1dad735883a"/><file name="PaymentMethod.phtml" hash="2f80a6d4709d3860cef1f1da4f07dc94"/><file name="ShippingAddress.phtml" hash="10ab67699295331027c985b9d89113a4"/><file name="ShippingMethods.phtml" hash="fbcb438d723cea5e62f6a2cf8fae3721"/><file name="js.phtml" hash="19049dbed5e0369303430698b94e7062"/></dir><dir name="redirect"><file name="boleto.phtml" hash="bf53ff32e92e4d7890b4d27838b6b941"/><file name="cartao.phtml" hash="1699df8b1205b1d5ab846c6b1cee0312"/><file name="layout_boleto.phtml" hash="8d91c7873e692648a7c1d9bd29091793"/><file name="transferencia.phtml" hash="bf869064e0542a95c6a2de98b276b1bc"/></dir><file name="redirect.phtml" hash="c4f7f6fb47602100f6e09f7dbe56322b"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="MOIP"><dir name="account"><dir name="system"><dir name="config"><dir name="button"><file name="button.phtml" hash="a58ebe4073491f8f6c43b890fe3a394a"/></dir></dir></dir></dir><dir name="onestepcheckout"><dir name="sales"><dir name="order"><dir name="view"><dir name="tab"><dir name="info"><file name="Customermessages.phtml" hash="336f1612d37946b870e3ac5e18e52dc1"/></dir><file name="info.phtml" hash="1b6b38d40668d878487f1710a28c1e69"/></dir></dir></dir></dir></dir><dir name="sales"><dir name="order"><dir name="view"><file name="info.phtml" hash="c6aa8255f5c494857c557a21a59e3367"/></dir></dir></dir><dir name="transparente"><file name="Novaforma.phtml" hash="49d046daa42bae37c1c5e80ff88c3e0d"/><file name="SuccessDetails.phtml" hash="2835e1bad2aeb2c6da0f1a37698a0919"/><file name="boleto.phtml" hash="51e688993d1e51662b427fb8876d4543"/><file name="cartao.phtml" hash="ab138a2c019a14bcff47a9a24f9375ac"/><file name="cartoes_my_account.phtml" hash="1614656ebf335b419e727dc77ac1872f"/><file name="emptyupdate.phtml" hash="5504d0197f33a3db19ae9f75b5a43b86"/><dir name="form"><file name="admin.phtml" hash="aeb89bec1f82fac1fa489aa8b649ba51"/><file name="boleto.phtml" hash="7837ded090d7162d8444abc92943c998"/><file name="cc.phtml" hash="36aad4686a0bbd6ccd49c82bf8aa3cc1"/><file name="cc_info.phtml" hash="1eb275e7c943dcca608c5a3038c2a41a"/><file name="tef.phtml" hash="48b06cf947ee26b27311aadae012c730"/><file name="tef_info.phtml" hash="1eb275e7c943dcca608c5a3038c2a41a"/></dir><file name="form.phtml" hash="2085219ca42621f5ab0172cba283ee1a"/><file name="horizontal_form.phtml" hash="0f662bb905c79187454513b73fce2184"/><dir name="info"><file name="admin.phtml" hash="e4d4c7d6fadf9849ba4de459a5670fcd"/><file name="boleto.phtml" hash="5ad35332c6e26388e315c939e90f1233"/><file name="cc.phtml" hash="722c9b18f1da1c58575dd0817dfca5da"/><file name="pdf.phtml" hash="4b61a33fa3736e6c461cf4e9fd983398"/><file name="tef.phtml" hash="eaf549920ac0c2e73e2222bfb82d9b82"/></dir><file name="info.phtml" hash="1eb275e7c943dcca608c5a3038c2a41a"/><dir name="redirect"><file name="boleto.phtml" hash="51e688993d1e51662b427fb8876d4543"/><file name="cartao.phtml" hash="ab138a2c019a14bcff47a9a24f9375ac"/><file name="layout_boleto.phtml" hash="8d91c7873e692648a7c1d9bd29091793"/><file name="transferencia.phtml" hash="bf869064e0542a95c6a2de98b276b1bc"/></dir><file name="redirect.phtml" hash="c6ca09427cccb6038b5eaac783d1ace7"/><file name="script.phtml" hash="1da65a08f8a6425a2f463e617d8ac9e0"/><file name="transferencia.phtml" hash="ba3d60beab741b28bdf0e037fe6730b5"/></dir></dir></dir><dir name="layout"><file name="moip_onestepcheckout.xml" hash="c560a0a699348e116b8ffeef56be490a"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="MOIP_All.xml" hash="5b4232633c10117c66c4054b95984c0d"/><file name="MOIP_Transparente.xml" hash="ab4257449d5d37535d98c590bc896443"/><file name="MOIP_Onestepcheckout.xml" hash="07ae6f8ec3e1bccc5001ae9a8386c3fc"/></dir></target><target name="magelocale"><dir><dir name="en_US"><file name="MOIP_Onestepcheckout.csv" hash="d7fd83d1c115af767311368be3b3a2e4"/></dir><dir name="pt_BR"><file name="MOIP_Onestepcheckout.csv" hash="d7fd83d1c115af767311368be3b3a2e4"/></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="MOIP"><dir name="core"><dir name="css"><file name="bootstrap-modal.css" hash="89d6e243998ccb3cd89ba523c3eefcdc"/><file name="bootstrap-popover.css" hash="e1c6ddd150ea0a5da1cc3afa669ec921"/><file name="bootstrap-tabs.css" hash="6b3cdf6b171a0d6da7fdfe9f6c6ba7ec"/></dir></dir><dir name="onestepcheckout"><dir name="css"><file name="onestepcheckout.css" hash="7a1538bc463922db283a99aea3924931"/></dir><dir name="images"><file name="01.png" hash="4713bea09af9f742b6c2122f6fb59912"/><file name="02.png" hash="15cb983a16c4c1d8be6479ae5de625e6"/><file name="03.png" hash="3bc178975c6f25aecdaebbb7e86adaea"/><file name="04.png" hash="68ae3a414c70c12f340e7c801d854c53"/><file name="05.png" hash="6e8fe636f0593ed3cf00d140e68d2308"/><file name="ajax-loader-tr.gif" hash="6aadaa7b6f0a72ec38b7ca13c35e76f3"/><file name="bkg-giftmessage.png" hash="e0dc9f84c687af088bcc04e3ea200e0b"/><file name="bkg-step-review.png" hash="5acb4aba6f616dabbd8c94581d99122c"/><file name="error-icon.jpg" hash="8e44669e97a57d1d5cd00cb8b42fb506"/><file name="fancy_title_over.png" hash="b886fd165d4b7ac77d41fb52d87ffc60"/><file name="loja_segura.jpg" hash="327ad46c035ce265eaa5c5d85c0aa57a"/><file name="opc-ajax-loader.gif" hash="c289d3760794d891738c3de9a25bd298"/><file name="passed-icon.jpg" hash="c7b3467752d8ab38c8bcde4baaad505f"/><file name="validation_advice_bg.gif" hash="4903665d3dff3903fd31f87b82dffbd5"/></dir></dir><dir name="transparente"><dir name="css"><file name="cartao_save.css" hash="c6f20ba395b66de7abbec30b980de70d"/><file name="form.css" hash="a20913a06033cfa33f332d5c181aaf57"/><file name="redirect.css" hash="9e8385d037fa8690df6052ec051afc82"/></dir><dir name="imagem"><file name="AmericanExpress.png" hash="40ea216476033961d50f452bf4bca4df"/><file name="BancoDoBrasil.png" hash="572914d1e4b635dc56cd507c6c46b023"/><file name="Banrisul.png" hash="d4ac02772b3f521a92542b849e679092"/><file name="Bradesco.png" hash="ceb6a2aaf263fc359fabaf6f102cb8db"/><file name="Diners.png" hash="0f4264379e7b8ba6b1a30a3d69240ae2"/><file name="Elo.jpg" hash="d849a077b3033a5593b948c637ce99eb"/><file name="Elo.png" hash="dac4f02eb184c9e950bbcaf5d788f04d"/><file name="Hiper.jpg" hash="bce8dd2429c800aca14d9c5291a20abf"/><file name="Hiper.png" hash="fb470078d57f645fdbcc8405776a769e"/><file name="Hipercard.png" hash="c25430ddd8e441cc2fc3ef68219e7668"/><file name="Itau.png" hash="40d639fe4b14d063d810589577f0eb7d"/><file name="Mastercard.png" hash="836466c092121163320e9e6279f11f8b"/><file name="Visa.png" hash="cc0709d50773fa2815f7bfeb741a4219"/><file name="ajax-loader.gif" hash="a6addc833d7e5401b13e3e6368854181"/><dir name="azul"><file name="ababoleto.png" hash="47e3ede4db46d5938a68f126bb68bcfe"/><file name="abacartao.png" hash="667954485c4082bafa84920073288453"/><file name="abatransf.png" hash="0623c4cf50653b9c13d12cca5eed43f6"/></dir><file name="banktransfer.png" hash="097193377d68a8d249534e7b097b17f3"/><file name="bb.png" hash="572914d1e4b635dc56cd507c6c46b023"/><file name="boleto.png" hash="270edbd8f289228beb39d300da96029e"/><dir name="branco"><file name="ababoleto.png" hash="f3baeeaf41a6528905b97d825ac67cf7"/><file name="abacartao.png" hash="684d8a48644f55f2c3504da1f51a350b"/><file name="abatransf.png" hash="ea6f42607620ea8f8dca34c1fc98b42b"/><file name="e-sedex.gif" hash="24d2a4e6a39d33a263f2605bb1fdf9dd"/><file name="e-sedex.png" hash="19c04d68032987d594c4da51e3b66094"/><file name="pac.gif" hash="9e6328e16b3d29e94fcd6987c605ee90"/><file name="pac.png" hash="17aaff70f9924a8e37166429ceae549e"/><file name="sedex.gif" hash="9019cbbbf623e0ba58d5f3c7c81c3ee2"/><file name="sedex.png" hash="15e2831cad72756b9a9bf99a6e2af5e5"/></dir><file name="codigo-seguranca.png" hash="b1cdecab044511593083ff18033d4e4f"/><file name="freeshipping_freeshipping.gif" hash="cfc75257c8e52ff1b0a9e2f957667cec"/><file name="moip.png" hash="14273d22979881d4a57c960b952866e3"/><file name="moip_boleto.png" hash="c7619a9e9c0978df5a3b87b45dbc616f"/><file name="moip_brands_card.jpg" hash="a01377d0afa7ddd802a286c249ffcb90"/><file name="moip_cc.png" hash="cd1c4b1210235e1ec371370b185f75b1"/><file name="moip_tef.png" hash="097193377d68a8d249534e7b097b17f3"/><file name="moiphiper.png" hash="c25430ddd8e441cc2fc3ef68219e7668"/><file name="moipmaster.png" hash="836466c092121163320e9e6279f11f8b"/><file name="moipvisa.png" hash="cc0709d50773fa2815f7bfeb741a4219"/><dir name="preto"><file name="ababoleto.png" hash="a728ac886e7e57744e62bba2c7b0b969"/><file name="abacartao.png" hash="50b6103cb5b7e51a27f3c26eaa7411d0"/><file name="abatransf.png" hash="61eec388356aea3230fc5d811ef996ea"/></dir><dir name="verde"><file name="ababoleto.png" hash="3c3e047acb513328ebdfd6bfc9c339fa"/><file name="abacartao.png" hash="809d7e21263b3474d1685087a91ca18a"/><file name="abatransf.png" hash="0e3e6bdba002a69be78e126f3e7e775f"/></dir><dir name="vermelho"><file name="ababoleto.png" hash="0d84f05b75c8e964122c4f087268bd1c"/><file name="abacartao.png" hash="63b85e98d5b77c6a373bc351080e60f4"/><file name="abatransf.png" hash="0bef9fec6108a914ebc108f3c600c013"/></dir></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="MOIP"><dir name="transparente"><dir name="imagem"><file name="AmericanExpress.png" hash="40ea216476033961d50f452bf4bca4df"/><file name="BancoDoBrasil.png" hash="572914d1e4b635dc56cd507c6c46b023"/><file name="Banrisul.png" hash="d4ac02772b3f521a92542b849e679092"/><file name="Bradesco.png" hash="ceb6a2aaf263fc359fabaf6f102cb8db"/><file name="Diners.png" hash="0f4264379e7b8ba6b1a30a3d69240ae2"/><file name="Elo.jpg" hash="dac4f02eb184c9e950bbcaf5d788f04d"/><file name="Elo.png" hash="dac4f02eb184c9e950bbcaf5d788f04d"/><file name="Hiper.jpg" hash="fb470078d57f645fdbcc8405776a769e"/><file name="Hiper.png" hash="fb470078d57f645fdbcc8405776a769e"/><file name="Hipercard.png" hash="c25430ddd8e441cc2fc3ef68219e7668"/><file name="Itau.png" hash="40d639fe4b14d063d810589577f0eb7d"/><file name="Mastercard.png" hash="836466c092121163320e9e6279f11f8b"/><file name="Visa.png" hash="cc0709d50773fa2815f7bfeb741a4219"/><file name="btn-login-moip.png" hash="3459add85a9d0d069cdf6ea0cc5d2814"/><file name="moip_brands_card.jpg" hash="738ed90e8f040993ef9ebfb1517482d6"/><file name="moipamerican.png" hash="40ea216476033961d50f452bf4bca4df"/><file name="moipbanner2.png" hash="1c24f42b0cbb05f00ea779d3a719ebe1"/><file name="moipdiners.png" hash="0f4264379e7b8ba6b1a30a3d69240ae2"/><file name="moiphiper.png" hash="c25430ddd8e441cc2fc3ef68219e7668"/><file name="moipmaster.png" hash="836466c092121163320e9e6279f11f8b"/><file name="moipvisa.png" hash="cc0709d50773fa2815f7bfeb741a4219"/></dir></dir></dir></dir></dir></dir></target><target name="mageweb"><dir name="js"><dir name="MOIP"><dir name="core"><file name="bootstrap-modal.js" hash="33eee22cac655155b91eadd1e7b6e417"/><file name="bootstrap-tab.js" hash="ceef3daf42068b97915c25e392f81b8b"/><file name="bootstrap.min.js" hash="4becdc9104623e891fbb9d38bba01be4"/><file name="jquery.js" hash="315136162c3a659832e0f3bc79377315"/><file name="jquery_noconflict.js" hash="d41c4c89089b9e7e06a4a104ae37018f"/></dir><file name="jquery.js" hash="f8e2833ce2f57ec673b178be7eefbd82"/><file name="jquery.mask.min.js" hash="c5e89b28b44bdd0319c64fb6451a819d"/><file name="jquery_noconflict.js" hash="3edd24e3725ffc4569238df773b805f8"/><dir name="onestepcheckout"><file name="billing.js" hash="9d5f468c9e8d10e32781d347f2b8e41b"/><file name="change-events.js" hash="7a56dfda6d371393034912ff702f1830"/><file name="shipping.js" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir><dir name="transparente"><file name="moip.js" hash="5667e0ae375ce0af1701f0b65189f0d7"/><file name="oneclick.js" hash="c57e4938898692222f825a2bb3ca0238"/></dir><file name="validacao.js" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></dir></target></contents>
21
  <compatible/>
22
  <dependencies><required><php><min>5.0.0</min><max>15.5.5</max></php><extension><name>openssl</name><min>1</min><max>1</max></extension><extension><name>PDO</name><min>1</min><max>1</max></extension><extension><name>mcrypt</name><min>1</min><max>1</max></extension></required></dependencies>
23
  </package>
skin/frontend/base/default/MOIP/core/css/bootstrap-modal.css CHANGED
@@ -846,6 +846,11 @@ fieldset[disabled] .btn-success.active {
846
  margin-left: 0%;
847
  }
848
  }
 
 
 
 
 
849
  button#moip-onclick {
850
  margin-top: 20px;
851
  }
846
  margin-left: 0%;
847
  }
848
  }
849
+
850
+ .col-xs-12.col-sm-6.col-md-6.no-padding {
851
+ margin-bottom: 25px;
852
+ }
853
+
854
  button#moip-onclick {
855
  margin-top: 20px;
856
  }