Version Notes
First release version.
Download this release
Release Info
Developer | Magento Core Team |
Extension | ENVIALIA_Shipping |
Version | 1.0.0 |
Comparing to | |
See all releases |
Version 1.0.0
- app/code/local/ENVIALIA/ENVIALIAShipping/Adminhtml/Block/Sales/Order/Shipment/View.php +61 -0
- app/code/local/ENVIALIA/ENVIALIAShipping/Model/ENVIALIA/ENVIALIAShipping.php +649 -0
- app/code/local/ENVIALIA/ENVIALIAShipping/Model/ENVIALIA/Shipment.php +303 -0
- app/code/local/ENVIALIA/ENVIALIAShipping/Model/ENVIALIA/Shipment/Track.php +131 -0
- app/code/local/ENVIALIA/ENVIALIAShipping/Model/ENVIALIA/Source/Gratuito.php +26 -0
- app/code/local/ENVIALIA/ENVIALIAShipping/Model/ENVIALIA/Source/GratuitoInternacional.php +26 -0
- app/code/local/ENVIALIA/ENVIALIAShipping/Model/ENVIALIA/Source/Manipulacion.php +26 -0
- app/code/local/ENVIALIA/ENVIALIAShipping/envialia.tarifas.csv +3133 -0
- app/code/local/ENVIALIA/ENVIALIAShipping/etc/config.xml +76 -0
- app/code/local/ENVIALIA/ENVIALIAShipping/etc/config.xml~ +76 -0
- app/code/local/ENVIALIA/ENVIALIAShipping/etc/system.xml +268 -0
- app/etc/modules/ENVIALIA_ENVIALIAShipping.xml +9 -0
- package.xml +28 -0
app/code/local/ENVIALIA/ENVIALIAShipping/Adminhtml/Block/Sales/Order/Shipment/View.php
ADDED
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
class ENVIALIA_ENVIALIAShipping_Adminhtml_Block_Sales_Order_Shipment_View extends Mage_Adminhtml_Block_Sales_Order_Shipment_View
|
3 |
+
{
|
4 |
+
public function __construct()
|
5 |
+
{
|
6 |
+
|
7 |
+
parent::__construct();
|
8 |
+
|
9 |
+
$url = Mage::helper('core/url')->getCurrentUrl();
|
10 |
+
$trozos = split("/",$url);
|
11 |
+
$max = count($trozos);
|
12 |
+
for($i=0;$i<$max;$i++){
|
13 |
+
if($trozos[$i] == 'etiquetaenvialia'){
|
14 |
+
$this->printLabel();
|
15 |
+
}
|
16 |
+
}
|
17 |
+
/** creo un boton Etiqueta ENVIALIA */
|
18 |
+
if ($this->getShipment()->getId()) {
|
19 |
+
$this->_addButton('labelENVIALIA', array(
|
20 |
+
'label' => Mage::helper('sales')->__('Etiqueta ENVIALIA'),
|
21 |
+
'onclick' => 'window.open(\''.$this->getLabelENVIALIAUrl().'\')'
|
22 |
+
)
|
23 |
+
);
|
24 |
+
}
|
25 |
+
}
|
26 |
+
|
27 |
+
|
28 |
+
public function getLabelENVIALIAUrl()
|
29 |
+
{
|
30 |
+
$url='';
|
31 |
+
foreach ($this->getShipment()->getAllTracks() as $track )
|
32 |
+
{
|
33 |
+
if ($track->getCarrierCode()=='ENVIALIAShipping')
|
34 |
+
{
|
35 |
+
$url = Mage::helper('core/url')->getCurrentUrl();
|
36 |
+
$url = $url."etiquetaenvialia/";
|
37 |
+
|
38 |
+
}
|
39 |
+
}
|
40 |
+
return $url;
|
41 |
+
}
|
42 |
+
public function printLabel(){
|
43 |
+
if($this->getShipment()->getShippingLabel()){
|
44 |
+
$pdf=base64_decode($this->getShipment()->getShippingLabel());
|
45 |
+
$numero_pedido=$this->getShipment()->getIncrementId();
|
46 |
+
|
47 |
+
header("Content-type: application/pdf");
|
48 |
+
header('Content-Disposition: attachment; filename="etiqueta_'.$numero_pedido.'.pdf"'); //solo para forzar descarga
|
49 |
+
|
50 |
+
echo $pdf;
|
51 |
+
}
|
52 |
+
else{
|
53 |
+
header("Content-type: text/html");
|
54 |
+
header('Content-Disposition: attachment; filename="etiqueta_'.$numero_pedido.'.html"'); //solo para forzar descarga
|
55 |
+
|
56 |
+
echo "<html><head><title>Envialia Etiqueta</title></head><body><h2>No existe la etiqueta para imprimir.</h2></body></html>";
|
57 |
+
|
58 |
+
}
|
59 |
+
}
|
60 |
+
|
61 |
+
}
|
app/code/local/ENVIALIA/ENVIALIAShipping/Model/ENVIALIA/ENVIALIAShipping.php
ADDED
@@ -0,0 +1,649 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
class ENVIALIA_ENVIALIAShipping_Model_ENVIALIA_ENVIALIAShipping extends Mage_Shipping_Model_Carrier_Abstract
|
3 |
+
{
|
4 |
+
protected $_code = 'ENVIALIAShipping';
|
5 |
+
public function collectRates(Mage_Shipping_Model_Rate_Request $request)
|
6 |
+
{
|
7 |
+
/** Si no esta activo, no sigo */
|
8 |
+
if (!$this->getConfigFlag('active')) {
|
9 |
+
return false;
|
10 |
+
}
|
11 |
+
|
12 |
+
$err = null;
|
13 |
+
|
14 |
+
/** DATOS DE LA TIENDA */
|
15 |
+
if (!$request->getOrig()) {
|
16 |
+
$request
|
17 |
+
->setCountryId(Mage::getStoreConfig('shipping/origin/country_id', $request->getStore()))
|
18 |
+
->setPostcode(Mage::getStoreConfig('shipping/origin/postcode', $request->getStore()));
|
19 |
+
}
|
20 |
+
$peso_pedido = $request->getPackageWeight();
|
21 |
+
$envio["bultos"] = 1;
|
22 |
+
$total = $request->getPackageValue(); // Precio total del pedido
|
23 |
+
|
24 |
+
$pais_cliente = $request->getDestCountryId();
|
25 |
+
$cp_cliente = $request->getDestPostcode();
|
26 |
+
|
27 |
+
$envialia_impuesto = 0;
|
28 |
+
//Verificamos si hay que agregar el impuesto
|
29 |
+
if($this->agregar_impuesto($pais_cliente)){
|
30 |
+
$envialia_impuesto = floatval($this->getConfigData('ENVIALIA_IMPUESTO'));
|
31 |
+
}
|
32 |
+
|
33 |
+
$result = Mage::getModel('shipping/rate_result');
|
34 |
+
// Verificamos si el cliente pertenece a España , Portugal o Andorra
|
35 |
+
if($pais_cliente == 'ES' || $pais_cliente == 'PT' || $pais_cliente == 'AD'){
|
36 |
+
|
37 |
+
// Primero comprobamos si hay servicio gratuito $this->getConfigData('')
|
38 |
+
if($this->getConfigData('ENVIALIA_HABILITAR_ENVIO_GRATUITO')){
|
39 |
+
// Comprobamos que superamos el importe minimo para envio gratuito
|
40 |
+
if($this->getConfigData('ENVIALIA_IMPORTE_MINIMO_ENVIO_GRATUITO') < $total){
|
41 |
+
if($this->getConfigData('ENVIALIA_SERVICIO_ENVIO_GRATUITO') == "E24"){
|
42 |
+
$tipo_servicio = "E24";
|
43 |
+
$servicio = "al día siguiente";
|
44 |
+
$importe = "GRATUITO";
|
45 |
+
|
46 |
+
}
|
47 |
+
if($this->getConfigData('ENVIALIA_SERVICIO_ENVIO_GRATUITO') == "E72"){
|
48 |
+
$tipo_servicio = "E72";
|
49 |
+
$servicio = "máximo tres días";
|
50 |
+
$importe = "GRATUITO";
|
51 |
+
}
|
52 |
+
|
53 |
+
$rate = Mage::getModel('shipping/rate_result_method');
|
54 |
+
$rate->setCarrier($this->_code);
|
55 |
+
$rate->setCarrierTitle($this->getConfigData('title'));
|
56 |
+
$rate->setMethod($tipo_servicio);
|
57 |
+
$rate->setMethodTitle('<img src="http://www.envialia-urgente.com/images/envialia_ecomm_int_mag.png">'.' servicio de entrega GRATUITO '.$servicio);
|
58 |
+
$rate->setCost('0');
|
59 |
+
$rate->setPrice('0');
|
60 |
+
$result->append($rate);
|
61 |
+
|
62 |
+
return $result;
|
63 |
+
}
|
64 |
+
}
|
65 |
+
|
66 |
+
// No hay servicio gratuito
|
67 |
+
$html='';
|
68 |
+
$impuesto = 0;
|
69 |
+
$coste_envio = 0;
|
70 |
+
$importe = 0;
|
71 |
+
$coste_fijo_envio = 0;
|
72 |
+
$coste_manipulacion = 0;
|
73 |
+
$coste_margen = 0;
|
74 |
+
$tarifas = $this->tarifas();
|
75 |
+
if(!$tarifas){
|
76 |
+
$error = Mage::getModel('shipping/rate_result_error');
|
77 |
+
$error->setCarrier($this->_code);
|
78 |
+
$error->setCarrierTitle($this->getConfigData('title'));
|
79 |
+
$error->setErrorMessage('ENVIALIA ERROR: No se pudo cargar las tarifas.');
|
80 |
+
$result->append($error);
|
81 |
+
return $result;
|
82 |
+
}
|
83 |
+
|
84 |
+
if($this->getConfigData('ENVIALIA_COSTE_FIJO_ENVIO')){
|
85 |
+
$coste_fijo_envio = floatval($this->getConfigData('ENVIALIA_COSTE_FIJO_ENVIO'));
|
86 |
+
}
|
87 |
+
if($this->getConfigData('ENVIALIA_MANIPULACION') == 'F'){
|
88 |
+
$coste_manipulacion = floatval($this->getConfigData('ENVIALIA_COSTE_MANIPULACION'));
|
89 |
+
}
|
90 |
+
if($this->getConfigData('ENVIALIA_MANIPULACION') == 'V'){
|
91 |
+
$coste_manipulacion = floatval($total*($this->getConfigData('ENVIALIA_COSTE_MANIPULACION')/100));
|
92 |
+
}
|
93 |
+
if($this->getConfigData('ENVIALIA_MARGEN_COSTE_ENVIO')){
|
94 |
+
$coste_margen = floatval($this->getConfigData('ENVIALIA_MARGEN_COSTE_ENVIO'));
|
95 |
+
}
|
96 |
+
|
97 |
+
if($this->getConfigData('ENVIALIA_ECOMM_24H')){
|
98 |
+
$tipo_servicio = "E24";
|
99 |
+
$servicio = "al día siguiente";
|
100 |
+
$importe = 0;
|
101 |
+
$subimporte=0;
|
102 |
+
if($this->getConfigData('ENVIALIA_COSTE_FIJO_ENVIO')){
|
103 |
+
$subimporte=$coste_fijo_envio;
|
104 |
+
$coste_envio = $coste_fijo_envio+($coste_fijo_envio*$envialia_impuesto);
|
105 |
+
$importe = floatval($coste_envio+$coste_manipulacion);
|
106 |
+
}
|
107 |
+
else{
|
108 |
+
//Si no hay coste_fijo buscamos en el csv el precio
|
109 |
+
//necesitamos el tipo_servicio, cp_cliente, pais y peso
|
110 |
+
$coste_envio = $this->dame_tarifa($tarifas, $tipo_servicio, $pais_cliente, $cp_cliente, $peso_pedido);
|
111 |
+
//Verificamos coste de envio
|
112 |
+
if(!$coste_envio){
|
113 |
+
$error = Mage::getModel('shipping/rate_result_error');
|
114 |
+
$error->setCarrier($this->_code);
|
115 |
+
$error->setCarrierTitle($this->getConfigData('title'));
|
116 |
+
$error->setErrorMessage('ENVIALIA ERROR: el país o el código postal son incorrectos, por favor revíselos a través de su cuenta de usuario registrado.');
|
117 |
+
$result->append($error);
|
118 |
+
return $result;
|
119 |
+
}
|
120 |
+
$subimporte=$coste_envio;
|
121 |
+
//Despues sumarle el MARGEN SOBRE COSTE DE ENVÍO
|
122 |
+
if($this->getConfigData('ENVIALIA_MARGEN_COSTE_ENVIO')){
|
123 |
+
$coste_envio=$coste_envio+(floatval($this->getConfigData('ENVIALIA_MARGEN_COSTE_ENVIO')));
|
124 |
+
}
|
125 |
+
$coste_envio = $coste_envio +($coste_envio*$envialia_impuesto);
|
126 |
+
$importe = floatval($coste_envio+$coste_manipulacion);
|
127 |
+
}
|
128 |
+
//formateamos el importe
|
129 |
+
$importe = number_format($importe,2,".","");
|
130 |
+
|
131 |
+
// Preparamos el HTML
|
132 |
+
$rate = Mage::getModel('shipping/rate_result_method');
|
133 |
+
$rate->setCarrier($this->_code);
|
134 |
+
$rate->setCarrierTitle($this->getConfigData('title'));
|
135 |
+
$rate->setMethod($tipo_servicio);
|
136 |
+
$rate->setMethodTitle('<img src="http://www.envialia-urgente.com/images/envialia_ecomm_24_mag.png">'.' servicio de entrega '.$servicio);
|
137 |
+
$rate->setCost($subimporte);
|
138 |
+
$rate->setPrice($importe);
|
139 |
+
$result->append($rate);
|
140 |
+
}
|
141 |
+
if($this->getConfigData('ENVIALIA_ECOMM_72H')){
|
142 |
+
$tipo_servicio = "E72";
|
143 |
+
$servicio = "máximo tres días";
|
144 |
+
$importe = 0;
|
145 |
+
$subimporte=0;
|
146 |
+
if($this->getConfigData('ENVIALIA_COSTE_FIJO_ENVIO')){
|
147 |
+
$subimporte=$coste_fijo_envio;
|
148 |
+
$coste_envio = $coste_fijo_envio+($coste_fijo_envio*$envialia_impuesto);
|
149 |
+
$importe = floatval($coste_envio+$coste_manipulacion);
|
150 |
+
}
|
151 |
+
else{
|
152 |
+
//Si no hay coste_fijo buscamos en el csv el precio
|
153 |
+
//necesitamos el tipo_servicio, cp_cliente, pais y peso
|
154 |
+
$coste_envio = $this->dame_tarifa($tarifas, $tipo_servicio, $pais_cliente, $cp_cliente, $peso_pedido);
|
155 |
+
//Verificamos coste de envio
|
156 |
+
if(!$coste_envio){
|
157 |
+
$error = Mage::getModel('shipping/rate_result_error');
|
158 |
+
$error->setCarrier($this->_code);
|
159 |
+
$error->setCarrierTitle($this->getConfigData('title'));
|
160 |
+
$error->setErrorMessage('ENVIALIA ERROR: el país o el código postal son incorrectos, por favor revíselos a través de su cuenta de usuario registrado.');
|
161 |
+
$result->append($error);
|
162 |
+
return $result;
|
163 |
+
}
|
164 |
+
$subimporte=$coste_envio;
|
165 |
+
//Despues sumarle el MARGEN SOBRE COSTE DE ENVÍO
|
166 |
+
if($this->getConfigData('ENVIALIA_MARGEN_COSTE_ENVIO')){
|
167 |
+
$coste_envio=$coste_envio+(floatval($this->getConfigData('ENVIALIA_MARGEN_COSTE_ENVIO')));
|
168 |
+
}
|
169 |
+
$coste_envio = $coste_envio +($coste_envio*$envialia_impuesto);
|
170 |
+
$importe = floatval($coste_envio+$coste_manipulacion);
|
171 |
+
}
|
172 |
+
//formateamos el importe
|
173 |
+
$importe = number_format($importe,2,".","");
|
174 |
+
|
175 |
+
// Preparamos el HTML
|
176 |
+
$rate = Mage::getModel('shipping/rate_result_method');
|
177 |
+
$rate->setCarrier($this->_code);
|
178 |
+
$rate->setCarrierTitle($this->getConfigData('title'));
|
179 |
+
$rate->setMethod($tipo_servicio);
|
180 |
+
$rate->setMethodTitle('<img src="http://www.envialia-urgente.com/images/envialia_ecomm_72_mag.png">'.' servicio de entrega '.$servicio);
|
181 |
+
$rate->setCost($subimporte);
|
182 |
+
$rate->setPrice($importe);
|
183 |
+
$result->append($rate);
|
184 |
+
}
|
185 |
+
return $result;
|
186 |
+
}
|
187 |
+
//Verificamos si el cliente es de EUROPA
|
188 |
+
else if($this->es_europeo($pais_cliente)){
|
189 |
+
// Primero comprobamos si hay servicio gratuito para EUROPA
|
190 |
+
// En Europa pueden usar tambien el INTERNACIONAL
|
191 |
+
if($this->getConfigData('ENVIALIA_HABILITAR_ENVIO_GRATUITO_INTERNACIONAL')){
|
192 |
+
// Comprobamos que superamos el importe minimo para envio gratuito
|
193 |
+
if($this->getConfigData('ENVIALIA_IMPORTE_MINIMO_ENVIO_GRATUITO_INTERNACIONAL') < $total){
|
194 |
+
if($this->getConfigData('ENVIALIA_SERVICIO_ENVIO_GRATUITO_INTERNACIONAL') == "EEU"){
|
195 |
+
$tipo_servicio = "EEU";
|
196 |
+
$servicio = "EUROPE EXPRESS";
|
197 |
+
$importe = "GRATUITO";
|
198 |
+
|
199 |
+
}
|
200 |
+
if($this->getConfigData('ENVIALIA_SERVICIO_ENVIO_GRATUITO_INTERNACIONAL') == "EWW"){
|
201 |
+
$tipo_servicio = "EWW";
|
202 |
+
$servicio = "WORLDWIDE";
|
203 |
+
$importe = "GRATUITO";
|
204 |
+
}
|
205 |
+
$rate = Mage::getModel('shipping/rate_result_method');
|
206 |
+
$rate->setCarrier($this->_code);
|
207 |
+
$rate->setCarrierTitle($this->getConfigData('title'));
|
208 |
+
$rate->setMethod($tipo_servicio);
|
209 |
+
$rate->setMethodTitle('<img src="http://www.envialia-urgente.com/images/envialia_ecomm_int_mag.png">'.' servicio de entrega GRATUITO '.$servicio);
|
210 |
+
$rate->setCost('0');
|
211 |
+
$rate->setPrice('0');
|
212 |
+
$result->append($rate);
|
213 |
+
|
214 |
+
return $result;
|
215 |
+
}
|
216 |
+
}
|
217 |
+
// No hay servicio gratuito Europeo o Internacional
|
218 |
+
$html='';
|
219 |
+
$impuesto = 0;
|
220 |
+
$subimporte=0;
|
221 |
+
$coste_envio = 0;
|
222 |
+
$importe = 0;
|
223 |
+
$coste_fijo_envio = 0;
|
224 |
+
$coste_manipulacion = 0;
|
225 |
+
$coste_margen = 0;
|
226 |
+
$tarifas = $this->tarifas();
|
227 |
+
|
228 |
+
//if(ENVIALIA_CLASE_IMPUESTO){$impuesto = $this->get_tax_rate();}
|
229 |
+
if($this->getConfigData('ENVIALIA_COSTE_FIJO_ENVIO')){$coste_fijo_envio = floatval($this->getConfigData('ENVIALIA_COSTE_FIJO_ENVIO'));}
|
230 |
+
if($this->getConfigData('ENVIALIA_MANIPULACION') == 'F'){$coste_manipulacion = floatval($this->getConfigData('ENVIALIA_COSTE_MANIPULACION'));}
|
231 |
+
if($this->getConfigData('ENVIALIA_MANIPULACION') == 'V'){$coste_manipulacion = floatval($total*($this->getConfigData('ENVIALIA_COSTE_MANIPULACION')/100));}
|
232 |
+
if($this->getConfigData('ENVIALIA_MARGEN_COSTE_ENVIO')){$coste_margen = floatval($this->getConfigData('ENVIALIA_MARGEN_COSTE_ENVIO'));}
|
233 |
+
|
234 |
+
if($this->getConfigData('ENVIALIA_ECOMM_EUROPE_EXPRESS')){
|
235 |
+
$tipo_servicio = "EEU";
|
236 |
+
$servicio = "EUROPE EXPRESS";
|
237 |
+
$importe = 0;
|
238 |
+
$subimporte=$coste_fijo_envio;
|
239 |
+
if($this->getConfigData('ENVIALIA_COSTE_FIJO_ENVIO')){
|
240 |
+
$coste_envio = $coste_fijo_envio+($coste_fijo_envio*$envialia_impuesto);
|
241 |
+
$importe = floatval($coste_envio+$coste_manipulacion);
|
242 |
+
}
|
243 |
+
else{
|
244 |
+
//Si no hay coste_fijo buscamos en el csv el precio
|
245 |
+
//necesitamos el tipo_servicio, cp_cliente, pais y peso
|
246 |
+
$coste_envio = $this->dame_tarifa($tarifas, $tipo_servicio, $pais_cliente, $cp_cliente, $peso_pedido);
|
247 |
+
//Verificamos coste de envio
|
248 |
+
if(!$coste_envio){
|
249 |
+
$error = Mage::getModel('shipping/rate_result_error');
|
250 |
+
$error->setCarrier($this->_code);
|
251 |
+
$error->setCarrierTitle($this->getConfigData('title'));
|
252 |
+
$error->setErrorMessage('ENVIALIA ERROR: el país o el código postal son incorrectos, por favor revíselos a través de su cuenta de usuario registrado.');
|
253 |
+
$result->append($error);
|
254 |
+
return $result;
|
255 |
+
}
|
256 |
+
//Despues sumarle el MARGEN SOBRE COSTE DE ENVÍO
|
257 |
+
if($this->getConfigData('ENVIALIA_MARGEN_COSTE_ENVIO')){
|
258 |
+
$coste_envio=$coste_envio+(floatval($this->getConfigData('ENVIALIA_MARGEN_COSTE_ENVIO')));
|
259 |
+
}
|
260 |
+
$subimporte=$coste_envio;
|
261 |
+
$coste_envio = $coste_envio +($coste_envio*$envialia_impuesto);
|
262 |
+
$importe = floatval($coste_envio+$coste_manipulacion);
|
263 |
+
}
|
264 |
+
//formateamos el importe
|
265 |
+
$importe = number_format($importe,2,".","");
|
266 |
+
|
267 |
+
// Preparamos el HTML
|
268 |
+
$rate = Mage::getModel('shipping/rate_result_method');
|
269 |
+
$rate->setCarrier($this->_code);
|
270 |
+
$rate->setCarrierTitle($this->getConfigData('title'));
|
271 |
+
$rate->setMethod($tipo_servicio);
|
272 |
+
$rate->setMethodTitle('<img src="http://www.envialia-urgente.com/images/envialia_ecomm_int_mag.png">'.' servicio de entrega terrestre '.$servicio);
|
273 |
+
$rate->setCost($subimporte);
|
274 |
+
$rate->setPrice($importe);
|
275 |
+
$result->append($rate);
|
276 |
+
|
277 |
+
}
|
278 |
+
if($this->getConfigData('ENVIALIA_ECOMM_WORLDWIDE')){
|
279 |
+
$tipo_servicio = "EWW";
|
280 |
+
$servicio = "WORLDWIDE";
|
281 |
+
$importe = 0;
|
282 |
+
$subimporte=0;
|
283 |
+
$subimporte=$coste_fijo_envio;
|
284 |
+
|
285 |
+
if($this->getConfigData('ENVIALIA_COSTE_FIJO_ENVIO')){
|
286 |
+
$importe = floatval($coste_fijo_envio+$coste_manipulacion);
|
287 |
+
}
|
288 |
+
else{
|
289 |
+
//Si no hay coste_fijo buscamos en el csv el precio
|
290 |
+
//necesitamos el tipo_servicio, cp_cliente, pais y peso
|
291 |
+
$coste_envio = $this->dame_tarifa($tarifas, $tipo_servicio, $pais_cliente, $cp_cliente, $peso_pedido);
|
292 |
+
//Verificamos coste de envio
|
293 |
+
if(!$coste_envio){
|
294 |
+
$error = Mage::getModel('shipping/rate_result_error');
|
295 |
+
$error->setCarrier($this->_code);
|
296 |
+
$error->setCarrierTitle($this->getConfigData('title'));
|
297 |
+
$error->setErrorMessage('ENVIALIA ERROR: el país o el código postal son incorrectos, por favor revíselos a través de su cuenta de usuario registrado.');
|
298 |
+
$result->append($error);
|
299 |
+
return $result;
|
300 |
+
}
|
301 |
+
$subimporte=$coste_envio;
|
302 |
+
//Despues sumarle el MARGEN SOBRE COSTE DE ENVÍO
|
303 |
+
if($this->getConfigData('ENVIALIA_MARGEN_COSTE_ENVIO')){
|
304 |
+
$coste_envio=$coste_envio+(floatval($this->getConfigData('ENVIALIA_MARGEN_COSTE_ENVIO')));
|
305 |
+
}
|
306 |
+
$importe = floatval($coste_envio+$coste_manipulacion);
|
307 |
+
}
|
308 |
+
//formateamos el importe
|
309 |
+
$importe = number_format($importe,2,".","");
|
310 |
+
|
311 |
+
// Preparamos el HTML
|
312 |
+
$rate = Mage::getModel('shipping/rate_result_method');
|
313 |
+
$rate->setCarrier($this->_code);
|
314 |
+
$rate->setCarrierTitle($this->getConfigData('title'));
|
315 |
+
$rate->setMethod($tipo_servicio);
|
316 |
+
$rate->setMethodTitle('<img src="http://www.envialia-urgente.com/images/envialia_ecomm_int_mag.png">'.' servicio de entrega aéreo '.$servicio);
|
317 |
+
$rate->setCost($subimporte);
|
318 |
+
$rate->setPrice($importe);
|
319 |
+
$result->append($rate);
|
320 |
+
}
|
321 |
+
return $result;
|
322 |
+
}
|
323 |
+
//Es INTERNACIONAL
|
324 |
+
else {
|
325 |
+
// Primero comprobamos si hay servicio gratuito INTERNACIONAL
|
326 |
+
if($this->getConfigData('ENVIALIA_HABILITAR_ENVIO_GRATUITO_INTERNACIONAL')){
|
327 |
+
// Comprobamos que superamos el importe minimo para envio gratuito
|
328 |
+
if($this->getConfigData('ENVIALIA_IMPORTE_MINIMO_ENVIO_GRATUITO_INTERNACIONAL') < $total){
|
329 |
+
if($this->getConfigData('ENVIALIA_SERVICIO_ENVIO_GRATUITO_INTERNACIONAL') == "EWW"){
|
330 |
+
$tipo_servicio = "EWW";
|
331 |
+
$servicio = "WORLDWIDE";
|
332 |
+
$importe = "GRATUITO";
|
333 |
+
|
334 |
+
$rate = Mage::getModel('shipping/rate_result_method');
|
335 |
+
$rate->setCarrier($this->_code);
|
336 |
+
$rate->setCarrierTitle($this->getConfigData('title'));
|
337 |
+
$rate->setMethod($tipo_servicio);
|
338 |
+
$rate->setMethodTitle('Envialia servicio de envio GRATUITO '.$servicio);
|
339 |
+
$rate->setCost('0');
|
340 |
+
$rate->setPrice('0');
|
341 |
+
$result->append($rate);
|
342 |
+
|
343 |
+
return $result;
|
344 |
+
}
|
345 |
+
}
|
346 |
+
}
|
347 |
+
// No hay servicio gratuito Internacional
|
348 |
+
$html='';
|
349 |
+
$impuesto = 0;
|
350 |
+
$coste_envio = 0;
|
351 |
+
$importe = 0;
|
352 |
+
$subimporte=0;
|
353 |
+
$coste_fijo_envio = 0;
|
354 |
+
$coste_manipulacion = 0;
|
355 |
+
$coste_margen = 0;
|
356 |
+
$tarifas = $this->tarifas();
|
357 |
+
|
358 |
+
if($this->getConfigData('ENVIALIA_COSTE_FIJO_ENVIO')){$coste_fijo_envio = floatval($this->getConfigData('ENVIALIA_COSTE_FIJO_ENVIO'));}
|
359 |
+
if($this->getConfigData('ENVIALIA_MANIPULACION') == 'F'){$coste_manipulacion = floatval($this->getConfigData('ENVIALIA_COSTE_MANIPULACION'));}
|
360 |
+
if($this->getConfigData('ENVIALIA_MANIPULACION') == 'V'){$coste_manipulacion = floatval($total*($this->getConfigData('ENVIALIA_COSTE_MANIPULACION')/100));}
|
361 |
+
if($this->getConfigData('ENVIALIA_MARGEN_COSTE_ENVIO')){$coste_margen = floatval($this->getConfigData('ENVIALIA_MARGEN_COSTE_ENVIO'));}
|
362 |
+
|
363 |
+
if($this->getConfigData('ENVIALIA_ECOMM_WORLDWIDE')){
|
364 |
+
$tipo_servicio = "EWW";
|
365 |
+
$servicio = "WORLDWIDE";
|
366 |
+
$importe = 0;
|
367 |
+
$subimporte=$coste_fijo_envio;
|
368 |
+
|
369 |
+
if($this->getConfigData('ENVIALIA_COSTE_FIJO_ENVIO')){
|
370 |
+
$importe = floatval($coste_fijo_envio+$coste_manipulacion);
|
371 |
+
}
|
372 |
+
else{
|
373 |
+
//Si no hay coste_fijo buscamos en el csv el precio
|
374 |
+
//necesitamos el tipo_servicio, cp_cliente, pais y peso
|
375 |
+
$coste_envio = $this->dame_tarifa($tarifas, $tipo_servicio, $pais_cliente, $cp_cliente, $peso_pedido);
|
376 |
+
//Verificamos coste de envio
|
377 |
+
if(!$coste_envio){
|
378 |
+
$error = Mage::getModel('shipping/rate_result_error');
|
379 |
+
$error->setCarrier($this->_code);
|
380 |
+
$error->setCarrierTitle($this->getConfigData('title'));
|
381 |
+
$error->setErrorMessage('ENVIALIA ERROR: el país o el código postal son incorrectos, por favor revíselos a través de su cuenta de usuario registrado.');
|
382 |
+
$result->append($error);
|
383 |
+
return $result;
|
384 |
+
}
|
385 |
+
$subimporte=$coste_envio;
|
386 |
+
//Despues sumarle el MARGEN SOBRE COSTE DE ENVÍO
|
387 |
+
if($this->getConfigData('ENVIALIA_MARGEN_COSTE_ENVIO')){
|
388 |
+
$coste_envio=$coste_envio+(floatval($this->getConfigData('ENVIALIA_MARGEN_COSTE_ENVIO')));
|
389 |
+
}
|
390 |
+
$importe = floatval($coste_envio+$coste_manipulacion);
|
391 |
+
}
|
392 |
+
//formateamos el importe
|
393 |
+
$importe = number_format($importe,2,".","");
|
394 |
+
// Preparamos el HTML
|
395 |
+
$rate = Mage::getModel('shipping/rate_result_method');
|
396 |
+
$rate->setCarrier($this->_code);
|
397 |
+
$rate->setCarrierTitle($this->getConfigData('title'));
|
398 |
+
$rate->setMethod($tipo_servicio);
|
399 |
+
$rate->setMethodTitle('<img src="http://www.envialia-urgente.com/images/envialia_ecomm_int_mag.png">'.' servicio de entrega aéreo '.$servicio);
|
400 |
+
$rate->setCost($subimporte);
|
401 |
+
$rate->setPrice($importe);
|
402 |
+
$result->append($rate);
|
403 |
+
return $result;
|
404 |
+
}
|
405 |
+
}
|
406 |
+
}
|
407 |
+
|
408 |
+
public function isTrackingAvailable()
|
409 |
+
{
|
410 |
+
return true;
|
411 |
+
}
|
412 |
+
|
413 |
+
public function getTrackingInfo($tracking_number)
|
414 |
+
{
|
415 |
+
$tracking_result = $this->getTracking($tracking_number);
|
416 |
+
if ($tracking_result instanceof Mage_Shipping_Model_Tracking_Result) {
|
417 |
+
$trackings = $tracking_result->getAllTrackings();
|
418 |
+
if ($trackings){ return $trackings[0]; }
|
419 |
+
}
|
420 |
+
elseif (is_string($tracking_result) && !empty($tracking_result)){
|
421 |
+
return $tracking_result;
|
422 |
+
}
|
423 |
+
else return false;
|
424 |
+
}
|
425 |
+
|
426 |
+
//Devuelve el tracking de un envio llamando al servicio web de ENVIALIA
|
427 |
+
protected function getTracking($tracking_number)
|
428 |
+
{
|
429 |
+
$envialia_num_tracking=$tracking_number;
|
430 |
+
$baseDatos = Mage::getSingleton('core/resource')->getConnection('core_write');
|
431 |
+
$resultado=$baseDatos->query("select updated_at from sales_flat_shipment_track where track_number='".$tracking_number."'");
|
432 |
+
$row = $resultado->fetch();
|
433 |
+
$envialia_fecha = $row['updated_at'];
|
434 |
+
//preparamos la fecha la obtenemos de updated_at
|
435 |
+
$envialia_fecha = substr($envialia_fecha,2,8); // AA/MM/DD
|
436 |
+
list($anyo,$mes,$dia) = explode("-",$envialia_fecha);
|
437 |
+
$envialia_fecha = $dia.'/'.$mes.'/'.$anyo;
|
438 |
+
|
439 |
+
// Primero de todo nos logueamos si esto falla todo lo demas no tiene sentido
|
440 |
+
$urlEnvialia = $this->getConfigData('ENVIALIA_URL');
|
441 |
+
$URL = $urlEnvialia."/soap";
|
442 |
+
|
443 |
+
$envialiaCodigoAgencia = $this->getConfigData('ENVIALIA_CODIGO_AGENCIA');
|
444 |
+
$envialiaCodigoCliente = $this->getConfigData('ENVIALIA_CODIGO_CLIENTE');
|
445 |
+
$envialiaPasswordCliente = $this->getConfigData('ENVIALIA_PASSWORD_CLIENTE');
|
446 |
+
|
447 |
+
$XML='<?xml version="1.0" encoding="utf-8"?>
|
448 |
+
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
449 |
+
<soap:Body>
|
450 |
+
<LoginWSService___LoginCli>
|
451 |
+
<strCodAge>'.$envialiaCodigoAgencia.'</strCodAge>
|
452 |
+
<strCod>'.$envialiaCodigoCliente.'</strCod>
|
453 |
+
<strPass>'.$envialiaPasswordCliente.'</strPass>
|
454 |
+
</LoginWSService___LoginCli>
|
455 |
+
</soap:Body>
|
456 |
+
</soap:Envelope>';
|
457 |
+
|
458 |
+
|
459 |
+
$ch = curl_init();
|
460 |
+
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
|
461 |
+
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
|
462 |
+
curl_setopt($ch, CURLOPT_HEADER, FALSE);
|
463 |
+
curl_setopt($ch, CURLOPT_FORBID_REUSE, TRUE);
|
464 |
+
curl_setopt($ch, CURLOPT_FRESH_CONNECT, TRUE);
|
465 |
+
curl_setopt($ch, CURLOPT_URL, $URL );
|
466 |
+
curl_setopt($ch, CURLOPT_POSTFIELDS, $XML );
|
467 |
+
curl_setopt($ch, CURLOPT_HTTPHEADER, Array("Content-Type: text/xml"));
|
468 |
+
|
469 |
+
$postResult = curl_exec($ch);
|
470 |
+
|
471 |
+
if (curl_errno($ch)) {
|
472 |
+
Mage::throwException(
|
473 |
+
Mage::helper('sales')->__('No se pudo llamar al ws de ENVIALIA.')
|
474 |
+
);
|
475 |
+
}
|
476 |
+
|
477 |
+
|
478 |
+
$xml = simplexml_load_string($postResult, NULL, NULL, "http://http://www.w3.org/2003/05/soap-envelope");
|
479 |
+
$xml->registerXPathNamespace("abc","http://tempuri.org/");
|
480 |
+
// hay excepciones desde el WS
|
481 |
+
if($xml->xpath('//faultstring')){
|
482 |
+
foreach($xml->xpath('//faultstring') as $error){
|
483 |
+
Mage::log('ENVIALIA ERROR : '.$error);
|
484 |
+
Mage::throwException(Mage::helper('sales')->__('ENVIALIA ERROR : '.$error));
|
485 |
+
}
|
486 |
+
}
|
487 |
+
else{
|
488 |
+
foreach ($xml->xpath('//abc:strURLDetSegEnv') as $item)
|
489 |
+
{
|
490 |
+
$envialia_url_seguimiento=$item;
|
491 |
+
}
|
492 |
+
}
|
493 |
+
//ya tenemos los datos para la url de seguimiento la montamos
|
494 |
+
|
495 |
+
$cortar=split("\?",$envialia_url_seguimiento);
|
496 |
+
$envialia_url_seguimiento=$cortar[0];
|
497 |
+
|
498 |
+
$enlace=$envialia_url_seguimiento."?servicio=".$envialia_num_tracking."&fecha=".$envialia_fecha;
|
499 |
+
|
500 |
+
$tracking_result = Mage::getModel('shipping/tracking_result');
|
501 |
+
|
502 |
+
$msg = '<p><a href="'.$enlace.'">Click para ver el seguimiento del envio</a></p>';
|
503 |
+
|
504 |
+
|
505 |
+
$tracking_status = Mage::getModel('shipping/tracking_result_status');
|
506 |
+
$tracking_status->setCarrier($this->_code);
|
507 |
+
$tracking_status->setCarrierTitle('<a target="_blank" href="http://www.envialia-urgente.com">' .$this->getConfigData('title'). '<a>');
|
508 |
+
$tracking_status->setTracking($tracking_number);
|
509 |
+
$tracking_status->addData(
|
510 |
+
array( 'status'=>$msg )
|
511 |
+
);
|
512 |
+
|
513 |
+
$tracking_result->append($tracking_status);
|
514 |
+
return $tracking_result;
|
515 |
+
}
|
516 |
+
|
517 |
+
|
518 |
+
function agregar_impuesto($pais){
|
519 |
+
|
520 |
+
$paises = Array("AT","BE","BG","CC","CY","CZ","DK","EE","FI",
|
521 |
+
"FR","DE","GR","HU","IE","IT","LV","LT","LU",
|
522 |
+
"MT","NL","PL","PT","RO","SK","SI","ES","SE","GB");
|
523 |
+
$max=count($paises);
|
524 |
+
for($i=0;$i<$max;$i++){
|
525 |
+
if($pais == $paises[$i]){
|
526 |
+
return true;
|
527 |
+
}
|
528 |
+
}
|
529 |
+
return false;
|
530 |
+
}
|
531 |
+
protected function tarifas(){
|
532 |
+
$archivo = getcwd().'/app/code/local/ENVIALIA/ENVIALIAShipping/'.'envialia.tarifas.csv';
|
533 |
+
$tarifas = Array();
|
534 |
+
|
535 |
+
if($fp = fopen ( $archivo , "r" )){
|
536 |
+
while (( $data = fgetcsv ( $fp , 1000 , ";" )) !== FALSE ) { // Mientras hay líneas que leer...
|
537 |
+
$tarifas[] = Array( "servicio" => $data[0],
|
538 |
+
"pais" => $data[1],
|
539 |
+
"cp_origen" => $data[2],
|
540 |
+
"cp_destino" => $data[3],
|
541 |
+
"peso" => $data[4],
|
542 |
+
"importe" => $data[5]);
|
543 |
+
}
|
544 |
+
fclose ( $fp );
|
545 |
+
return $tarifas;
|
546 |
+
}
|
547 |
+
else{
|
548 |
+
return false;
|
549 |
+
}
|
550 |
+
}
|
551 |
+
|
552 |
+
function dame_tarifa($tarifas,$servicio,$pais,$cp,$peso){
|
553 |
+
$max=count($tarifas);
|
554 |
+
$cp=intval($cp);
|
555 |
+
$peso=ceil($peso); //redondeo para arriba
|
556 |
+
$segmento = Array();
|
557 |
+
|
558 |
+
for($i=1;$i<$max;$i++){
|
559 |
+
// Si es un envio para ES-PT-AD
|
560 |
+
if($servicio == 'E24' || $servicio == 'E72'){
|
561 |
+
if($tarifas[$i]['servicio'] == $servicio){
|
562 |
+
if($tarifas[$i]['pais'] == $pais){
|
563 |
+
$cp_origen=intval($tarifas[$i]['cp_origen']);
|
564 |
+
$cp_destino=intval($tarifas[$i]['cp_destino']);
|
565 |
+
if($cp >= $cp_origen){
|
566 |
+
if($cp <= $cp_destino){
|
567 |
+
$segmento[]=Array("peso" => floatval($tarifas[$i]['peso']),"precio" => floatval($tarifas[$i]['importe']));
|
568 |
+
}
|
569 |
+
}
|
570 |
+
}
|
571 |
+
}
|
572 |
+
}
|
573 |
+
//Servico Europeo o Internacional
|
574 |
+
else{
|
575 |
+
if($tarifas[$i]['servicio'] == $servicio){
|
576 |
+
if($tarifas[$i]['pais'] == $pais){
|
577 |
+
$segmento[]=Array("peso" => floatval($tarifas[$i]['peso']),"precio" => floatval($tarifas[$i]['importe']));
|
578 |
+
}
|
579 |
+
}
|
580 |
+
}
|
581 |
+
}
|
582 |
+
// ya tenemos el segmento
|
583 |
+
|
584 |
+
// Metodo para ordenar arrays con arrays asociativos dentro
|
585 |
+
if(!function_exists('ordenar')){
|
586 |
+
function ordenar($x, $y){
|
587 |
+
if ( $x['peso'] == $y['peso'] ){
|
588 |
+
return 0;
|
589 |
+
}
|
590 |
+
//ordenar de menor a mayor
|
591 |
+
else if ( $x['peso'] < $y['peso'] ){
|
592 |
+
return -1;
|
593 |
+
}
|
594 |
+
else{
|
595 |
+
return 1;
|
596 |
+
}
|
597 |
+
}
|
598 |
+
}
|
599 |
+
|
600 |
+
// Ordenamos el segmento
|
601 |
+
usort($segmento,'ordenar');
|
602 |
+
// Preparamos los datos para el peso minimo y maximo
|
603 |
+
$precio_envio = 0;
|
604 |
+
$max=count($segmento);
|
605 |
+
$peso_min = floatval($segmento[0]['peso']);
|
606 |
+
$precio_min = floatval($segmento[0]['precio']);
|
607 |
+
$peso_max = floatval($segmento[$max-2]['peso']);
|
608 |
+
$precio_max = floatval($segmento[$max-2]['precio']);
|
609 |
+
$precio_despues_max = floatval($segmento[$max-1]['precio']);
|
610 |
+
|
611 |
+
if($peso <= $peso_min){
|
612 |
+
$precio_envio = $precio_min;
|
613 |
+
}
|
614 |
+
else if($peso >= $peso_max){
|
615 |
+
$peso_restante = $peso-$peso_max;
|
616 |
+
$precio_restante = $peso_restante*$precio_despues_max;
|
617 |
+
$precio_envio = $precio_max+$precio_restante;
|
618 |
+
}
|
619 |
+
else{
|
620 |
+
for($i=0;$i<$max;$i++){
|
621 |
+
if($peso != $segmento[$i]['peso']){
|
622 |
+
if($peso < $segmento[$i]['peso']){
|
623 |
+
$precio_envio = $segmento[$i]['precio'];
|
624 |
+
$i=$max;
|
625 |
+
}
|
626 |
+
}
|
627 |
+
else{ //es igual
|
628 |
+
$precio_envio = $segmento[$i]['precio'];
|
629 |
+
$i=$max;
|
630 |
+
}
|
631 |
+
}
|
632 |
+
}
|
633 |
+
return $precio_envio;
|
634 |
+
}
|
635 |
+
|
636 |
+
function es_europeo($pais){
|
637 |
+
$paises = Array("DE","AT","BE","BG","CC","DK","SK","SI","EE","FI","FR","GR","GG",
|
638 |
+
"NL","HU","IE","IT","LV","LI","LT","LU","MC","NO","PL","GB","CZ",
|
639 |
+
"RO","SM","SE","CH","VA");
|
640 |
+
$max=count($paises);
|
641 |
+
for($i=0;$i<$max;$i++){
|
642 |
+
if($pais == $paises[$i]){
|
643 |
+
return true;
|
644 |
+
}
|
645 |
+
}
|
646 |
+
return false;
|
647 |
+
}
|
648 |
+
|
649 |
+
}
|
app/code/local/ENVIALIA/ENVIALIAShipping/Model/ENVIALIA/Shipment.php
ADDED
@@ -0,0 +1,303 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
class ENVIALIA_ENVIALIAShipping_Model_ENVIALIA_Shipment extends Mage_Sales_Model_Order_Shipment
|
3 |
+
{
|
4 |
+
protected function _beforeSave()
|
5 |
+
{
|
6 |
+
$canSave = parent::_beforeSave();
|
7 |
+
// Antes de guardar verificamos que no este guardado este envio
|
8 |
+
$order_id=$this->getOrder()->getId();
|
9 |
+
|
10 |
+
$baseDatos = Mage::getSingleton('core/resource')->getConnection('core_write');
|
11 |
+
$resultado=$baseDatos->query("select track_number from sales_flat_shipment_track where parent_id = (select entity_id from sales_flat_order where order_id = '".$order_id."')");
|
12 |
+
$row = $resultado->fetch();
|
13 |
+
$hay_track = $row['track_number'];
|
14 |
+
|
15 |
+
if(!$hay_track){
|
16 |
+
// Primero de todo nos logueamos si esto falla todo lo demas no tiene sentido
|
17 |
+
$urlEnvialia = Mage::getStoreConfig('carriers/ENVIALIAShipping/ENVIALIA_URL', $this->getStoreId());
|
18 |
+
$URL = $urlEnvialia."/soap";
|
19 |
+
|
20 |
+
$envialiaCodigoAgencia = Mage::getStoreConfig('carriers/ENVIALIAShipping/ENVIALIA_CODIGO_AGENCIA', $this->getStoreId());
|
21 |
+
$envialiaCodigoCliente = Mage::getStoreConfig('carriers/ENVIALIAShipping/ENVIALIA_CODIGO_CLIENTE', $this->getStoreId());
|
22 |
+
$envialiaPasswordCliente = Mage::getStoreConfig('carriers/ENVIALIAShipping/ENVIALIA_PASSWORD_CLIENTE', $this->getStoreId());
|
23 |
+
|
24 |
+
|
25 |
+
|
26 |
+
$XML='<?xml version="1.0" encoding="utf-8"?>
|
27 |
+
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
28 |
+
<soap:Body>
|
29 |
+
<LoginWSService___LoginCli>
|
30 |
+
<strCodAge>'.$envialiaCodigoAgencia.'</strCodAge>
|
31 |
+
<strCod>'.$envialiaCodigoCliente.'</strCod>
|
32 |
+
<strPass>'.$envialiaPasswordCliente.'</strPass>
|
33 |
+
</LoginWSService___LoginCli>
|
34 |
+
</soap:Body>
|
35 |
+
</soap:Envelope>';
|
36 |
+
|
37 |
+
|
38 |
+
$ch = curl_init();
|
39 |
+
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
|
40 |
+
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
|
41 |
+
curl_setopt($ch, CURLOPT_HEADER, FALSE);
|
42 |
+
curl_setopt($ch, CURLOPT_FORBID_REUSE, TRUE);
|
43 |
+
curl_setopt($ch, CURLOPT_FRESH_CONNECT, TRUE);
|
44 |
+
curl_setopt($ch, CURLOPT_URL, $URL );
|
45 |
+
curl_setopt($ch, CURLOPT_POSTFIELDS, $XML );
|
46 |
+
curl_setopt($ch, CURLOPT_HTTPHEADER, Array("Content-Type: text/xml"));
|
47 |
+
|
48 |
+
$postResult = curl_exec($ch);
|
49 |
+
|
50 |
+
if (curl_errno($ch)) {
|
51 |
+
Mage::throwException(
|
52 |
+
Mage::helper('sales')->__('No se pudo llamar al ws de ENVIALIA.')
|
53 |
+
);
|
54 |
+
}
|
55 |
+
|
56 |
+
|
57 |
+
$xml = simplexml_load_string($postResult, NULL, NULL, "http://http://www.w3.org/2003/05/soap-envelope");
|
58 |
+
$xml->registerXPathNamespace("abc","http://tempuri.org/");
|
59 |
+
// hay excepciones desde el WS
|
60 |
+
if($xml->xpath('//faultstring')){
|
61 |
+
foreach($xml->xpath('//faultstring') as $error){
|
62 |
+
Mage::log('ENVIALIA ERROR : '.$error);
|
63 |
+
Mage::throwException(Mage::helper('sales')->__('ENVIALIA ERROR : '.$error));
|
64 |
+
}
|
65 |
+
}
|
66 |
+
else{
|
67 |
+
foreach ($xml->xpath('//abc:strSesion') as $item)
|
68 |
+
{
|
69 |
+
$id_sesion_cliente=$item;
|
70 |
+
}
|
71 |
+
}
|
72 |
+
// Ya tenemos el id_sesion
|
73 |
+
// Vamos a por todos los datos necesarios para realizar el pedido
|
74 |
+
|
75 |
+
$tipoServicio = $this->getOrder()->getShippingMethod();
|
76 |
+
$tipoServicio = split("_",$tipoServicio);
|
77 |
+
$envialia_tipo_servicio = $tipoServicio[1];
|
78 |
+
|
79 |
+
|
80 |
+
$peso = 0;
|
81 |
+
foreach ($this->getAllItems() as $item) {
|
82 |
+
$peso+= $item->getOrderItem()->getWeight() * $item->getOrderItem()->getQtyShipped();
|
83 |
+
}
|
84 |
+
if($peso < 1){
|
85 |
+
$peso=1;
|
86 |
+
}
|
87 |
+
$envialia_peso_origen = $peso;
|
88 |
+
$envialia_referencia = $this->getOrder()->getIncrementId();
|
89 |
+
$envialia_numero_paquetes = 1;
|
90 |
+
$envialia_importe_servicio = $this->getOrder()->getTotalDue();
|
91 |
+
|
92 |
+
// Datos del comprador
|
93 |
+
$dir_pedido = $this->getShippingAddress();
|
94 |
+
$envialia_nombre_destinatario = $dir_pedido->getName();
|
95 |
+
$envialia_nombre_via_destinatario = $dir_pedido->getStreetFull();
|
96 |
+
$envialia_poblacion_destinatario = $dir_pedido->getCity();
|
97 |
+
$envialia_CP_destinatario = $dir_pedido->getPostcode();
|
98 |
+
//$envialia_cod_provincia_destinatario= $dir_pedido->getRegion();
|
99 |
+
$envialia_telefono_destinatario = $dir_pedido->getTelephone();
|
100 |
+
$envialia_email_destinatario = $dir_pedido->getEmail();
|
101 |
+
$envialia_pais = $dir_pedido->getCountry();
|
102 |
+
|
103 |
+
//HAY QUE CONTROLAR SI EL COMPRADOR A ELEGIDO CONTRAREEMBOLSO Y PONERLO EN EL PARAMETRO
|
104 |
+
$metodo_pago = $this->getOrder()->getPayment()->getMethod();
|
105 |
+
if($metodo_pago == 'ig_cashondelivery'){
|
106 |
+
$envialia_reembolso=floatval($envialia_importe_servicio);
|
107 |
+
}
|
108 |
+
else{
|
109 |
+
$envialia_reembolso = 0;
|
110 |
+
}
|
111 |
+
|
112 |
+
//controlar de que pais es el comprador
|
113 |
+
if($envialia_pais == 'ES' || $envialia_pais == 'PT' || $envialia_pais == 'AD'){
|
114 |
+
$envialia_pais = '';
|
115 |
+
}
|
116 |
+
else{
|
117 |
+
$envialia_pais='<strCodPais>'.$envialia_pais.'</strCodPais>';
|
118 |
+
}
|
119 |
+
|
120 |
+
// Datos del vendedor
|
121 |
+
$envialia_nombre_remitente = Mage::getStoreConfig('general/store_information/name');
|
122 |
+
$envialia_nombre_via_remitente = Mage::getStoreConfig('general/store_information/address');
|
123 |
+
$envialia_poblacion_remitente = Mage::getStoreConfig('shipping/origin/city');
|
124 |
+
//$envialia_cod_provincia_remitente = Mage::getStoreConfig('shipping/origin/region');
|
125 |
+
$envialia_telefono_remitente = Mage::getStoreConfig('general/store_information/phone');
|
126 |
+
// comprobar si tenemos que sobreescribir el CP
|
127 |
+
if(Mage::getStoreConfig('carriers/ENVIALIAShipping/ENVIALIA_SOBREESCRIBIR_CODIGO_POSTAL', $this->getStoreId())){
|
128 |
+
$envialia_CP_remitente = Mage::getStoreConfig('carriers/ENVIALIAShipping/ENVIALIA_SOBREESCRIBIR_CODIGO_POSTAL', $this->getStoreId());
|
129 |
+
}
|
130 |
+
else{
|
131 |
+
$envialia_CP_remitente = Mage::getStoreConfig('shipping/origin/postcode');
|
132 |
+
}
|
133 |
+
|
134 |
+
|
135 |
+
//Realizamos el pedido
|
136 |
+
// <strCodProOri>'.$envialia_cod_provincia_remitente.'</strCodProOri>
|
137 |
+
// <strCodProDes>'.$envialia_cod_provincia_destinatario.'</strCodProDes>
|
138 |
+
// RECUERDA ELIMINAR LA SIGUIENTE VAR
|
139 |
+
//$envialia_tipo_servicio='24';
|
140 |
+
|
141 |
+
|
142 |
+
$XML='<?xml version="1.0" encoding="utf-8"?>
|
143 |
+
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
144 |
+
<soap:Header>
|
145 |
+
<ROClientIDHeader xmlns="http://tempuri.org/">
|
146 |
+
<ID>'.$id_sesion_cliente.'</ID>
|
147 |
+
</ROClientIDHeader>
|
148 |
+
</soap:Header>
|
149 |
+
<soap:Body>
|
150 |
+
<WebServService___GrabaEnvio4 xmlns="http://tempuri.org/">
|
151 |
+
<strCodAgeCargo>'.$envialiaCodigoAgencia.'</strCodAgeCargo>
|
152 |
+
<strCodAgeOri>'.$envialiaCodigoAgencia.'</strCodAgeOri>
|
153 |
+
<dtFecha>'.date("Y/m/d").'</dtFecha>
|
154 |
+
<strCodTipoServ>'.$envialia_tipo_servicio.'</strCodTipoServ>
|
155 |
+
<strCodCli>'.$envialiaCodigoCliente.'</strCodCli>
|
156 |
+
|
157 |
+
<strNomOri>'.$envialia_nombre_remitente.'</strNomOri>
|
158 |
+
<strDirOri>'.$envialia_nombre_via_remitente.'</strDirOri>
|
159 |
+
<strPobOri>'.$envialia_poblacion_remitente.'</strPobOri>
|
160 |
+
<strCPOri>'.$envialia_CP_remitente.'</strCPOri>
|
161 |
+
|
162 |
+
<strTlfOri>'.$envialia_telefono_remitente.'</strTlfOri>
|
163 |
+
|
164 |
+
<strNomDes>'.$envialia_nombre_destinatario.'</strNomDes>
|
165 |
+
<strDirDes>'.$envialia_nombre_via_destinatario.'</strDirDes>
|
166 |
+
<strPobDes>'.$envialia_poblacion_destinatario.'</strPobDes>
|
167 |
+
<strCPDes>'.$envialia_CP_destinatario.'</strCPDes>
|
168 |
+
|
169 |
+
<strTlfDes>'.$envialia_telefono_destinatario.'</strTlfDes>
|
170 |
+
|
171 |
+
<intPaq>'.$envialia_numero_paquetes.'</intPaq>
|
172 |
+
<dPesoOri>'.floatval($envialia_peso_origen).'</dPesoOri>
|
173 |
+
<dReembolso>'.$envialia_reembolso.'</dReembolso>
|
174 |
+
<strRef>'.$envialia_referencia.'</strRef>
|
175 |
+
'.$envialia_pais.'
|
176 |
+
<strDesDirEmails>'.$envialia_email_destinatario.'</strDesDirEmails>
|
177 |
+
<boInsert>'.TRUE.'</boInsert>
|
178 |
+
</WebServService___GrabaEnvio4>
|
179 |
+
</soap:Body>
|
180 |
+
</soap:Envelope>';
|
181 |
+
|
182 |
+
$ch = curl_init();
|
183 |
+
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
|
184 |
+
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
|
185 |
+
curl_setopt($ch, CURLOPT_HEADER, FALSE);
|
186 |
+
curl_setopt($ch, CURLOPT_FORBID_REUSE, TRUE);
|
187 |
+
curl_setopt($ch, CURLOPT_FRESH_CONNECT, TRUE);
|
188 |
+
curl_setopt($ch, CURLOPT_URL, $URL );
|
189 |
+
curl_setopt($ch, CURLOPT_POSTFIELDS, $XML );
|
190 |
+
curl_setopt($ch, CURLOPT_HTTPHEADER, Array("Content-Type: text/xml"));
|
191 |
+
|
192 |
+
$postResult = curl_exec($ch);
|
193 |
+
|
194 |
+
if (curl_errno($ch)) {
|
195 |
+
Mage::throwException(
|
196 |
+
Mage::helper('sales')->__('No se pudo llamar al ws de ENVIALIA.')
|
197 |
+
);
|
198 |
+
}
|
199 |
+
|
200 |
+
|
201 |
+
$xml = simplexml_load_string($postResult, NULL, NULL, "http://http://www.w3.org/2003/05/soap-envelope");
|
202 |
+
$xml->registerXPathNamespace("abc","http://tempuri.org/");
|
203 |
+
// hay excepciones desde el WS
|
204 |
+
if($xml->xpath('//faultstring')){
|
205 |
+
foreach($xml->xpath('//faultstring') as $error){
|
206 |
+
Mage::log('ENVIALIA ERROR : '.$error);
|
207 |
+
Mage::throwException(Mage::helper('sales')->__('ENVIALIA ERROR : '.$error));
|
208 |
+
}
|
209 |
+
}
|
210 |
+
else{
|
211 |
+
foreach ($xml->xpath('//abc:strAlbaranOut') as $item)
|
212 |
+
{
|
213 |
+
$envialia_num_albaran=$item;
|
214 |
+
}
|
215 |
+
foreach ($xml->xpath('//abc:strGuidOut') as $item)
|
216 |
+
{
|
217 |
+
$envialia_num_seguimiento=$item;
|
218 |
+
}
|
219 |
+
// primero tenemos que transformar el codigo de seguimiento
|
220 |
+
|
221 |
+
$cod_tracking = $this->limpiarNumTrack($envialia_num_seguimiento);
|
222 |
+
if(!$cod_tracking){
|
223 |
+
Mage::throwException(Mage::helper('sales')->__('ENVIALIA ERROR : limpiarNumTrack'));
|
224 |
+
}
|
225 |
+
// guardamos el num de seguimiento o track
|
226 |
+
$track = Mage::getModel('sales/order_shipment_track')
|
227 |
+
->setNumber($cod_tracking)
|
228 |
+
->setCarrierCode('ENVIALIAShipping')
|
229 |
+
->setTitle('Tracking ENVIALIA')
|
230 |
+
->setDescription($envialia_num_albaran);
|
231 |
+
$this->addTrack($track);
|
232 |
+
|
233 |
+
}
|
234 |
+
|
235 |
+
//Ahora podemos obtener el codigo de barras en PDF codificado en base64
|
236 |
+
$XML='<?xml version="1.0" encoding="utf-8"?>
|
237 |
+
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
238 |
+
<soap:Header>
|
239 |
+
<ROClientIDHeader xmlns="http://tempuri.org/">
|
240 |
+
<ID>'.$id_sesion_cliente.'</ID>
|
241 |
+
</ROClientIDHeader>
|
242 |
+
</soap:Header>
|
243 |
+
<soap:Body>
|
244 |
+
<WebServService___ConsEtiquetaEnvio>
|
245 |
+
<strAlbaran>'.$envialia_num_albaran.'</strAlbaran>
|
246 |
+
</WebServService___ConsEtiquetaEnvio>
|
247 |
+
</soap:Body>
|
248 |
+
</soap:Envelope>';
|
249 |
+
|
250 |
+
|
251 |
+
|
252 |
+
$ch = curl_init();
|
253 |
+
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
|
254 |
+
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
|
255 |
+
curl_setopt($ch, CURLOPT_HEADER, FALSE);
|
256 |
+
curl_setopt($ch, CURLOPT_FORBID_REUSE, TRUE);
|
257 |
+
curl_setopt($ch, CURLOPT_FRESH_CONNECT, TRUE);
|
258 |
+
curl_setopt($ch, CURLOPT_URL, $URL );
|
259 |
+
curl_setopt($ch, CURLOPT_POSTFIELDS, $XML );
|
260 |
+
curl_setopt($ch, CURLOPT_HTTPHEADER, Array("Content-Type: text/xml"));
|
261 |
+
|
262 |
+
$postResult = curl_exec($ch);
|
263 |
+
|
264 |
+
|
265 |
+
|
266 |
+
if (curl_errno($ch)) {
|
267 |
+
Mage::throwException(
|
268 |
+
Mage::helper('sales')->__('No se pudo llamar al ws de ENVIALIA.')
|
269 |
+
);
|
270 |
+
}
|
271 |
+
|
272 |
+
|
273 |
+
$xml = simplexml_load_string($postResult, NULL, NULL, "http://http://www.w3.org/2003/05/soap-envelope");
|
274 |
+
$xml->registerXPathNamespace("abc","http://tempuri.org/");
|
275 |
+
// hay excepciones desde el WS
|
276 |
+
if($xml->xpath('//faultstring')){
|
277 |
+
foreach($xml->xpath('//faultstring') as $error){
|
278 |
+
Mage::log('ENVIALIA ERROR : '.$error);
|
279 |
+
Mage::throwException(Mage::helper('sales')->__('ENVIALIA ERROR : '.$error));
|
280 |
+
}
|
281 |
+
}
|
282 |
+
else{
|
283 |
+
foreach ($xml->xpath('//abc:strEtiqueta') as $item)
|
284 |
+
{
|
285 |
+
$envialia_etiqueta=$item;
|
286 |
+
}
|
287 |
+
}
|
288 |
+
|
289 |
+
$this->setShippingLabel($envialia_etiqueta);
|
290 |
+
}
|
291 |
+
return $canSave;
|
292 |
+
}
|
293 |
+
|
294 |
+
function limpiarNumTrack($codigo){
|
295 |
+
if(!$codigo){
|
296 |
+
return false;
|
297 |
+
}
|
298 |
+
$codigo = substr($codigo,1,36);
|
299 |
+
return $codigo;
|
300 |
+
}
|
301 |
+
|
302 |
+
|
303 |
+
}
|
app/code/local/ENVIALIA/ENVIALIAShipping/Model/ENVIALIA/Shipment/Track.php
ADDED
@@ -0,0 +1,131 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
class ENVIALIA_ENVIALIAShipping_Model_ENVIALIA_Shipment_Track extends Mage_Sales_Model_Order_Shipment_Track
|
3 |
+
{
|
4 |
+
protected function _beforeDelete()
|
5 |
+
{
|
6 |
+
$canDelete = parent::_beforeDelete();
|
7 |
+
|
8 |
+
foreach ($this->getShipment()->getAllTracks() as $track )
|
9 |
+
{
|
10 |
+
if ($track->getCarrierCode()=='ENVIALIAShipping')
|
11 |
+
{
|
12 |
+
$ordenId=$track->getOrderId();
|
13 |
+
$baseDatos = Mage::getSingleton('core/resource')->getConnection('core_write');
|
14 |
+
// obtenemos el num albaran
|
15 |
+
$resultado=$baseDatos->query("select * from sales_flat_shipment_track where order_id='".$ordenId."'");
|
16 |
+
$row = $resultado->fetch();
|
17 |
+
$envialia_num_albaran = $row['description'];
|
18 |
+
|
19 |
+
|
20 |
+
// Primero de todo nos logueamos si esto falla todo lo demas no tiene sentido
|
21 |
+
$urlEnvialia = Mage::getStoreConfig('carriers/ENVIALIAShipping/ENVIALIA_URL', $this->getStoreId());
|
22 |
+
$URL = $urlEnvialia."/soap";
|
23 |
+
|
24 |
+
$envialiaCodigoAgencia = Mage::getStoreConfig('carriers/ENVIALIAShipping/ENVIALIA_CODIGO_AGENCIA', $this->getStoreId());
|
25 |
+
$envialiaCodigoCliente = Mage::getStoreConfig('carriers/ENVIALIAShipping/ENVIALIA_CODIGO_CLIENTE', $this->getStoreId());
|
26 |
+
$envialiaPasswordCliente = Mage::getStoreConfig('carriers/ENVIALIAShipping/ENVIALIA_PASSWORD_CLIENTE', $this->getStoreId());
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
$XML='<?xml version="1.0" encoding="utf-8"?>
|
31 |
+
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
32 |
+
<soap:Body>
|
33 |
+
<LoginWSService___LoginCli>
|
34 |
+
<strCodAge>'.$envialiaCodigoAgencia.'</strCodAge>
|
35 |
+
<strCod>'.$envialiaCodigoCliente.'</strCod>
|
36 |
+
<strPass>'.$envialiaPasswordCliente.'</strPass>
|
37 |
+
</LoginWSService___LoginCli>
|
38 |
+
</soap:Body>
|
39 |
+
</soap:Envelope>';
|
40 |
+
|
41 |
+
$ch = curl_init();
|
42 |
+
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
|
43 |
+
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
|
44 |
+
curl_setopt($ch, CURLOPT_HEADER, FALSE);
|
45 |
+
curl_setopt($ch, CURLOPT_FORBID_REUSE, TRUE);
|
46 |
+
curl_setopt($ch, CURLOPT_FRESH_CONNECT, TRUE);
|
47 |
+
curl_setopt($ch, CURLOPT_URL, $URL );
|
48 |
+
curl_setopt($ch, CURLOPT_POSTFIELDS, $XML );
|
49 |
+
curl_setopt($ch, CURLOPT_HTTPHEADER, Array("Content-Type: text/xml"));
|
50 |
+
|
51 |
+
$postResult = curl_exec($ch);
|
52 |
+
|
53 |
+
if (curl_errno($ch)) {
|
54 |
+
Mage::throwException(
|
55 |
+
Mage::helper('sales')->__('No se pudo llamar al ws de ENVIALIA.')
|
56 |
+
);
|
57 |
+
}
|
58 |
+
|
59 |
+
|
60 |
+
$xml = simplexml_load_string($postResult, NULL, NULL, "http://http://www.w3.org/2003/05/soap-envelope");
|
61 |
+
$xml->registerXPathNamespace("abc","http://tempuri.org/");
|
62 |
+
// hay excepciones desde el WS
|
63 |
+
if($xml->xpath('//faultstring')){
|
64 |
+
foreach($xml->xpath('//faultstring') as $error){
|
65 |
+
Mage::log('ENVIALIA ERROR : '.$error);
|
66 |
+
Mage::throwException(Mage::helper('sales')->__('ENVIALIA ERROR : '.$error));
|
67 |
+
}
|
68 |
+
}
|
69 |
+
else{
|
70 |
+
foreach ($xml->xpath('//abc:strSesion') as $item)
|
71 |
+
{
|
72 |
+
$id_sesion_cliente=$item;
|
73 |
+
}
|
74 |
+
}
|
75 |
+
// Ya tenemos el id_sesion
|
76 |
+
// Ahora cancelamos el envio
|
77 |
+
|
78 |
+
$XML=' <?xml version="1.0" encoding="utf-8"?>
|
79 |
+
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-
|
80 |
+
instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
81 |
+
<soap:Header>
|
82 |
+
<ROClientIDHeader xmlns="http://tempuri.org/">
|
83 |
+
<ID>'.$id_sesion_cliente.'</ID>
|
84 |
+
</ROClientIDHeader>
|
85 |
+
</soap:Header>
|
86 |
+
<soap:Body>
|
87 |
+
<WebServService___BorraEnvio xmlns="http://tempuri.org/">
|
88 |
+
<strCodAgeCargo>'.$envialiaCodigoAgencia.'</strCodAgeCargo>
|
89 |
+
<strCodAgeOri>'.$envialiaCodigoAgencia.'</strCodAgeOri>
|
90 |
+
<strAlbaran>'.$envialia_num_albaran.'</strAlbaran>
|
91 |
+
</WebServService___BorraEnvio>
|
92 |
+
</soap:Body>
|
93 |
+
</soap:Envelope>';
|
94 |
+
|
95 |
+
$ch = curl_init();
|
96 |
+
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
|
97 |
+
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
|
98 |
+
curl_setopt($ch, CURLOPT_HEADER, FALSE);
|
99 |
+
curl_setopt($ch, CURLOPT_FORBID_REUSE, TRUE);
|
100 |
+
curl_setopt($ch, CURLOPT_FRESH_CONNECT, TRUE);
|
101 |
+
curl_setopt($ch, CURLOPT_URL, $URL );
|
102 |
+
curl_setopt($ch, CURLOPT_POSTFIELDS, $XML );
|
103 |
+
curl_setopt($ch, CURLOPT_HTTPHEADER, Array("Content-Type: text/xml"));
|
104 |
+
|
105 |
+
$postResult = curl_exec($ch);
|
106 |
+
|
107 |
+
if (curl_errno($ch)) {
|
108 |
+
Mage::throwException(
|
109 |
+
Mage::helper('sales')->__('No se pudo llamar al ws de ENVIALIA.')
|
110 |
+
);
|
111 |
+
}
|
112 |
+
|
113 |
+
|
114 |
+
$xml = simplexml_load_string($postResult, NULL, NULL, "http://http://www.w3.org/2003/05/soap-envelope");
|
115 |
+
$xml->registerXPathNamespace("abc","http://tempuri.org/");
|
116 |
+
// hay excepciones desde el WS
|
117 |
+
if($xml->xpath('//intCodError')){
|
118 |
+
foreach($xml->xpath('//intCodError') as $error){
|
119 |
+
Mage::log('ENVIALIA ERROR : '.$error);
|
120 |
+
Mage::throwException(Mage::helper('sales')->__('ENVIALIA ERROR : '.$error));
|
121 |
+
}
|
122 |
+
}
|
123 |
+
// Ya cancelamos el pedido y podemos borrar su codigo de barras
|
124 |
+
$resultado=$baseDatos->query("update sales_flat_shipment set shipping_label='' where order_id='".$ordenId."'");
|
125 |
+
|
126 |
+
}
|
127 |
+
}
|
128 |
+
return $canDelete;
|
129 |
+
}
|
130 |
+
|
131 |
+
}
|
app/code/local/ENVIALIA/ENVIALIAShipping/Model/ENVIALIA/Source/Gratuito.php
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
class ENVIALIA_ENVIALIAShipping_Model_ENVIALIA_Source_Gratuito
|
3 |
+
{
|
4 |
+
public function toOptionArray()
|
5 |
+
{
|
6 |
+
$arr = array();
|
7 |
+
$arr[] = array('value'=>'E24', 'label'=>'E-COMM 24H');
|
8 |
+
$arr[] = array('value'=>'E72', 'label'=>'E-COMM 72H');
|
9 |
+
return $arr;
|
10 |
+
}
|
11 |
+
|
12 |
+
public function getMethod($shippingMethod)
|
13 |
+
{
|
14 |
+
$mte= explode("_",$shippingMethod);
|
15 |
+
if ($mte[0]=="ENVIALIAShipping")
|
16 |
+
{
|
17 |
+
$label=$mte[1];
|
18 |
+
foreach($this->toOptionArray() as $mta)
|
19 |
+
{
|
20 |
+
if ($mta["label"]==$label) $metodo=$mta;
|
21 |
+
}
|
22 |
+
}
|
23 |
+
return $metodo;
|
24 |
+
}
|
25 |
+
}
|
26 |
+
?>
|
app/code/local/ENVIALIA/ENVIALIAShipping/Model/ENVIALIA/Source/GratuitoInternacional.php
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
class ENVIALIA_ENVIALIAShipping_Model_ENVIALIA_Source_GratuitoInternacional
|
3 |
+
{
|
4 |
+
public function toOptionArray()
|
5 |
+
{
|
6 |
+
$arr = array();
|
7 |
+
$arr[] = array('value'=>'EWW', 'label'=>'E-COMM WORLDWIDE');
|
8 |
+
$arr[] = array('value'=>'EEU', 'label'=>'E-COMM EUROPE EXPRESS');
|
9 |
+
return $arr;
|
10 |
+
}
|
11 |
+
|
12 |
+
public function getMethod($shippingMethod)
|
13 |
+
{
|
14 |
+
$mte= explode("_",$shippingMethod);
|
15 |
+
if ($mte[0]=="ENVIALIAShipping")
|
16 |
+
{
|
17 |
+
$label=$mte[1];
|
18 |
+
foreach($this->toOptionArray() as $mta)
|
19 |
+
{
|
20 |
+
if ($mta["label"]==$label) $metodo=$mta;
|
21 |
+
}
|
22 |
+
}
|
23 |
+
return $metodo;
|
24 |
+
}
|
25 |
+
}
|
26 |
+
?>
|
app/code/local/ENVIALIA/ENVIALIAShipping/Model/ENVIALIA/Source/Manipulacion.php
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
class ENVIALIA_ENVIALIAShipping_Model_ENVIALIA_Source_Manipulacion
|
3 |
+
{
|
4 |
+
public function toOptionArray()
|
5 |
+
{
|
6 |
+
$arr = array();
|
7 |
+
$arr[] = array('value'=>'F', 'label'=>'Fijo');
|
8 |
+
$arr[] = array('value'=>'V', 'label'=>'Variable');
|
9 |
+
return $arr;
|
10 |
+
}
|
11 |
+
|
12 |
+
public function getMethod($shippingMethod)
|
13 |
+
{
|
14 |
+
$mte= explode("_",$shippingMethod);
|
15 |
+
if ($mte[0]=="ENVIALIAShipping")
|
16 |
+
{
|
17 |
+
$label=$mte[1];
|
18 |
+
foreach($this->toOptionArray() as $mta)
|
19 |
+
{
|
20 |
+
if ($mta["label"]==$label) $metodo=$mta;
|
21 |
+
}
|
22 |
+
}
|
23 |
+
return $metodo;
|
24 |
+
}
|
25 |
+
}
|
26 |
+
?>
|
app/code/local/ENVIALIA/ENVIALIAShipping/envialia.tarifas.csv
ADDED
@@ -0,0 +1,3133 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
SERVICIO;PAIS;POSTALORIG;POSTALDEST;PESO;IMPORTE
|
2 |
+
E24;PT;0;9999;2;8.88
|
3 |
+
E24;PT;0;9999;5;9.71
|
4 |
+
E24;PT;0;9999;10;10.62
|
5 |
+
E24;PT;0;9999;999999;0.95
|
6 |
+
E24;ES;1000;6999;2;8.88
|
7 |
+
E24;ES;1000;6999;5;9.71
|
8 |
+
E24;ES;1000;6999;10;10.62
|
9 |
+
E24;ES;1000;6999;999999;0.95
|
10 |
+
E24;ES;7000;7999;1;10.1
|
11 |
+
E24;ES;7000;7999;2;12.3
|
12 |
+
E24;ES;7000;7999;5;14.61
|
13 |
+
E24;ES;7000;7999;10;16.12
|
14 |
+
E24;ES;7000;7999;999999;2.55
|
15 |
+
E24;ES;8000;34999;2;8.88
|
16 |
+
E24;ES;8000;34999;5;9.71
|
17 |
+
E24;ES;8000;34999;10;10.62
|
18 |
+
E24;ES;8000;34999;999999;0.95
|
19 |
+
E24;ES;35000;35999;1;12
|
20 |
+
E24;ES;35000;35999;999999;5.58
|
21 |
+
E24;ES;36000;37999;2;8.88
|
22 |
+
E24;ES;36000;37999;5;9.71
|
23 |
+
E24;ES;36000;37999;10;10.62
|
24 |
+
E24;ES;36000;37999;999999;0.95
|
25 |
+
E24;ES;38000;38999;1;12
|
26 |
+
E24;ES;38000;38999;999999;5.58
|
27 |
+
E24;ES;39000;50999;2;8.88
|
28 |
+
E24;ES;39000;50999;5;9.71
|
29 |
+
E24;ES;39000;50999;10;10.62
|
30 |
+
E24;ES;39000;50999;999999;0.95
|
31 |
+
E24;ES;51000;52999;1;20.69
|
32 |
+
E24;ES;51000;52999;999999;4.37
|
33 |
+
E24;ES;GIB01;GIB01;1;20.69
|
34 |
+
E24;ES;GIB01;GIB01;999999;4.37
|
35 |
+
E24;ES;AD100;AD700;5;16.16
|
36 |
+
E24;ES;AD100;AD700;10;19.86
|
37 |
+
E24;ES;AD100;AD700;999999;4.37
|
38 |
+
E72;PT;0;9999;2;5.25
|
39 |
+
E72;PT;0;9999;5;7.05
|
40 |
+
E72;PT;0;9999;10;7.84
|
41 |
+
E72;PT;0;9999;15;8.75
|
42 |
+
E72;PT;0;9999;20;10.02
|
43 |
+
E72;PT;0;9999;30;13.18
|
44 |
+
E72;PT;0;9999;999999;0.89
|
45 |
+
E72;ES;1000;1999;2;5.25
|
46 |
+
E72;ES;1000;1999;5;7.05
|
47 |
+
E72;ES;1000;1999;10;7.84
|
48 |
+
E72;ES;1000;1999;15;8.75
|
49 |
+
E72;ES;1000;1999;20;10.02
|
50 |
+
E72;ES;1000;1999;30;13.18
|
51 |
+
E72;ES;1000;1999;999999;0.89
|
52 |
+
E72;ES;7000;7999;1;10.1
|
53 |
+
E72;ES;7000;7999;2;12.3
|
54 |
+
E72;ES;7000;7999;5;14.61
|
55 |
+
E72;ES;7000;7999;10;16.12
|
56 |
+
E72;ES;7000;7999;999999;2.55
|
57 |
+
E72;ES;8000;34999;2;5.25
|
58 |
+
E72;ES;8000;34999;5;7.05
|
59 |
+
E72;ES;8000;34999;10;7.84
|
60 |
+
E72;ES;8000;34999;15;8.75
|
61 |
+
E72;ES;8000;34999;20;10.02
|
62 |
+
E72;ES;8000;34999;30;13.18
|
63 |
+
E72;ES;8000;34999;999999;0.89
|
64 |
+
E72;ES;35000;35999;1;12
|
65 |
+
E72;ES;35000;35999;999999;5.58
|
66 |
+
E72;ES;36000;37999;2;5.25
|
67 |
+
E72;ES;36000;37999;5;7.05
|
68 |
+
E72;ES;36000;37999;10;7.84
|
69 |
+
E72;ES;36000;37999;15;8.75
|
70 |
+
E72;ES;36000;37999;20;10.02
|
71 |
+
E72;ES;36000;37999;30;13.18
|
72 |
+
E72;ES;36000;37999;999999;0.89
|
73 |
+
E72;ES;38000;38999;1;12
|
74 |
+
E72;ES;38000;38999;999999;5.58
|
75 |
+
E72;ES;39000;50999;2;5.25
|
76 |
+
E72;ES;39000;50999;5;7.05
|
77 |
+
E72;ES;39000;50999;10;7.84
|
78 |
+
E72;ES;39000;50999;15;8.75
|
79 |
+
E72;ES;39000;50999;20;10.02
|
80 |
+
E72;ES;39000;50999;30;13.18
|
81 |
+
E72;ES;39000;50999;999999;0.89
|
82 |
+
E72;ES;51000;52999;1;19.98
|
83 |
+
E72;ES;51000;52999;999999;4.1
|
84 |
+
E72;ES;GIB01;GIB01;1;19.98
|
85 |
+
E72;ES;GIB01;GIB01;999999;4.1
|
86 |
+
E72;ES;AD100;AD700;5;15.86
|
87 |
+
E72;ES;AD100;AD700;10;19.56
|
88 |
+
E72;ES;AD100;AD700;999999;0.99
|
89 |
+
EEU;AT;;;5;102.92
|
90 |
+
EEU;AT;;;10;112.43
|
91 |
+
EEU;AT;;;15;118.24
|
92 |
+
EEU;AT;;;20;123.31
|
93 |
+
EEU;AT;;;25;129.06
|
94 |
+
EEU;AT;;;30;136.94
|
95 |
+
EEU;AT;;;999999;2.19
|
96 |
+
EEU;BE;;;5;97.73
|
97 |
+
EEU;BE;;;10;102.63
|
98 |
+
EEU;BE;;;15;106.08
|
99 |
+
EEU;BE;;;20;108.87
|
100 |
+
EEU;BE;;;25;112.31
|
101 |
+
EEU;BE;;;30;117.51
|
102 |
+
EEU;BE;;;999999;1.65
|
103 |
+
EEU;BG;;;5;112.06
|
104 |
+
EEU;BG;;;10;122.69
|
105 |
+
EEU;BG;;;15;129.14
|
106 |
+
EEU;BG;;;20;134.77
|
107 |
+
EEU;BG;;;25;141.23
|
108 |
+
EEU;BG;;;30;149.63
|
109 |
+
EEU;BG;;;999999;2.58
|
110 |
+
EEU;CC;;;5;86.75
|
111 |
+
EEU;CC;;;10;91.95
|
112 |
+
EEU;CC;;;15;95.42
|
113 |
+
EEU;CC;;;20;98.35
|
114 |
+
EEU;CC;;;25;101.79
|
115 |
+
EEU;CC;;;30;105.98
|
116 |
+
EEU;CC;;;999999;1.05
|
117 |
+
EEU;CH;;;5;106.47
|
118 |
+
EEU;CH;;;10;116.56
|
119 |
+
EEU;CH;;;15;122.67
|
120 |
+
EEU;CH;;;20;128.04
|
121 |
+
EEU;CH;;;25;134.17
|
122 |
+
EEU;CH;;;30;142.15
|
123 |
+
EEU;CH;;;999999;2.45
|
124 |
+
EEU;CZ;;;5;112.06
|
125 |
+
EEU;CZ;;;10;122.69
|
126 |
+
EEU;CZ;;;15;129.14
|
127 |
+
EEU;CZ;;;20;134.77
|
128 |
+
EEU;CZ;;;25;141.23
|
129 |
+
EEU;CZ;;;30;149.63
|
130 |
+
EEU;CZ;;;999999;2.58
|
131 |
+
EEU;DE;;;5;97.73
|
132 |
+
EEU;DE;;;10;102.63
|
133 |
+
EEU;DE;;;15;106.08
|
134 |
+
EEU;DE;;;20;108.87
|
135 |
+
EEU;DE;;;25;112.31
|
136 |
+
EEU;DE;;;30;117.51
|
137 |
+
EEU;DE;;;999999;1.65
|
138 |
+
EEU;DK;;;5;102.92
|
139 |
+
EEU;DK;;;10;112.43
|
140 |
+
EEU;DK;;;15;118.24
|
141 |
+
EEU;DK;;;20;123.31
|
142 |
+
EEU;DK;;;25;129.06
|
143 |
+
EEU;DK;;;30;136.94
|
144 |
+
EEU;DK;;;999999;2.19
|
145 |
+
EEU;EE;;;5;112.06
|
146 |
+
EEU;EE;;;10;122.69
|
147 |
+
EEU;EE;;;15;129.14
|
148 |
+
EEU;EE;;;20;134.77
|
149 |
+
EEU;EE;;;25;141.23
|
150 |
+
EEU;EE;;;30;149.63
|
151 |
+
EEU;EE;;;999999;2.58
|
152 |
+
EEU;FI;;;5;102.92
|
153 |
+
EEU;FI;;;10;112.43
|
154 |
+
EEU;FI;;;15;118.24
|
155 |
+
EEU;FI;;;20;123.31
|
156 |
+
EEU;FI;;;25;129.06
|
157 |
+
EEU;FI;;;30;136.94
|
158 |
+
EEU;FI;;;999999;2.19
|
159 |
+
EEU;FR;;;5;86.75
|
160 |
+
EEU;FR;;;10;91.95
|
161 |
+
EEU;FR;;;15;95.42
|
162 |
+
EEU;FR;;;20;98.35
|
163 |
+
EEU;FR;;;25;101.79
|
164 |
+
EEU;FR;;;30;105.98
|
165 |
+
EEU;FR;;;999999;1.05
|
166 |
+
EEU;GB;;;5;97.73
|
167 |
+
EEU;GB;;;10;102.63
|
168 |
+
EEU;GB;;;15;106.08
|
169 |
+
EEU;GB;;;20;108.87
|
170 |
+
EEU;GB;;;25;112.31
|
171 |
+
EEU;GB;;;30;117.51
|
172 |
+
EEU;GB;;;999999;1.65
|
173 |
+
EEU;GG;;;5;106.47
|
174 |
+
EEU;GG;;;10;116.56
|
175 |
+
EEU;GG;;;15;122.67
|
176 |
+
EEU;GG;;;20;128.04
|
177 |
+
EEU;GG;;;25;134.17
|
178 |
+
EEU;GG;;;30;142.15
|
179 |
+
EEU;GG;;;999999;2.45
|
180 |
+
EEU;GR;;;5;112.06
|
181 |
+
EEU;GR;;;10;122.69
|
182 |
+
EEU;GR;;;15;129.14
|
183 |
+
EEU;GR;;;20;134.77
|
184 |
+
EEU;GR;;;25;141.23
|
185 |
+
EEU;GR;;;30;149.63
|
186 |
+
EEU;GR;;;999999;2.58
|
187 |
+
EEU;HU;;;5;112.06
|
188 |
+
EEU;HU;;;10;122.69
|
189 |
+
EEU;HU;;;15;129.14
|
190 |
+
EEU;HU;;;20;134.77
|
191 |
+
EEU;HU;;;25;141.23
|
192 |
+
EEU;HU;;;30;149.63
|
193 |
+
EEU;HU;;;999999;2.58
|
194 |
+
EEU;IE;;;5;102.92
|
195 |
+
EEU;IE;;;10;112.43
|
196 |
+
EEU;IE;;;15;118.24
|
197 |
+
EEU;IE;;;20;123.31
|
198 |
+
EEU;IE;;;25;129.06
|
199 |
+
EEU;IE;;;30;136.94
|
200 |
+
EEU;IE;;;999999;2.19
|
201 |
+
EEU;IT;;;5;86.75
|
202 |
+
EEU;IT;;;10;91.95
|
203 |
+
EEU;IT;;;15;95.42
|
204 |
+
EEU;IT;;;20;98.35
|
205 |
+
EEU;IT;;;25;101.79
|
206 |
+
EEU;IT;;;30;105.98
|
207 |
+
EEU;IT;;;999999;1.05
|
208 |
+
EEU;JE;;;5;106.47
|
209 |
+
EEU;JE;;;10;116.56
|
210 |
+
EEU;JE;;;15;122.67
|
211 |
+
EEU;JE;;;20;128.04
|
212 |
+
EEU;JE;;;25;134.17
|
213 |
+
EEU;JE;;;30;142.15
|
214 |
+
EEU;JE;;;999999;2.45
|
215 |
+
EEU;LI;;;5;106.47
|
216 |
+
EEU;LI;;;10;116.56
|
217 |
+
EEU;LI;;;15;122.67
|
218 |
+
EEU;LI;;;20;128.04
|
219 |
+
EEU;LI;;;25;134.17
|
220 |
+
EEU;LI;;;30;142.15
|
221 |
+
EEU;LI;;;999999;2.45
|
222 |
+
EEU;LT;;;5;112.06
|
223 |
+
EEU;LT;;;10;122.69
|
224 |
+
EEU;LT;;;15;129.14
|
225 |
+
EEU;LT;;;20;134.77
|
226 |
+
EEU;LT;;;25;141.23
|
227 |
+
EEU;LT;;;30;149.63
|
228 |
+
EEU;LT;;;999999;2.58
|
229 |
+
EEU;LU;;;5;97.73
|
230 |
+
EEU;LU;;;10;102.63
|
231 |
+
EEU;LU;;;15;106.08
|
232 |
+
EEU;LU;;;20;108.87
|
233 |
+
EEU;LU;;;25;112.31
|
234 |
+
EEU;LU;;;30;117.51
|
235 |
+
EEU;LU;;;999999;1.65
|
236 |
+
EEU;LV;;;5;112.06
|
237 |
+
EEU;LV;;;10;122.69
|
238 |
+
EEU;LV;;;15;129.14
|
239 |
+
EEU;LV;;;20;134.77
|
240 |
+
EEU;LV;;;25;141.23
|
241 |
+
EEU;LV;;;30;149.63
|
242 |
+
EEU;LV;;;999999;2.58
|
243 |
+
EEU;MC;;;5;97.73
|
244 |
+
EEU;MC;;;10;102.63
|
245 |
+
EEU;MC;;;15;106.08
|
246 |
+
EEU;MC;;;20;108.87
|
247 |
+
EEU;MC;;;25;112.31
|
248 |
+
EEU;MC;;;30;117.51
|
249 |
+
EEU;MC;;;999999;1.65
|
250 |
+
EEU;NL;;;5;97.73
|
251 |
+
EEU;NL;;;10;102.63
|
252 |
+
EEU;NL;;;15;106.08
|
253 |
+
EEU;NL;;;20;108.87
|
254 |
+
EEU;NL;;;25;112.31
|
255 |
+
EEU;NL;;;30;117.51
|
256 |
+
EEU;NL;;;999999;1.65
|
257 |
+
EEU;NO;;;5;106.47
|
258 |
+
EEU;NO;;;10;116.56
|
259 |
+
EEU;NO;;;15;122.67
|
260 |
+
EEU;NO;;;20;128.04
|
261 |
+
EEU;NO;;;25;134.17
|
262 |
+
EEU;NO;;;30;142.15
|
263 |
+
EEU;NO;;;999999;2.45
|
264 |
+
EEU;PL;;;5;112.06
|
265 |
+
EEU;PL;;;10;122.69
|
266 |
+
EEU;PL;;;15;129.14
|
267 |
+
EEU;PL;;;20;134.77
|
268 |
+
EEU;PL;;;25;141.23
|
269 |
+
EEU;PL;;;30;149.63
|
270 |
+
EEU;PL;;;999999;2.58
|
271 |
+
EEU;RO;;;5;112.06
|
272 |
+
EEU;RO;;;10;122.69
|
273 |
+
EEU;RO;;;15;129.14
|
274 |
+
EEU;RO;;;20;134.77
|
275 |
+
EEU;RO;;;25;141.23
|
276 |
+
EEU;RO;;;30;149.63
|
277 |
+
EEU;RO;;;999999;2.58
|
278 |
+
EEU;SE;;;5;102.92
|
279 |
+
EEU;SE;;;10;112.43
|
280 |
+
EEU;SE;;;15;118.24
|
281 |
+
EEU;SE;;;20;123.31
|
282 |
+
EEU;SE;;;25;129.06
|
283 |
+
EEU;SE;;;30;136.94
|
284 |
+
EEU;SE;;;999999;2.19
|
285 |
+
EEU;SI;;;5;112.06
|
286 |
+
EEU;SI;;;10;122.69
|
287 |
+
EEU;SI;;;15;129.14
|
288 |
+
EEU;SI;;;20;134.77
|
289 |
+
EEU;SI;;;25;141.23
|
290 |
+
EEU;SI;;;30;149.63
|
291 |
+
EEU;SI;;;999999;2.58
|
292 |
+
EEU;SK;;;5;112.06
|
293 |
+
EEU;SK;;;10;122.69
|
294 |
+
EEU;SK;;;15;129.14
|
295 |
+
EEU;SK;;;20;134.77
|
296 |
+
EEU;SK;;;25;141.23
|
297 |
+
EEU;SK;;;30;149.63
|
298 |
+
EEU;SK;;;999999;2.58
|
299 |
+
EEU;SM;;;5;106.47
|
300 |
+
EEU;SM;;;10;116.56
|
301 |
+
EEU;SM;;;15;122.67
|
302 |
+
EEU;SM;;;20;128.04
|
303 |
+
EEU;SM;;;25;134.17
|
304 |
+
EEU;SM;;;30;142.15
|
305 |
+
EEU;SM;;;999999;2.45
|
306 |
+
EEU;VA;;;5;102.92
|
307 |
+
EEU;VA;;;10;112.43
|
308 |
+
EEU;VA;;;15;118.24
|
309 |
+
EEU;VA;;;20;123.31
|
310 |
+
EEU;VA;;;25;129.06
|
311 |
+
EEU;VA;;;30;136.94
|
312 |
+
EEU;VA;;;999999;2.19
|
313 |
+
EWW;AE;;;2; 96.37�
|
314 |
+
EWW;AE;;;3;115.84
|
315 |
+
EWW;AE;;;4;133.25
|
316 |
+
EWW;AE;;;5;150.65
|
317 |
+
EWW;AE;;;10;198.26
|
318 |
+
EWW;AE;;;15;226.36
|
319 |
+
EWW;AE;;;20;262.88
|
320 |
+
EWW;AE;;;30;313.55
|
321 |
+
EWW;AE;;;40;359.03
|
322 |
+
EWW;AE;;;50;397.89
|
323 |
+
EWW;AE;;;60;445.47
|
324 |
+
EWW;AE;;;70;493.04
|
325 |
+
EWW;AE;;;999999;6.46
|
326 |
+
EWW;AF;;;2; 96.37�
|
327 |
+
EWW;AF;;;3;115.84
|
328 |
+
EWW;AF;;;4;133.25
|
329 |
+
EWW;AF;;;5;150.65
|
330 |
+
EWW;AF;;;10;198.26
|
331 |
+
EWW;AF;;;15;226.36
|
332 |
+
EWW;AF;;;20;262.88
|
333 |
+
EWW;AF;;;30;313.55
|
334 |
+
EWW;AF;;;40;359.03
|
335 |
+
EWW;AF;;;50;397.89
|
336 |
+
EWW;AF;;;60;445.47
|
337 |
+
EWW;AF;;;70;493.04
|
338 |
+
EWW;AF;;;999999;6.46
|
339 |
+
EWW;AG;;;2;107.34
|
340 |
+
EWW;AG;;;3;126.43
|
341 |
+
EWW;AG;;;4;143.11
|
342 |
+
EWW;AG;;;5;159.8
|
343 |
+
EWW;AG;;;10;236.05
|
344 |
+
EWW;AG;;;15;261.31
|
345 |
+
EWW;AG;;;20;297.68
|
346 |
+
EWW;AG;;;30;354.91
|
347 |
+
EWW;AG;;;40;414.4
|
348 |
+
EWW;AG;;;50;462.4
|
349 |
+
EWW;AG;;;60;520.5
|
350 |
+
EWW;AG;;;70;578.58
|
351 |
+
EWW;AG;;;999999;7.58
|
352 |
+
EWW;AI;;;2;107.34
|
353 |
+
EWW;AI;;;3;126.43
|
354 |
+
EWW;AI;;;4;143.11
|
355 |
+
EWW;AI;;;5;159.8
|
356 |
+
EWW;AI;;;10;236.05
|
357 |
+
EWW;AI;;;15;261.31
|
358 |
+
EWW;AI;;;20;297.68
|
359 |
+
EWW;AI;;;30;354.91
|
360 |
+
EWW;AI;;;40;414.4
|
361 |
+
EWW;AI;;;50;462.4
|
362 |
+
EWW;AI;;;60;520.5
|
363 |
+
EWW;AI;;;70;578.58
|
364 |
+
EWW;AI;;;999999;7.58
|
365 |
+
EWW;AL;;;2; 97.44�
|
366 |
+
EWW;AL;;;3;117.3
|
367 |
+
EWW;AL;;;4;133.67
|
368 |
+
EWW;AL;;;5;150.01
|
369 |
+
EWW;AL;;;10;201.2
|
370 |
+
EWW;AL;;;15;217.98
|
371 |
+
EWW;AL;;;20;238.84
|
372 |
+
EWW;AL;;;30;280.64
|
373 |
+
EWW;AL;;;40;321.71
|
374 |
+
EWW;AL;;;50;349.26
|
375 |
+
EWW;AL;;;60;394.5
|
376 |
+
EWW;AL;;;70;431.7
|
377 |
+
EWW;AL;;;999999;5.66
|
378 |
+
EWW;AM;;;2;107.34
|
379 |
+
EWW;AM;;;3;126.43
|
380 |
+
EWW;AM;;;4;143.11
|
381 |
+
EWW;AM;;;5;159.8
|
382 |
+
EWW;AM;;;10;236.05
|
383 |
+
EWW;AM;;;15;261.31
|
384 |
+
EWW;AM;;;20;297.68
|
385 |
+
EWW;AM;;;30;354.91
|
386 |
+
EWW;AM;;;40;414.4
|
387 |
+
EWW;AM;;;50;462.4
|
388 |
+
EWW;AM;;;60;520.5
|
389 |
+
EWW;AM;;;70;578.58
|
390 |
+
EWW;AM;;;999999;7.58
|
391 |
+
EWW;AN;;;2;107.34
|
392 |
+
EWW;AN;;;3;126.43
|
393 |
+
EWW;AN;;;4;143.11
|
394 |
+
EWW;AN;;;5;159.8
|
395 |
+
EWW;AN;;;10;236.05
|
396 |
+
EWW;AN;;;15;261.31
|
397 |
+
EWW;AN;;;20;297.68
|
398 |
+
EWW;AN;;;30;354.91
|
399 |
+
EWW;AN;;;40;414.4
|
400 |
+
EWW;AN;;;50;462.4
|
401 |
+
EWW;AN;;;60;520.5
|
402 |
+
EWW;AN;;;70;578.58
|
403 |
+
EWW;AN;;;999999;7.58
|
404 |
+
EWW;AO;;;2;107.34
|
405 |
+
EWW;AO;;;3;126.43
|
406 |
+
EWW;AO;;;4;143.11
|
407 |
+
EWW;AO;;;5;159.8
|
408 |
+
EWW;AO;;;10;236.05
|
409 |
+
EWW;AO;;;15;261.31
|
410 |
+
EWW;AO;;;20;297.68
|
411 |
+
EWW;AO;;;30;354.91
|
412 |
+
EWW;AO;;;40;414.4
|
413 |
+
EWW;AO;;;50;462.4
|
414 |
+
EWW;AO;;;60;520.5
|
415 |
+
EWW;AO;;;70;578.58
|
416 |
+
EWW;AO;;;999999;7.58
|
417 |
+
EWW;AR;;;2; 87.86�
|
418 |
+
EWW;AR;;;3;106.71
|
419 |
+
EWW;AR;;;4;122.96
|
420 |
+
EWW;AR;;;5;139.15
|
421 |
+
EWW;AR;;;10;191
|
422 |
+
EWW;AR;;;15;214.93
|
423 |
+
EWW;AR;;;20;248.17
|
424 |
+
EWW;AR;;;30;292.84
|
425 |
+
EWW;AR;;;40;338.95
|
426 |
+
EWW;AR;;;50;375.89
|
427 |
+
EWW;AR;;;60;421.06
|
428 |
+
EWW;AR;;;70;466.22
|
429 |
+
EWW;AR;;;999999;6.13
|
430 |
+
EWW;AS;;;2;107.34
|
431 |
+
EWW;AS;;;3;126.43
|
432 |
+
EWW;AS;;;4;143.11
|
433 |
+
EWW;AS;;;5;159.8
|
434 |
+
EWW;AS;;;10;236.05
|
435 |
+
EWW;AS;;;15;261.31
|
436 |
+
EWW;AS;;;20;297.68
|
437 |
+
EWW;AS;;;30;354.91
|
438 |
+
EWW;AS;;;40;414.4
|
439 |
+
EWW;AS;;;50;462.4
|
440 |
+
EWW;AS;;;60;520.5
|
441 |
+
EWW;AS;;;70;578.58
|
442 |
+
EWW;AS;;;999999;7.58
|
443 |
+
EWW;AT;;;2; 89.59�
|
444 |
+
EWW;AT;;;3;106.93
|
445 |
+
EWW;AT;;;4;122.01
|
446 |
+
EWW;AT;;;5;137.07
|
447 |
+
EWW;AT;;;10;188.61
|
448 |
+
EWW;AT;;;15;203.55
|
449 |
+
EWW;AT;;;20;222.65
|
450 |
+
EWW;AT;;;30;261.9
|
451 |
+
EWW;AT;;;40;299.32
|
452 |
+
EWW;AT;;;50;325.6
|
453 |
+
EWW;AT;;;60;360.75
|
454 |
+
EWW;AT;;;70;394.27
|
455 |
+
EWW;AT;;;999999;5.18
|
456 |
+
EWW;AU;;;2; 96.37�
|
457 |
+
EWW;AU;;;3;115.84
|
458 |
+
EWW;AU;;;4;133.25
|
459 |
+
EWW;AU;;;5;150.65
|
460 |
+
EWW;AU;;;10;198.26
|
461 |
+
EWW;AU;;;15;226.36
|
462 |
+
EWW;AU;;;20;262.88
|
463 |
+
EWW;AU;;;30;313.55
|
464 |
+
EWW;AU;;;40;359.03
|
465 |
+
EWW;AU;;;50;397.89
|
466 |
+
EWW;AU;;;60;445.47
|
467 |
+
EWW;AU;;;70;493.04
|
468 |
+
EWW;AU;;;999999;6.46
|
469 |
+
EWW;AW;;;2;107.34
|
470 |
+
EWW;AW;;;3;126.43
|
471 |
+
EWW;AW;;;4;143.11
|
472 |
+
EWW;AW;;;5;159.8
|
473 |
+
EWW;AW;;;10;236.05
|
474 |
+
EWW;AW;;;15;261.31
|
475 |
+
EWW;AW;;;20;297.68
|
476 |
+
EWW;AW;;;30;354.91
|
477 |
+
EWW;AW;;;40;414.4
|
478 |
+
EWW;AW;;;50;462.4
|
479 |
+
EWW;AW;;;60;520.5
|
480 |
+
EWW;AW;;;70;578.58
|
481 |
+
EWW;AW;;;999999;7.58
|
482 |
+
EWW;AZ;;;2;107.34
|
483 |
+
EWW;AZ;;;3;126.43
|
484 |
+
EWW;AZ;;;4;143.11
|
485 |
+
EWW;AZ;;;5;159.8
|
486 |
+
EWW;AZ;;;10;236.05
|
487 |
+
EWW;AZ;;;15;261.31
|
488 |
+
EWW;AZ;;;20;297.68
|
489 |
+
EWW;AZ;;;30;354.91
|
490 |
+
EWW;AZ;;;40;414.4
|
491 |
+
EWW;AZ;;;50;462.4
|
492 |
+
EWW;AZ;;;60;520.5
|
493 |
+
EWW;AZ;;;70;578.58
|
494 |
+
EWW;AZ;;;999999;7.58
|
495 |
+
EWW;BA;;;2; 97.44�
|
496 |
+
EWW;BA;;;3;117.3
|
497 |
+
EWW;BA;;;4;133.67
|
498 |
+
EWW;BA;;;5;150.01
|
499 |
+
EWW;BA;;;10;201.2
|
500 |
+
EWW;BA;;;15;217.98
|
501 |
+
EWW;BA;;;20;238.84
|
502 |
+
EWW;BA;;;30;280.64
|
503 |
+
EWW;BA;;;40;321.71
|
504 |
+
EWW;BA;;;50;349.26
|
505 |
+
EWW;BA;;;60;394.5
|
506 |
+
EWW;BA;;;70;431.7
|
507 |
+
EWW;BA;;;999999;5.66
|
508 |
+
EWW;BB;;;2;107.34
|
509 |
+
EWW;BB;;;3;126.43
|
510 |
+
EWW;BB;;;4;143.11
|
511 |
+
EWW;BB;;;5;159.8
|
512 |
+
EWW;BB;;;10;236.05
|
513 |
+
EWW;BB;;;15;261.31
|
514 |
+
EWW;BB;;;20;297.68
|
515 |
+
EWW;BB;;;30;354.91
|
516 |
+
EWW;BB;;;40;414.4
|
517 |
+
EWW;BB;;;50;462.4
|
518 |
+
EWW;BB;;;60;520.5
|
519 |
+
EWW;BB;;;70;578.58
|
520 |
+
EWW;BB;;;999999;7.58
|
521 |
+
EWW;BD;;;2;107.34
|
522 |
+
EWW;BD;;;3;126.43
|
523 |
+
EWW;BD;;;4;143.11
|
524 |
+
EWW;BD;;;5;159.8
|
525 |
+
EWW;BD;;;10;236.05
|
526 |
+
EWW;BD;;;15;261.31
|
527 |
+
EWW;BD;;;20;297.68
|
528 |
+
EWW;BD;;;30;354.91
|
529 |
+
EWW;BD;;;40;414.4
|
530 |
+
EWW;BD;;;50;462.4
|
531 |
+
EWW;BD;;;60;520.5
|
532 |
+
EWW;BD;;;70;578.58
|
533 |
+
EWW;BD;;;999999;7.58
|
534 |
+
EWW;BE;;;2;63.09
|
535 |
+
EWW;BE;;;3;81.81
|
536 |
+
EWW;BE;;;4;�98.24
|
537 |
+
EWW;BE;;;5;114.66
|
538 |
+
EWW;BE;;;10;152.62
|
539 |
+
EWW;BE;;;15;167.78
|
540 |
+
EWW;BE;;;20;192.04
|
541 |
+
EWW;BE;;;30;225.2
|
542 |
+
EWW;BE;;;40;262.94
|
543 |
+
EWW;BE;;;50;291.51
|
544 |
+
EWW;BE;;;60;324.9
|
545 |
+
EWW;BE;;;70;358.27
|
546 |
+
EWW;BE;;;999999;4.72
|
547 |
+
EWW;BF;;;2;107.34
|
548 |
+
EWW;BF;;;3;126.43
|
549 |
+
EWW;BF;;;4;143.11
|
550 |
+
EWW;BF;;;5;159.8
|
551 |
+
EWW;BF;;;10;236.05
|
552 |
+
EWW;BF;;;15;261.31
|
553 |
+
EWW;BF;;;20;297.68
|
554 |
+
EWW;BF;;;30;354.91
|
555 |
+
EWW;BF;;;40;414.4
|
556 |
+
EWW;BF;;;50;462.4
|
557 |
+
EWW;BF;;;60;520.5
|
558 |
+
EWW;BF;;;70;578.58
|
559 |
+
EWW;BF;;;999999;7.58
|
560 |
+
EWW;BG;;;2; 66.11�
|
561 |
+
EWW;BG;;;3;84.08
|
562 |
+
EWW;BG;;;4;99.62
|
563 |
+
EWW;BG;;;5;115.21
|
564 |
+
EWW;BG;;;10;148.01
|
565 |
+
EWW;BG;;;15;160.96
|
566 |
+
EWW;BG;;;20;181.04
|
567 |
+
EWW;BG;;;30;213
|
568 |
+
EWW;BG;;;40;243.43
|
569 |
+
EWW;BG;;;50;267.22
|
570 |
+
EWW;BG;;;60;296.91
|
571 |
+
EWW;BG;;;70;326.59
|
572 |
+
EWW;BG;;;999999;4.29
|
573 |
+
EWW;BH;;;2; 96.37�
|
574 |
+
EWW;BH;;;3;115.84
|
575 |
+
EWW;BH;;;4;133.25
|
576 |
+
EWW;BH;;;5;150.65
|
577 |
+
EWW;BH;;;10;198.26
|
578 |
+
EWW;BH;;;15;226.36
|
579 |
+
EWW;BH;;;20;262.88
|
580 |
+
EWW;BH;;;30;313.55
|
581 |
+
EWW;BH;;;40;359.03
|
582 |
+
EWW;BH;;;50;397.89
|
583 |
+
EWW;BH;;;60;445.47
|
584 |
+
EWW;BH;;;70;493.04
|
585 |
+
EWW;BH;;;999999;6.46
|
586 |
+
EWW;BI;;;2;107.34
|
587 |
+
EWW;BI;;;3;126.43
|
588 |
+
EWW;BI;;;4;143.11
|
589 |
+
EWW;BI;;;5;159.8
|
590 |
+
EWW;BI;;;10;236.05
|
591 |
+
EWW;BI;;;15;261.31
|
592 |
+
EWW;BI;;;20;297.68
|
593 |
+
EWW;BI;;;30;354.91
|
594 |
+
EWW;BI;;;40;414.4
|
595 |
+
EWW;BI;;;50;462.4
|
596 |
+
EWW;BI;;;60;520.5
|
597 |
+
EWW;BI;;;70;578.58
|
598 |
+
EWW;BI;;;999999;7.58
|
599 |
+
EWW;BJ;;;2;107.34
|
600 |
+
EWW;BJ;;;3;126.43
|
601 |
+
EWW;BJ;;;4;143.11
|
602 |
+
EWW;BJ;;;5;159.8
|
603 |
+
EWW;BJ;;;10;236.05
|
604 |
+
EWW;BJ;;;15;261.31
|
605 |
+
EWW;BJ;;;20;297.68
|
606 |
+
EWW;BJ;;;30;354.91
|
607 |
+
EWW;BJ;;;40;414.4
|
608 |
+
EWW;BJ;;;50;462.4
|
609 |
+
EWW;BJ;;;60;520.5
|
610 |
+
EWW;BJ;;;70;578.58
|
611 |
+
EWW;BJ;;;999999;7.58
|
612 |
+
EWW;BM;;;2;107.34
|
613 |
+
EWW;BM;;;3;126.43
|
614 |
+
EWW;BM;;;4;143.11
|
615 |
+
EWW;BM;;;5;159.8
|
616 |
+
EWW;BM;;;10;236.05
|
617 |
+
EWW;BM;;;15;261.31
|
618 |
+
EWW;BM;;;20;297.68
|
619 |
+
EWW;BM;;;30;354.91
|
620 |
+
EWW;BM;;;40;414.4
|
621 |
+
EWW;BM;;;50;462.4
|
622 |
+
EWW;BM;;;60;520.5
|
623 |
+
EWW;BM;;;70;578.58
|
624 |
+
EWW;BM;;;999999;7.58
|
625 |
+
EWW;BN;;;2;107.34
|
626 |
+
EWW;BN;;;3;126.43
|
627 |
+
EWW;BN;;;4;143.11
|
628 |
+
EWW;BN;;;5;159.8
|
629 |
+
EWW;BN;;;10;236.05
|
630 |
+
EWW;BN;;;15;261.31
|
631 |
+
EWW;BN;;;20;297.68
|
632 |
+
EWW;BN;;;30;354.91
|
633 |
+
EWW;BN;;;40;414.4
|
634 |
+
EWW;BN;;;50;462.4
|
635 |
+
EWW;BN;;;60;520.5
|
636 |
+
EWW;BN;;;70;578.58
|
637 |
+
EWW;BN;;;999999;7.58
|
638 |
+
EWW;BO;;;2; 87.86�
|
639 |
+
EWW;BO;;;3;106.71
|
640 |
+
EWW;BO;;;4;122.96
|
641 |
+
EWW;BO;;;5;139.15
|
642 |
+
EWW;BO;;;10;191
|
643 |
+
EWW;BO;;;15;214.93
|
644 |
+
EWW;BO;;;20;248.17
|
645 |
+
EWW;BO;;;30;292.84
|
646 |
+
EWW;BO;;;40;338.95
|
647 |
+
EWW;BO;;;50;375.89
|
648 |
+
EWW;BO;;;60;421.06
|
649 |
+
EWW;BO;;;70;466.22
|
650 |
+
EWW;BO;;;999999;6.13
|
651 |
+
EWW;BR;;;2; 87.86�
|
652 |
+
EWW;BR;;;3;106.71
|
653 |
+
EWW;BR;;;4;122.96
|
654 |
+
EWW;BR;;;5;139.15
|
655 |
+
EWW;BR;;;10;191
|
656 |
+
EWW;BR;;;15;214.93
|
657 |
+
EWW;BR;;;20;248.17
|
658 |
+
EWW;BR;;;30;292.84
|
659 |
+
EWW;BR;;;40;338.95
|
660 |
+
EWW;BR;;;50;375.89
|
661 |
+
EWW;BR;;;60;421.06
|
662 |
+
EWW;BR;;;70;466.22
|
663 |
+
EWW;BR;;;999999;6.13
|
664 |
+
EWW;BS;;;2;107.34
|
665 |
+
EWW;BS;;;3;126.43
|
666 |
+
EWW;BS;;;4;143.11
|
667 |
+
EWW;BS;;;5;159.8
|
668 |
+
EWW;BS;;;10;236.05
|
669 |
+
EWW;BS;;;15;261.31
|
670 |
+
EWW;BS;;;20;297.68
|
671 |
+
EWW;BS;;;30;354.91
|
672 |
+
EWW;BS;;;40;414.4
|
673 |
+
EWW;BS;;;50;462.4
|
674 |
+
EWW;BS;;;60;520.5
|
675 |
+
EWW;BS;;;70;578.58
|
676 |
+
EWW;BS;;;999999;7.58
|
677 |
+
EWW;BT;;;2;107.34
|
678 |
+
EWW;BT;;;3;126.43
|
679 |
+
EWW;BT;;;4;143.11
|
680 |
+
EWW;BT;;;5;159.8
|
681 |
+
EWW;BT;;;10;236.05
|
682 |
+
EWW;BT;;;15;261.31
|
683 |
+
EWW;BT;;;20;297.68
|
684 |
+
EWW;BT;;;30;354.91
|
685 |
+
EWW;BT;;;40;414.4
|
686 |
+
EWW;BT;;;50;462.4
|
687 |
+
EWW;BT;;;60;520.5
|
688 |
+
EWW;BT;;;70;578.58
|
689 |
+
EWW;BT;;;999999;7.58
|
690 |
+
EWW;BW;;;2;107.34
|
691 |
+
EWW;BW;;;3;126.43
|
692 |
+
EWW;BW;;;4;143.11
|
693 |
+
EWW;BW;;;5;159.8
|
694 |
+
EWW;BW;;;10;236.05
|
695 |
+
EWW;BW;;;15;261.31
|
696 |
+
EWW;BW;;;20;297.68
|
697 |
+
EWW;BW;;;30;354.91
|
698 |
+
EWW;BW;;;40;414.4
|
699 |
+
EWW;BW;;;50;462.4
|
700 |
+
EWW;BW;;;60;520.5
|
701 |
+
EWW;BW;;;70;578.58
|
702 |
+
EWW;BW;;;999999;7.58
|
703 |
+
EWW;BY;;;2; 97.44�
|
704 |
+
EWW;BY;;;3;117.3
|
705 |
+
EWW;BY;;;4;133.67
|
706 |
+
EWW;BY;;;5;150.01
|
707 |
+
EWW;BY;;;10;201.2
|
708 |
+
EWW;BY;;;15;217.98
|
709 |
+
EWW;BY;;;20;238.84
|
710 |
+
EWW;BY;;;30;280.64
|
711 |
+
EWW;BY;;;40;321.71
|
712 |
+
EWW;BY;;;50;349.26
|
713 |
+
EWW;BY;;;60;394.5
|
714 |
+
EWW;BY;;;70;431.7
|
715 |
+
EWW;BY;;;999999;5.66
|
716 |
+
EWW;BZ;;;2; 87.86�
|
717 |
+
EWW;BZ;;;3;106.71
|
718 |
+
EWW;BZ;;;4;122.96
|
719 |
+
EWW;BZ;;;5;139.15
|
720 |
+
EWW;BZ;;;10;191
|
721 |
+
EWW;BZ;;;15;214.93
|
722 |
+
EWW;BZ;;;20;248.17
|
723 |
+
EWW;BZ;;;30;292.84
|
724 |
+
EWW;BZ;;;40;338.95
|
725 |
+
EWW;BZ;;;50;375.89
|
726 |
+
EWW;BZ;;;60;421.06
|
727 |
+
EWW;BZ;;;70;466.22
|
728 |
+
EWW;BZ;;;999999;6.13
|
729 |
+
EWW;CA;;;2; 72.71�
|
730 |
+
EWW;CA;;;3;93.6
|
731 |
+
EWW;CA;;;4;109.68
|
732 |
+
EWW;CA;;;5;125.78
|
733 |
+
EWW;CA;;;10;160.59
|
734 |
+
EWW;CA;;;15;170.64
|
735 |
+
EWW;CA;;;20;188.57
|
736 |
+
EWW;CA;;;30;220.51
|
737 |
+
EWW;CA;;;40;252.13
|
738 |
+
EWW;CA;;;50;276.88
|
739 |
+
EWW;CA;;;60;307.68
|
740 |
+
EWW;CA;;;70;338.53
|
741 |
+
EWW;CA;;;999999;4.45
|
742 |
+
EWW;CC;;;2;�55.59
|
743 |
+
EWW;CC;;;3;�72.85
|
744 |
+
EWW;CC;;;4;�87.69
|
745 |
+
EWW;CC;;;5;102.48
|
746 |
+
EWW;CC;;;10;124.72
|
747 |
+
EWW;CC;;;15;133.06
|
748 |
+
EWW;CC;;;20;148.26
|
749 |
+
EWW;CC;;;30;172.62
|
750 |
+
EWW;CC;;;40;197.87
|
751 |
+
EWW;CC;;;50;216.77
|
752 |
+
EWW;CC;;;60;240.48
|
753 |
+
EWW;CC;;;70;264.16
|
754 |
+
EWW;CC;;;999999;3.47
|
755 |
+
EWW;CD;;;2;107.34
|
756 |
+
EWW;CD;;;3;126.43
|
757 |
+
EWW;CD;;;4;143.11
|
758 |
+
EWW;CD;;;5;159.8
|
759 |
+
EWW;CD;;;10;236.05
|
760 |
+
EWW;CD;;;15;261.31
|
761 |
+
EWW;CD;;;20;297.68
|
762 |
+
EWW;CD;;;30;354.91
|
763 |
+
EWW;CD;;;40;414.4
|
764 |
+
EWW;CD;;;50;462.4
|
765 |
+
EWW;CD;;;60;520.5
|
766 |
+
EWW;CD;;;70;578.58
|
767 |
+
EWW;CD;;;999999;7.58
|
768 |
+
EWW;CF;;;2; 96.37�
|
769 |
+
EWW;CF;;;3;115.84
|
770 |
+
EWW;CF;;;4;133.25
|
771 |
+
EWW;CF;;;5;150.65
|
772 |
+
EWW;CF;;;10;198.26
|
773 |
+
EWW;CF;;;15;226.36
|
774 |
+
EWW;CF;;;20;262.88
|
775 |
+
EWW;CF;;;30;313.55
|
776 |
+
EWW;CF;;;40;359.03
|
777 |
+
EWW;CF;;;50;397.89
|
778 |
+
EWW;CF;;;60;445.47
|
779 |
+
EWW;CF;;;70;493.04
|
780 |
+
EWW;CF;;;999999;6.46
|
781 |
+
EWW;CG;;;2;107.34
|
782 |
+
EWW;CG;;;3;126.43
|
783 |
+
EWW;CG;;;4;143.11
|
784 |
+
EWW;CG;;;5;159.8
|
785 |
+
EWW;CG;;;10;236.05
|
786 |
+
EWW;CG;;;15;261.31
|
787 |
+
EWW;CG;;;20;297.68
|
788 |
+
EWW;CG;;;30;354.91
|
789 |
+
EWW;CG;;;40;414.4
|
790 |
+
EWW;CG;;;50;462.4
|
791 |
+
EWW;CG;;;60;520.5
|
792 |
+
EWW;CG;;;70;578.58
|
793 |
+
EWW;CG;;;999999;7.58
|
794 |
+
EWW;CH;;;2;�90.44�
|
795 |
+
EWW;CH;;;3;107.41
|
796 |
+
EWW;CH;;;4;122.47
|
797 |
+
EWW;CH;;;5;137.55
|
798 |
+
EWW;CH;;;10;189.29
|
799 |
+
EWW;CH;;;15;204.14
|
800 |
+
EWW;CH;;;20;223.24
|
801 |
+
EWW;CH;;;30;262.41
|
802 |
+
EWW;CH;;;40;301.84
|
803 |
+
EWW;CH;;;50;328.26
|
804 |
+
EWW;CH;;;60;361.98
|
805 |
+
EWW;CH;;;70;395.71
|
806 |
+
EWW;CH;;;999999;5.2
|
807 |
+
EWW;CI;;;2;107.34
|
808 |
+
EWW;CI;;;3;126.43
|
809 |
+
EWW;CI;;;4;143.11
|
810 |
+
EWW;CI;;;5;159.8
|
811 |
+
EWW;CI;;;10;236.05
|
812 |
+
EWW;CI;;;15;261.31
|
813 |
+
EWW;CI;;;20;297.68
|
814 |
+
EWW;CI;;;30;354.91
|
815 |
+
EWW;CI;;;40;414.4
|
816 |
+
EWW;CI;;;50;462.4
|
817 |
+
EWW;CI;;;60;520.5
|
818 |
+
EWW;CI;;;70;578.58
|
819 |
+
EWW;CI;;;999999;7.58
|
820 |
+
EWW;CK;;;2;107.34
|
821 |
+
EWW;CK;;;3;126.43
|
822 |
+
EWW;CK;;;4;143.11
|
823 |
+
EWW;CK;;;5;159.8
|
824 |
+
EWW;CK;;;10;236.05
|
825 |
+
EWW;CK;;;15;261.31
|
826 |
+
EWW;CK;;;20;297.68
|
827 |
+
EWW;CK;;;30;354.91
|
828 |
+
EWW;CK;;;40;414.4
|
829 |
+
EWW;CK;;;50;462.4
|
830 |
+
EWW;CK;;;60;520.5
|
831 |
+
EWW;CK;;;70;578.58
|
832 |
+
EWW;CK;;;999999;7.58
|
833 |
+
EWW;CL;;;2; 87.86�
|
834 |
+
EWW;CL;;;3;106.71
|
835 |
+
EWW;CL;;;4;122.96
|
836 |
+
EWW;CL;;;5;139.15
|
837 |
+
EWW;CL;;;10;191
|
838 |
+
EWW;CL;;;15;214.93
|
839 |
+
EWW;CL;;;20;248.17
|
840 |
+
EWW;CL;;;30;292.84
|
841 |
+
EWW;CL;;;40;338.95
|
842 |
+
EWW;CL;;;50;375.89
|
843 |
+
EWW;CL;;;60;421.06
|
844 |
+
EWW;CL;;;70;466.22
|
845 |
+
EWW;CL;;;999999;6.13
|
846 |
+
EWW;CM;;;2;107.34
|
847 |
+
EWW;CM;;;3;126.43
|
848 |
+
EWW;CM;;;4;143.11
|
849 |
+
EWW;CM;;;5;159.8
|
850 |
+
EWW;CM;;;10;236.05
|
851 |
+
EWW;CM;;;15;261.31
|
852 |
+
EWW;CM;;;20;297.68
|
853 |
+
EWW;CM;;;30;354.91
|
854 |
+
EWW;CM;;;40;414.4
|
855 |
+
EWW;CM;;;50;462.4
|
856 |
+
EWW;CM;;;60;520.5
|
857 |
+
EWW;CM;;;70;578.58
|
858 |
+
EWW;CM;;;999999;7.58
|
859 |
+
EWW;CN;;;2; 96.37�
|
860 |
+
EWW;CN;;;3;115.84
|
861 |
+
EWW;CN;;;4;133.25
|
862 |
+
EWW;CN;;;5;150.65
|
863 |
+
EWW;CN;;;10;198.26
|
864 |
+
EWW;CN;;;15;226.36
|
865 |
+
EWW;CN;;;20;262.88
|
866 |
+
EWW;CN;;;30;313.55
|
867 |
+
EWW;CN;;;40;359.03
|
868 |
+
EWW;CN;;;50;397.89
|
869 |
+
EWW;CN;;;60;445.47
|
870 |
+
EWW;CN;;;70;493.04
|
871 |
+
EWW;CN;;;999999;6.46
|
872 |
+
EWW;CO;;;2; 87.86�
|
873 |
+
EWW;CO;;;3;106.71
|
874 |
+
EWW;CO;;;4;122.96
|
875 |
+
EWW;CO;;;5;139.15
|
876 |
+
EWW;CO;;;10;191
|
877 |
+
EWW;CO;;;15;214.93
|
878 |
+
EWW;CO;;;20;248.17
|
879 |
+
EWW;CO;;;30;292.84
|
880 |
+
EWW;CO;;;40;338.95
|
881 |
+
EWW;CO;;;50;375.89
|
882 |
+
EWW;CO;;;60;421.06
|
883 |
+
EWW;CO;;;70;466.22
|
884 |
+
EWW;CO;;;999999;6.13
|
885 |
+
EWW;CR;;;2; 87.86�
|
886 |
+
EWW;CR;;;3;106.71
|
887 |
+
EWW;CR;;;4;122.96
|
888 |
+
EWW;CR;;;5;139.15
|
889 |
+
EWW;CR;;;10;191
|
890 |
+
EWW;CR;;;15;214.93
|
891 |
+
EWW;CR;;;20;248.17
|
892 |
+
EWW;CR;;;30;292.84
|
893 |
+
EWW;CR;;;40;338.95
|
894 |
+
EWW;CR;;;50;375.89
|
895 |
+
EWW;CR;;;60;421.06
|
896 |
+
EWW;CR;;;70;466.22
|
897 |
+
EWW;CR;;;999999;6.13
|
898 |
+
EWW;CS;;;2; 97.44�
|
899 |
+
EWW;CS;;;3;117.3
|
900 |
+
EWW;CS;;;4;133.67
|
901 |
+
EWW;CS;;;5;150.01
|
902 |
+
EWW;CS;;;10;201.2
|
903 |
+
EWW;CS;;;15;217.98
|
904 |
+
EWW;CS;;;20;238.84
|
905 |
+
EWW;CS;;;30;280.64
|
906 |
+
EWW;CS;;;40;321.71
|
907 |
+
EWW;CS;;;50;349.26
|
908 |
+
EWW;CS;;;60;394.5
|
909 |
+
EWW;CS;;;70;431.7
|
910 |
+
EWW;CS;;;999999;5.66
|
911 |
+
EWW;CU;;;2;107.34
|
912 |
+
EWW;CU;;;3;126.43
|
913 |
+
EWW;CU;;;4;143.11
|
914 |
+
EWW;CU;;;5;159.8
|
915 |
+
EWW;CU;;;10;236.05
|
916 |
+
EWW;CU;;;15;261.31
|
917 |
+
EWW;CU;;;20;297.68
|
918 |
+
EWW;CU;;;30;354.91
|
919 |
+
EWW;CU;;;40;414.4
|
920 |
+
EWW;CU;;;50;462.4
|
921 |
+
EWW;CU;;;60;520.5
|
922 |
+
EWW;CU;;;70;578.58
|
923 |
+
EWW;CU;;;999999;7.58
|
924 |
+
EWW;CV;;;2;107.34
|
925 |
+
EWW;CV;;;3;126.43
|
926 |
+
EWW;CV;;;4;143.11
|
927 |
+
EWW;CV;;;5;159.8
|
928 |
+
EWW;CV;;;10;236.05
|
929 |
+
EWW;CV;;;15;261.31
|
930 |
+
EWW;CV;;;20;297.68
|
931 |
+
EWW;CV;;;30;354.91
|
932 |
+
EWW;CV;;;40;414.4
|
933 |
+
EWW;CV;;;50;462.4
|
934 |
+
EWW;CV;;;60;520.5
|
935 |
+
EWW;CV;;;70;578.58
|
936 |
+
EWW;CV;;;999999;7.58
|
937 |
+
EWW;CY;;;2; 66.11�
|
938 |
+
EWW;CY;;;3;84.08
|
939 |
+
EWW;CY;;;4;99.62
|
940 |
+
EWW;CY;;;5;115.21
|
941 |
+
EWW;CY;;;10;148.01
|
942 |
+
EWW;CY;;;15;160.96
|
943 |
+
EWW;CY;;;20;181.04
|
944 |
+
EWW;CY;;;30;213
|
945 |
+
EWW;CY;;;40;243.43
|
946 |
+
EWW;CY;;;50;267.22
|
947 |
+
EWW;CY;;;60;296.91
|
948 |
+
EWW;CY;;;70;326.59
|
949 |
+
EWW;CY;;;999999;4.29
|
950 |
+
EWW;CZ;;;2; 66.11�
|
951 |
+
EWW;CZ;;;3;84.08
|
952 |
+
EWW;CZ;;;4;99.62
|
953 |
+
EWW;CZ;;;5;115.21
|
954 |
+
EWW;CZ;;;10;148.01
|
955 |
+
EWW;CZ;;;15;160.96
|
956 |
+
EWW;CZ;;;20;181.04
|
957 |
+
EWW;CZ;;;30;213
|
958 |
+
EWW;CZ;;;40;243.43
|
959 |
+
EWW;CZ;;;50;267.22
|
960 |
+
EWW;CZ;;;60;296.91
|
961 |
+
EWW;CZ;;;70;326.59
|
962 |
+
EWW;CZ;;;999999;4.29
|
963 |
+
EWW;DE;;;2;63.09
|
964 |
+
EWW;DE;;;3;81.81
|
965 |
+
EWW;DE;;;4;�98.24
|
966 |
+
EWW;DE;;;5;114.66
|
967 |
+
EWW;DE;;;10;152.62
|
968 |
+
EWW;DE;;;15;167.78
|
969 |
+
EWW;DE;;;20;192.04
|
970 |
+
EWW;DE;;;30;225.2
|
971 |
+
EWW;DE;;;40;262.94
|
972 |
+
EWW;DE;;;50;291.51
|
973 |
+
EWW;DE;;;60;324.9
|
974 |
+
EWW;DE;;;70;358.27
|
975 |
+
EWW;DE;;;999999;4.72
|
976 |
+
EWW;DJ;;;2;107.34
|
977 |
+
EWW;DJ;;;3;126.43
|
978 |
+
EWW;DJ;;;4;143.11
|
979 |
+
EWW;DJ;;;5;159.8
|
980 |
+
EWW;DJ;;;10;236.05
|
981 |
+
EWW;DJ;;;15;261.31
|
982 |
+
EWW;DJ;;;20;297.68
|
983 |
+
EWW;DJ;;;30;354.91
|
984 |
+
EWW;DJ;;;40;414.4
|
985 |
+
EWW;DJ;;;50;462.4
|
986 |
+
EWW;DJ;;;60;520.5
|
987 |
+
EWW;DJ;;;70;578.58
|
988 |
+
EWW;DJ;;;999999;7.58
|
989 |
+
EWW;DK;;;2; 89.59�
|
990 |
+
EWW;DK;;;3;106.93
|
991 |
+
EWW;DK;;;4;122.01
|
992 |
+
EWW;DK;;;5;137.07
|
993 |
+
EWW;DK;;;10;188.61
|
994 |
+
EWW;DK;;;15;203.55
|
995 |
+
EWW;DK;;;20;222.65
|
996 |
+
EWW;DK;;;30;261.9
|
997 |
+
EWW;DK;;;40;299.32
|
998 |
+
EWW;DK;;;50;325.6
|
999 |
+
EWW;DK;;;60;360.75
|
1000 |
+
EWW;DK;;;70;394.27
|
1001 |
+
EWW;DK;;;999999;5.18
|
1002 |
+
EWW;DM;;;2;107.34
|
1003 |
+
EWW;DM;;;3;126.43
|
1004 |
+
EWW;DM;;;4;143.11
|
1005 |
+
EWW;DM;;;5;159.8
|
1006 |
+
EWW;DM;;;10;236.05
|
1007 |
+
EWW;DM;;;15;261.31
|
1008 |
+
EWW;DM;;;20;297.68
|
1009 |
+
EWW;DM;;;30;354.91
|
1010 |
+
EWW;DM;;;40;414.4
|
1011 |
+
EWW;DM;;;50;462.4
|
1012 |
+
EWW;DM;;;60;520.5
|
1013 |
+
EWW;DM;;;70;578.58
|
1014 |
+
EWW;DM;;;999999;7.58
|
1015 |
+
EWW;DO;;;2; 87.86�
|
1016 |
+
EWW;DO;;;3;106.71
|
1017 |
+
EWW;DO;;;4;122.96
|
1018 |
+
EWW;DO;;;5;139.15
|
1019 |
+
EWW;DO;;;10;191
|
1020 |
+
EWW;DO;;;15;214.93
|
1021 |
+
EWW;DO;;;20;248.17
|
1022 |
+
EWW;DO;;;30;292.84
|
1023 |
+
EWW;DO;;;40;338.95
|
1024 |
+
EWW;DO;;;50;375.89
|
1025 |
+
EWW;DO;;;60;421.06
|
1026 |
+
EWW;DO;;;70;466.22
|
1027 |
+
EWW;DO;;;999999;6.13
|
1028 |
+
EWW;DZ;;;2; 87.86�
|
1029 |
+
EWW;DZ;;;3;106.71
|
1030 |
+
EWW;DZ;;;4;122.96
|
1031 |
+
EWW;DZ;;;5;139.15
|
1032 |
+
EWW;DZ;;;10;191
|
1033 |
+
EWW;DZ;;;15;214.93
|
1034 |
+
EWW;DZ;;;20;248.17
|
1035 |
+
EWW;DZ;;;30;292.84
|
1036 |
+
EWW;DZ;;;40;338.95
|
1037 |
+
EWW;DZ;;;50;375.89
|
1038 |
+
EWW;DZ;;;60;421.06
|
1039 |
+
EWW;DZ;;;70;466.22
|
1040 |
+
EWW;DZ;;;999999;6.13
|
1041 |
+
EWW;EC;;;2; 87.86�
|
1042 |
+
EWW;EC;;;3;106.71
|
1043 |
+
EWW;EC;;;4;122.96
|
1044 |
+
EWW;EC;;;5;139.15
|
1045 |
+
EWW;EC;;;10;191
|
1046 |
+
EWW;EC;;;15;214.93
|
1047 |
+
EWW;EC;;;20;248.17
|
1048 |
+
EWW;EC;;;30;292.84
|
1049 |
+
EWW;EC;;;40;338.95
|
1050 |
+
EWW;EC;;;50;375.89
|
1051 |
+
EWW;EC;;;60;421.06
|
1052 |
+
EWW;EC;;;70;466.22
|
1053 |
+
EWW;EC;;;999999;6.13
|
1054 |
+
EWW;EE;;;2; 66.11�
|
1055 |
+
EWW;EE;;;3;84.08
|
1056 |
+
EWW;EE;;;4;99.62
|
1057 |
+
EWW;EE;;;5;115.21
|
1058 |
+
EWW;EE;;;10;148.01
|
1059 |
+
EWW;EE;;;15;160.96
|
1060 |
+
EWW;EE;;;20;181.04
|
1061 |
+
EWW;EE;;;30;213
|
1062 |
+
EWW;EE;;;40;243.43
|
1063 |
+
EWW;EE;;;50;267.22
|
1064 |
+
EWW;EE;;;60;296.91
|
1065 |
+
EWW;EE;;;70;326.59
|
1066 |
+
EWW;EE;;;999999;4.29
|
1067 |
+
EWW;EG;;;2; 87.86�
|
1068 |
+
EWW;EG;;;3;106.71
|
1069 |
+
EWW;EG;;;4;122.96
|
1070 |
+
EWW;EG;;;5;139.15
|
1071 |
+
EWW;EG;;;10;191
|
1072 |
+
EWW;EG;;;15;214.93
|
1073 |
+
EWW;EG;;;20;248.17
|
1074 |
+
EWW;EG;;;30;292.84
|
1075 |
+
EWW;EG;;;40;338.95
|
1076 |
+
EWW;EG;;;50;375.89
|
1077 |
+
EWW;EG;;;60;421.06
|
1078 |
+
EWW;EG;;;70;466.22
|
1079 |
+
EWW;EG;;;999999;6.13
|
1080 |
+
EWW;ER;;;2;107.34
|
1081 |
+
EWW;ER;;;3;126.43
|
1082 |
+
EWW;ER;;;4;143.11
|
1083 |
+
EWW;ER;;;5;159.8
|
1084 |
+
EWW;ER;;;10;236.05
|
1085 |
+
EWW;ER;;;15;261.31
|
1086 |
+
EWW;ER;;;20;297.68
|
1087 |
+
EWW;ER;;;30;354.91
|
1088 |
+
EWW;ER;;;40;414.4
|
1089 |
+
EWW;ER;;;50;462.4
|
1090 |
+
EWW;ER;;;60;520.5
|
1091 |
+
EWW;ER;;;70;578.58
|
1092 |
+
EWW;ER;;;999999;7.58
|
1093 |
+
EWW;ET;;;2;107.34
|
1094 |
+
EWW;ET;;;3;126.43
|
1095 |
+
EWW;ET;;;4;143.11
|
1096 |
+
EWW;ET;;;5;159.8
|
1097 |
+
EWW;ET;;;10;236.05
|
1098 |
+
EWW;ET;;;15;261.31
|
1099 |
+
EWW;ET;;;20;297.68
|
1100 |
+
EWW;ET;;;30;354.91
|
1101 |
+
EWW;ET;;;40;414.4
|
1102 |
+
EWW;ET;;;50;462.4
|
1103 |
+
EWW;ET;;;60;520.5
|
1104 |
+
EWW;ET;;;70;578.58
|
1105 |
+
EWW;ET;;;999999;7.58
|
1106 |
+
EWW;FI;;;2; 89.59�
|
1107 |
+
EWW;FI;;;3;106.93
|
1108 |
+
EWW;FI;;;4;122.01
|
1109 |
+
EWW;FI;;;5;137.07
|
1110 |
+
EWW;FI;;;10;188.61
|
1111 |
+
EWW;FI;;;15;203.55
|
1112 |
+
EWW;FI;;;20;222.65
|
1113 |
+
EWW;FI;;;30;261.9
|
1114 |
+
EWW;FI;;;40;299.32
|
1115 |
+
EWW;FI;;;50;325.6
|
1116 |
+
EWW;FI;;;60;360.75
|
1117 |
+
EWW;FI;;;70;394.27
|
1118 |
+
EWW;FI;;;999999;5.18
|
1119 |
+
EWW;FJ;;;2;107.34
|
1120 |
+
EWW;FJ;;;3;126.43
|
1121 |
+
EWW;FJ;;;4;143.11
|
1122 |
+
EWW;FJ;;;5;159.8
|
1123 |
+
EWW;FJ;;;10;236.05
|
1124 |
+
EWW;FJ;;;15;261.31
|
1125 |
+
EWW;FJ;;;20;297.68
|
1126 |
+
EWW;FJ;;;30;354.91
|
1127 |
+
EWW;FJ;;;40;414.4
|
1128 |
+
EWW;FJ;;;50;462.4
|
1129 |
+
EWW;FJ;;;60;520.5
|
1130 |
+
EWW;FJ;;;70;578.58
|
1131 |
+
EWW;FJ;;;999999;7.58
|
1132 |
+
EWW;FK;;;2;107.34
|
1133 |
+
EWW;FK;;;3;126.43
|
1134 |
+
EWW;FK;;;4;143.11
|
1135 |
+
EWW;FK;;;5;159.8
|
1136 |
+
EWW;FK;;;10;236.05
|
1137 |
+
EWW;FK;;;15;261.31
|
1138 |
+
EWW;FK;;;20;297.68
|
1139 |
+
EWW;FK;;;30;354.91
|
1140 |
+
EWW;FK;;;40;414.4
|
1141 |
+
EWW;FK;;;50;462.4
|
1142 |
+
EWW;FK;;;60;520.5
|
1143 |
+
EWW;FK;;;70;578.58
|
1144 |
+
EWW;FK;;;999999;7.58
|
1145 |
+
EWW;FM;;;2;107.34
|
1146 |
+
EWW;FM;;;3;126.43
|
1147 |
+
EWW;FM;;;4;143.11
|
1148 |
+
EWW;FM;;;5;159.8
|
1149 |
+
EWW;FM;;;10;236.05
|
1150 |
+
EWW;FM;;;15;261.31
|
1151 |
+
EWW;FM;;;20;297.68
|
1152 |
+
EWW;FM;;;30;354.91
|
1153 |
+
EWW;FM;;;40;414.4
|
1154 |
+
EWW;FM;;;50;462.4
|
1155 |
+
EWW;FM;;;60;520.5
|
1156 |
+
EWW;FM;;;70;578.58
|
1157 |
+
EWW;FM;;;999999;7.58
|
1158 |
+
EWW;FO;;;2; 97.44�
|
1159 |
+
EWW;FO;;;3;117.3
|
1160 |
+
EWW;FO;;;4;133.67
|
1161 |
+
EWW;FO;;;5;150.01
|
1162 |
+
EWW;FO;;;10;201.2
|
1163 |
+
EWW;FO;;;15;217.98
|
1164 |
+
EWW;FO;;;20;238.84
|
1165 |
+
EWW;FO;;;30;280.64
|
1166 |
+
EWW;FO;;;40;321.71
|
1167 |
+
EWW;FO;;;50;349.26
|
1168 |
+
EWW;FO;;;60;394.5
|
1169 |
+
EWW;FO;;;70;431.7
|
1170 |
+
EWW;FO;;;999999;5.66
|
1171 |
+
EWW;FR;;;2;�55.59
|
1172 |
+
EWW;FR;;;3;�72.85
|
1173 |
+
EWW;FR;;;4;�87.69
|
1174 |
+
EWW;FR;;;5;102.48
|
1175 |
+
EWW;FR;;;10;124.72
|
1176 |
+
EWW;FR;;;15;133.06
|
1177 |
+
EWW;FR;;;20;148.26
|
1178 |
+
EWW;FR;;;30;172.62
|
1179 |
+
EWW;FR;;;40;197.87
|
1180 |
+
EWW;FR;;;50;216.77
|
1181 |
+
EWW;FR;;;60;240.48
|
1182 |
+
EWW;FR;;;70;264.16
|
1183 |
+
EWW;FR;;;999999;3.47
|
1184 |
+
EWW;GA;;;2;107.34
|
1185 |
+
EWW;GA;;;3;126.43
|
1186 |
+
EWW;GA;;;4;143.11
|
1187 |
+
EWW;GA;;;5;159.8
|
1188 |
+
EWW;GA;;;10;236.05
|
1189 |
+
EWW;GA;;;15;261.31
|
1190 |
+
EWW;GA;;;20;297.68
|
1191 |
+
EWW;GA;;;30;354.91
|
1192 |
+
EWW;GA;;;40;414.4
|
1193 |
+
EWW;GA;;;50;462.4
|
1194 |
+
EWW;GA;;;60;520.5
|
1195 |
+
EWW;GA;;;70;578.58
|
1196 |
+
EWW;GA;;;999999;7.58
|
1197 |
+
EWW;GB;;;2;63.09
|
1198 |
+
EWW;GB;;;3;81.81
|
1199 |
+
EWW;GB;;;4;�98.24
|
1200 |
+
EWW;GB;;;5;114.66
|
1201 |
+
EWW;GB;;;10;152.62
|
1202 |
+
EWW;GB;;;15;167.78
|
1203 |
+
EWW;GB;;;20;192.04
|
1204 |
+
EWW;GB;;;30;225.2
|
1205 |
+
EWW;GB;;;40;262.94
|
1206 |
+
EWW;GB;;;50;291.51
|
1207 |
+
EWW;GB;;;60;324.9
|
1208 |
+
EWW;GB;;;70;358.27
|
1209 |
+
EWW;GB;;;999999;4.72
|
1210 |
+
EWW;GD;;;2;107.34
|
1211 |
+
EWW;GD;;;3;126.43
|
1212 |
+
EWW;GD;;;4;143.11
|
1213 |
+
EWW;GD;;;5;159.8
|
1214 |
+
EWW;GD;;;10;236.05
|
1215 |
+
EWW;GD;;;15;261.31
|
1216 |
+
EWW;GD;;;20;297.68
|
1217 |
+
EWW;GD;;;30;354.91
|
1218 |
+
EWW;GD;;;40;414.4
|
1219 |
+
EWW;GD;;;50;462.4
|
1220 |
+
EWW;GD;;;60;520.5
|
1221 |
+
EWW;GD;;;70;578.58
|
1222 |
+
EWW;GD;;;999999;7.58
|
1223 |
+
EWW;GE;;;2;107.34
|
1224 |
+
EWW;GE;;;3;126.43
|
1225 |
+
EWW;GE;;;4;143.11
|
1226 |
+
EWW;GE;;;5;159.8
|
1227 |
+
EWW;GE;;;10;236.05
|
1228 |
+
EWW;GE;;;15;261.31
|
1229 |
+
EWW;GE;;;20;297.68
|
1230 |
+
EWW;GE;;;30;354.91
|
1231 |
+
EWW;GE;;;40;414.4
|
1232 |
+
EWW;GE;;;50;462.4
|
1233 |
+
EWW;GE;;;60;520.5
|
1234 |
+
EWW;GE;;;70;578.58
|
1235 |
+
EWW;GE;;;999999;7.58
|
1236 |
+
EWW;GF;;;2;107.34
|
1237 |
+
EWW;GF;;;3;126.43
|
1238 |
+
EWW;GF;;;4;143.11
|
1239 |
+
EWW;GF;;;5;159.8
|
1240 |
+
EWW;GF;;;10;236.05
|
1241 |
+
EWW;GF;;;15;261.31
|
1242 |
+
EWW;GF;;;20;297.68
|
1243 |
+
EWW;GF;;;30;354.91
|
1244 |
+
EWW;GF;;;40;414.4
|
1245 |
+
EWW;GF;;;50;462.4
|
1246 |
+
EWW;GF;;;60;520.5
|
1247 |
+
EWW;GF;;;70;578.58
|
1248 |
+
EWW;GF;;;999999;7.58
|
1249 |
+
EWW;GG;;;2;�90.44�
|
1250 |
+
EWW;GG;;;3;107.41
|
1251 |
+
EWW;GG;;;4;122.47
|
1252 |
+
EWW;GG;;;5;137.55
|
1253 |
+
EWW;GG;;;10;189.29
|
1254 |
+
EWW;GG;;;15;204.14
|
1255 |
+
EWW;GG;;;20;223.24
|
1256 |
+
EWW;GG;;;30;262.41
|
1257 |
+
EWW;GG;;;40;301.84
|
1258 |
+
EWW;GG;;;50;328.26
|
1259 |
+
EWW;GG;;;60;361.98
|
1260 |
+
EWW;GG;;;70;395.71
|
1261 |
+
EWW;GG;;;999999;5.2
|
1262 |
+
EWW;GH;;;2;107.34
|
1263 |
+
EWW;GH;;;3;126.43
|
1264 |
+
EWW;GH;;;4;143.11
|
1265 |
+
EWW;GH;;;5;159.8
|
1266 |
+
EWW;GH;;;10;236.05
|
1267 |
+
EWW;GH;;;15;261.31
|
1268 |
+
EWW;GH;;;20;297.68
|
1269 |
+
EWW;GH;;;30;354.91
|
1270 |
+
EWW;GH;;;40;414.4
|
1271 |
+
EWW;GH;;;50;462.4
|
1272 |
+
EWW;GH;;;60;520.5
|
1273 |
+
EWW;GH;;;70;578.58
|
1274 |
+
EWW;GH;;;999999;7.58
|
1275 |
+
EWW;GL;;;2; 97.44�
|
1276 |
+
EWW;GL;;;3;117.3
|
1277 |
+
EWW;GL;;;4;133.67
|
1278 |
+
EWW;GL;;;5;150.01
|
1279 |
+
EWW;GL;;;10;201.2
|
1280 |
+
EWW;GL;;;15;217.98
|
1281 |
+
EWW;GL;;;20;238.84
|
1282 |
+
EWW;GL;;;30;280.64
|
1283 |
+
EWW;GL;;;40;321.71
|
1284 |
+
EWW;GL;;;50;349.26
|
1285 |
+
EWW;GL;;;60;394.5
|
1286 |
+
EWW;GL;;;70;431.7
|
1287 |
+
EWW;GL;;;999999;5.66
|
1288 |
+
EWW;GM;;;2; 96.37�
|
1289 |
+
EWW;GM;;;3;115.84
|
1290 |
+
EWW;GM;;;4;133.25
|
1291 |
+
EWW;GM;;;5;150.65
|
1292 |
+
EWW;GM;;;10;198.26
|
1293 |
+
EWW;GM;;;15;226.36
|
1294 |
+
EWW;GM;;;20;262.88
|
1295 |
+
EWW;GM;;;30;313.55
|
1296 |
+
EWW;GM;;;40;359.03
|
1297 |
+
EWW;GM;;;50;397.89
|
1298 |
+
EWW;GM;;;60;445.47
|
1299 |
+
EWW;GM;;;70;493.04
|
1300 |
+
EWW;GM;;;999999;6.46
|
1301 |
+
EWW;GN;;;2; 96.37�
|
1302 |
+
EWW;GN;;;3;115.84
|
1303 |
+
EWW;GN;;;4;133.25
|
1304 |
+
EWW;GN;;;5;150.65
|
1305 |
+
EWW;GN;;;10;198.26
|
1306 |
+
EWW;GN;;;15;226.36
|
1307 |
+
EWW;GN;;;20;262.88
|
1308 |
+
EWW;GN;;;30;313.55
|
1309 |
+
EWW;GN;;;40;359.03
|
1310 |
+
EWW;GN;;;50;397.89
|
1311 |
+
EWW;GN;;;60;445.47
|
1312 |
+
EWW;GN;;;70;493.04
|
1313 |
+
EWW;GN;;;999999;6.46
|
1314 |
+
EWW;GP;;;2;107.34
|
1315 |
+
EWW;GP;;;3;126.43
|
1316 |
+
EWW;GP;;;4;143.11
|
1317 |
+
EWW;GP;;;5;159.8
|
1318 |
+
EWW;GP;;;10;236.05
|
1319 |
+
EWW;GP;;;15;261.31
|
1320 |
+
EWW;GP;;;20;297.68
|
1321 |
+
EWW;GP;;;30;354.91
|
1322 |
+
EWW;GP;;;40;414.4
|
1323 |
+
EWW;GP;;;50;462.4
|
1324 |
+
EWW;GP;;;60;520.5
|
1325 |
+
EWW;GP;;;70;578.58
|
1326 |
+
EWW;GP;;;999999;7.58
|
1327 |
+
EWW;GQ;;;2; 87.86�
|
1328 |
+
EWW;GQ;;;3;106.71
|
1329 |
+
EWW;GQ;;;4;122.96
|
1330 |
+
EWW;GQ;;;5;139.15
|
1331 |
+
EWW;GQ;;;10;191
|
1332 |
+
EWW;GQ;;;15;214.93
|
1333 |
+
EWW;GQ;;;20;248.17
|
1334 |
+
EWW;GQ;;;30;292.84
|
1335 |
+
EWW;GQ;;;40;338.95
|
1336 |
+
EWW;GQ;;;50;375.89
|
1337 |
+
EWW;GQ;;;60;421.06
|
1338 |
+
EWW;GQ;;;70;466.22
|
1339 |
+
EWW;GQ;;;999999;6.13
|
1340 |
+
EWW;GR;;;2; 89.59�
|
1341 |
+
EWW;GR;;;3;106.93
|
1342 |
+
EWW;GR;;;4;122.01
|
1343 |
+
EWW;GR;;;5;137.07
|
1344 |
+
EWW;GR;;;10;188.61
|
1345 |
+
EWW;GR;;;15;203.55
|
1346 |
+
EWW;GR;;;20;222.65
|
1347 |
+
EWW;GR;;;30;261.9
|
1348 |
+
EWW;GR;;;40;299.32
|
1349 |
+
EWW;GR;;;50;325.6
|
1350 |
+
EWW;GR;;;60;360.75
|
1351 |
+
EWW;GR;;;70;394.27
|
1352 |
+
EWW;GR;;;999999;5.18
|
1353 |
+
EWW;GT;;;2; 87.86�
|
1354 |
+
EWW;GT;;;3;106.71
|
1355 |
+
EWW;GT;;;4;122.96
|
1356 |
+
EWW;GT;;;5;139.15
|
1357 |
+
EWW;GT;;;10;191
|
1358 |
+
EWW;GT;;;15;214.93
|
1359 |
+
EWW;GT;;;20;248.17
|
1360 |
+
EWW;GT;;;30;292.84
|
1361 |
+
EWW;GT;;;40;338.95
|
1362 |
+
EWW;GT;;;50;375.89
|
1363 |
+
EWW;GT;;;60;421.06
|
1364 |
+
EWW;GT;;;70;466.22
|
1365 |
+
EWW;GT;;;999999;6.13
|
1366 |
+
EWW;GU;;;2;107.34
|
1367 |
+
EWW;GU;;;3;126.43
|
1368 |
+
EWW;GU;;;4;143.11
|
1369 |
+
EWW;GU;;;5;159.8
|
1370 |
+
EWW;GU;;;10;236.05
|
1371 |
+
EWW;GU;;;15;261.31
|
1372 |
+
EWW;GU;;;20;297.68
|
1373 |
+
EWW;GU;;;30;354.91
|
1374 |
+
EWW;GU;;;40;414.4
|
1375 |
+
EWW;GU;;;50;462.4
|
1376 |
+
EWW;GU;;;60;520.5
|
1377 |
+
EWW;GU;;;70;578.58
|
1378 |
+
EWW;GU;;;999999;7.58
|
1379 |
+
EWW;GW;;;2;107.34
|
1380 |
+
EWW;GW;;;3;126.43
|
1381 |
+
EWW;GW;;;4;143.11
|
1382 |
+
EWW;GW;;;5;159.8
|
1383 |
+
EWW;GW;;;10;236.05
|
1384 |
+
EWW;GW;;;15;261.31
|
1385 |
+
EWW;GW;;;20;297.68
|
1386 |
+
EWW;GW;;;30;354.91
|
1387 |
+
EWW;GW;;;40;414.4
|
1388 |
+
EWW;GW;;;50;462.4
|
1389 |
+
EWW;GW;;;60;520.5
|
1390 |
+
EWW;GW;;;70;578.58
|
1391 |
+
EWW;GW;;;999999;7.58
|
1392 |
+
EWW;GY;;;2;107.34
|
1393 |
+
EWW;GY;;;3;126.43
|
1394 |
+
EWW;GY;;;4;143.11
|
1395 |
+
EWW;GY;;;5;159.8
|
1396 |
+
EWW;GY;;;10;236.05
|
1397 |
+
EWW;GY;;;15;261.31
|
1398 |
+
EWW;GY;;;20;297.68
|
1399 |
+
EWW;GY;;;30;354.91
|
1400 |
+
EWW;GY;;;40;414.4
|
1401 |
+
EWW;GY;;;50;462.4
|
1402 |
+
EWW;GY;;;60;520.5
|
1403 |
+
EWW;GY;;;70;578.58
|
1404 |
+
EWW;GY;;;999999;7.58
|
1405 |
+
EWW;HK;;;2;7.58
|
1406 |
+
EWW;HK;;;3;106.71
|
1407 |
+
EWW;HK;;;4;122.96
|
1408 |
+
EWW;HK;;;5;139.15
|
1409 |
+
EWW;HK;;;10;191
|
1410 |
+
EWW;HK;;;15;214.93
|
1411 |
+
EWW;HK;;;20;248.17
|
1412 |
+
EWW;HK;;;30;292.84
|
1413 |
+
EWW;HK;;;40;338.95
|
1414 |
+
EWW;HK;;;50;375.89
|
1415 |
+
EWW;HK;;;60;421.06
|
1416 |
+
EWW;HK;;;70;466.22
|
1417 |
+
EWW;HK;;;999999;6.13
|
1418 |
+
EWW;HN;;;2; 87.86�
|
1419 |
+
EWW;HN;;;3;106.71
|
1420 |
+
EWW;HN;;;4;122.96
|
1421 |
+
EWW;HN;;;5;139.15
|
1422 |
+
EWW;HN;;;10;191
|
1423 |
+
EWW;HN;;;15;214.93
|
1424 |
+
EWW;HN;;;20;248.17
|
1425 |
+
EWW;HN;;;30;292.84
|
1426 |
+
EWW;HN;;;40;338.95
|
1427 |
+
EWW;HN;;;50;375.89
|
1428 |
+
EWW;HN;;;60;421.06
|
1429 |
+
EWW;HN;;;70;466.22
|
1430 |
+
EWW;HN;;;999999;6.13
|
1431 |
+
EWW;HR;;;2; 97.44�
|
1432 |
+
EWW;HR;;;3;117.3
|
1433 |
+
EWW;HR;;;4;133.67
|
1434 |
+
EWW;HR;;;5;150.01
|
1435 |
+
EWW;HR;;;10;201.2
|
1436 |
+
EWW;HR;;;15;217.98
|
1437 |
+
EWW;HR;;;20;238.84
|
1438 |
+
EWW;HR;;;30;280.64
|
1439 |
+
EWW;HR;;;40;321.71
|
1440 |
+
EWW;HR;;;50;349.26
|
1441 |
+
EWW;HR;;;60;394.5
|
1442 |
+
EWW;HR;;;70;431.7
|
1443 |
+
EWW;HR;;;999999;5.66
|
1444 |
+
EWW;HT;;;2; 87.86�
|
1445 |
+
EWW;HT;;;3;106.71
|
1446 |
+
EWW;HT;;;4;122.96
|
1447 |
+
EWW;HT;;;5;139.15
|
1448 |
+
EWW;HT;;;10;191
|
1449 |
+
EWW;HT;;;15;214.93
|
1450 |
+
EWW;HT;;;20;248.17
|
1451 |
+
EWW;HT;;;30;292.84
|
1452 |
+
EWW;HT;;;40;338.95
|
1453 |
+
EWW;HT;;;50;375.89
|
1454 |
+
EWW;HT;;;60;421.06
|
1455 |
+
EWW;HT;;;70;466.22
|
1456 |
+
EWW;HT;;;999999;6.13
|
1457 |
+
EWW;HU;;;2; 66.11�
|
1458 |
+
EWW;HU;;;3;84.08
|
1459 |
+
EWW;HU;;;4;99.62
|
1460 |
+
EWW;HU;;;5;115.21
|
1461 |
+
EWW;HU;;;10;148.01
|
1462 |
+
EWW;HU;;;15;160.96
|
1463 |
+
EWW;HU;;;20;181.04
|
1464 |
+
EWW;HU;;;30;213
|
1465 |
+
EWW;HU;;;40;243.43
|
1466 |
+
EWW;HU;;;50;267.22
|
1467 |
+
EWW;HU;;;60;296.91
|
1468 |
+
EWW;HU;;;70;326.59
|
1469 |
+
EWW;HU;;;999999;4.29
|
1470 |
+
EWW;ID;;;2; 96.37�
|
1471 |
+
EWW;ID;;;3;115.84
|
1472 |
+
EWW;ID;;;4;133.25
|
1473 |
+
EWW;ID;;;5;150.65
|
1474 |
+
EWW;ID;;;10;198.26
|
1475 |
+
EWW;ID;;;15;226.36
|
1476 |
+
EWW;ID;;;20;262.88
|
1477 |
+
EWW;ID;;;30;313.55
|
1478 |
+
EWW;ID;;;40;359.03
|
1479 |
+
EWW;ID;;;50;397.89
|
1480 |
+
EWW;ID;;;60;445.47
|
1481 |
+
EWW;ID;;;70;493.04
|
1482 |
+
EWW;ID;;;999999;6.46
|
1483 |
+
EWW;IE;;;2; 89.59�
|
1484 |
+
EWW;IE;;;3;106.93
|
1485 |
+
EWW;IE;;;4;122.01
|
1486 |
+
EWW;IE;;;5;137.07
|
1487 |
+
EWW;IE;;;10;188.61
|
1488 |
+
EWW;IE;;;15;203.55
|
1489 |
+
EWW;IE;;;20;222.65
|
1490 |
+
EWW;IE;;;30;261.9
|
1491 |
+
EWW;IE;;;40;299.32
|
1492 |
+
EWW;IE;;;50;325.6
|
1493 |
+
EWW;IE;;;60;360.75
|
1494 |
+
EWW;IE;;;70;394.27
|
1495 |
+
EWW;IE;;;999999;5.18
|
1496 |
+
EWW;IL;;;2; 87.86�
|
1497 |
+
EWW;IL;;;3;106.71
|
1498 |
+
EWW;IL;;;4;122.96
|
1499 |
+
EWW;IL;;;5;139.15
|
1500 |
+
EWW;IL;;;10;191
|
1501 |
+
EWW;IL;;;15;214.93
|
1502 |
+
EWW;IL;;;20;248.17
|
1503 |
+
EWW;IL;;;30;292.84
|
1504 |
+
EWW;IL;;;40;338.95
|
1505 |
+
EWW;IL;;;50;375.89
|
1506 |
+
EWW;IL;;;60;421.06
|
1507 |
+
EWW;IL;;;70;466.22
|
1508 |
+
EWW;IL;;;999999;6.13
|
1509 |
+
EWW;IN;;;2; 96.37�
|
1510 |
+
EWW;IN;;;3;115.84
|
1511 |
+
EWW;IN;;;4;133.25
|
1512 |
+
EWW;IN;;;5;150.65
|
1513 |
+
EWW;IN;;;10;198.26
|
1514 |
+
EWW;IN;;;15;226.36
|
1515 |
+
EWW;IN;;;20;262.88
|
1516 |
+
EWW;IN;;;30;313.55
|
1517 |
+
EWW;IN;;;40;359.03
|
1518 |
+
EWW;IN;;;50;397.89
|
1519 |
+
EWW;IN;;;60;445.47
|
1520 |
+
EWW;IN;;;70;493.04
|
1521 |
+
EWW;IN;;;999999;6.46
|
1522 |
+
EWW;IQ;;;2; 96.37�
|
1523 |
+
EWW;IQ;;;3;115.84
|
1524 |
+
EWW;IQ;;;4;133.25
|
1525 |
+
EWW;IQ;;;5;150.65
|
1526 |
+
EWW;IQ;;;10;198.26
|
1527 |
+
EWW;IQ;;;15;226.36
|
1528 |
+
EWW;IQ;;;20;262.88
|
1529 |
+
EWW;IQ;;;30;313.55
|
1530 |
+
EWW;IQ;;;40;359.03
|
1531 |
+
EWW;IQ;;;50;397.89
|
1532 |
+
EWW;IQ;;;60;445.47
|
1533 |
+
EWW;IQ;;;70;493.04
|
1534 |
+
EWW;IQ;;;999999;6.46
|
1535 |
+
EWW;IR;;;2;107.34
|
1536 |
+
EWW;IR;;;3;126.43
|
1537 |
+
EWW;IR;;;4;143.11
|
1538 |
+
EWW;IR;;;5;159.8
|
1539 |
+
EWW;IR;;;10;236.05
|
1540 |
+
EWW;IR;;;15;261.31
|
1541 |
+
EWW;IR;;;20;297.68
|
1542 |
+
EWW;IR;;;30;354.91
|
1543 |
+
EWW;IR;;;40;414.4
|
1544 |
+
EWW;IR;;;50;462.4
|
1545 |
+
EWW;IR;;;60;520.5
|
1546 |
+
EWW;IR;;;70;578.58
|
1547 |
+
EWW;IR;;;999999;7.58
|
1548 |
+
EWW;IS;;;2; 97.44�
|
1549 |
+
EWW;IS;;;3;117.3
|
1550 |
+
EWW;IS;;;4;133.67
|
1551 |
+
EWW;IS;;;5;150.01
|
1552 |
+
EWW;IS;;;10;201.2
|
1553 |
+
EWW;IS;;;15;217.98
|
1554 |
+
EWW;IS;;;20;238.84
|
1555 |
+
EWW;IS;;;30;280.64
|
1556 |
+
EWW;IS;;;40;321.71
|
1557 |
+
EWW;IS;;;50;349.26
|
1558 |
+
EWW;IS;;;60;394.5
|
1559 |
+
EWW;IS;;;70;431.7
|
1560 |
+
EWW;IS;;;999999;5.66
|
1561 |
+
EWW;IT;;;2;63.09
|
1562 |
+
EWW;IT;;;3;81.81
|
1563 |
+
EWW;IT;;;4;�98.24
|
1564 |
+
EWW;IT;;;5;114.66
|
1565 |
+
EWW;IT;;;10;152.62
|
1566 |
+
EWW;IT;;;15;167.78
|
1567 |
+
EWW;IT;;;20;192.04
|
1568 |
+
EWW;IT;;;30;225.2
|
1569 |
+
EWW;IT;;;40;262.94
|
1570 |
+
EWW;IT;;;50;291.51
|
1571 |
+
EWW;IT;;;60;324.9
|
1572 |
+
EWW;IT;;;70;358.27
|
1573 |
+
EWW;IT;;;999999;4.72
|
1574 |
+
EWW;JE;;;2;�90.44�
|
1575 |
+
EWW;JE;;;3;107.41
|
1576 |
+
EWW;JE;;;4;122.47
|
1577 |
+
EWW;JE;;;5;137.55
|
1578 |
+
EWW;JE;;;10;189.29
|
1579 |
+
EWW;JE;;;15;204.14
|
1580 |
+
EWW;JE;;;20;223.24
|
1581 |
+
EWW;JE;;;30;262.41
|
1582 |
+
EWW;JE;;;40;301.84
|
1583 |
+
EWW;JE;;;50;328.26
|
1584 |
+
EWW;JE;;;60;361.98
|
1585 |
+
EWW;JE;;;70;395.71
|
1586 |
+
EWW;JE;;;999999;5.2
|
1587 |
+
EWW;JM;;;2;107.34
|
1588 |
+
EWW;JM;;;3;126.43
|
1589 |
+
EWW;JM;;;4;143.11
|
1590 |
+
EWW;JM;;;5;159.8
|
1591 |
+
EWW;JM;;;10;236.05
|
1592 |
+
EWW;JM;;;15;261.31
|
1593 |
+
EWW;JM;;;20;297.68
|
1594 |
+
EWW;JM;;;30;354.91
|
1595 |
+
EWW;JM;;;40;414.4
|
1596 |
+
EWW;JM;;;50;462.4
|
1597 |
+
EWW;JM;;;60;520.5
|
1598 |
+
EWW;JM;;;70;578.58
|
1599 |
+
EWW;JM;;;999999;7.58
|
1600 |
+
EWW;JO;;;2; 96.37�
|
1601 |
+
EWW;JO;;;3;115.84
|
1602 |
+
EWW;JO;;;4;133.25
|
1603 |
+
EWW;JO;;;5;150.65
|
1604 |
+
EWW;JO;;;10;198.26
|
1605 |
+
EWW;JO;;;15;226.36
|
1606 |
+
EWW;JO;;;20;262.88
|
1607 |
+
EWW;JO;;;30;313.55
|
1608 |
+
EWW;JO;;;40;359.03
|
1609 |
+
EWW;JO;;;50;397.89
|
1610 |
+
EWW;JO;;;60;445.47
|
1611 |
+
EWW;JO;;;70;493.04
|
1612 |
+
EWW;JO;;;999999;6.46
|
1613 |
+
EWW;JP;;;2; 96.37�
|
1614 |
+
EWW;JP;;;3;115.84
|
1615 |
+
EWW;JP;;;4;133.25
|
1616 |
+
EWW;JP;;;5;150.65
|
1617 |
+
EWW;JP;;;10;198.26
|
1618 |
+
EWW;JP;;;15;226.36
|
1619 |
+
EWW;JP;;;20;262.88
|
1620 |
+
EWW;JP;;;30;313.55
|
1621 |
+
EWW;JP;;;40;359.03
|
1622 |
+
EWW;JP;;;50;397.89
|
1623 |
+
EWW;JP;;;60;445.47
|
1624 |
+
EWW;JP;;;70;493.04
|
1625 |
+
EWW;JP;;;999999;6.46
|
1626 |
+
EWW;KE;;;2;107.34
|
1627 |
+
EWW;KE;;;3;126.43
|
1628 |
+
EWW;KE;;;4;143.11
|
1629 |
+
EWW;KE;;;5;159.8
|
1630 |
+
EWW;KE;;;10;236.05
|
1631 |
+
EWW;KE;;;15;261.31
|
1632 |
+
EWW;KE;;;20;297.68
|
1633 |
+
EWW;KE;;;30;354.91
|
1634 |
+
EWW;KE;;;40;414.4
|
1635 |
+
EWW;KE;;;50;462.4
|
1636 |
+
EWW;KE;;;60;520.5
|
1637 |
+
EWW;KE;;;70;578.58
|
1638 |
+
EWW;KE;;;999999;7.58
|
1639 |
+
EWW;KG;;;2;107.34
|
1640 |
+
EWW;KG;;;3;126.43
|
1641 |
+
EWW;KG;;;4;143.11
|
1642 |
+
EWW;KG;;;5;159.8
|
1643 |
+
EWW;KG;;;10;236.05
|
1644 |
+
EWW;KG;;;15;261.31
|
1645 |
+
EWW;KG;;;20;297.68
|
1646 |
+
EWW;KG;;;30;354.91
|
1647 |
+
EWW;KG;;;40;414.4
|
1648 |
+
EWW;KG;;;50;462.4
|
1649 |
+
EWW;KG;;;60;520.5
|
1650 |
+
EWW;KG;;;70;578.58
|
1651 |
+
EWW;KG;;;999999;7.58
|
1652 |
+
EWW;KH;;;2;107.34
|
1653 |
+
EWW;KH;;;3;126.43
|
1654 |
+
EWW;KH;;;4;143.11
|
1655 |
+
EWW;KH;;;5;159.8
|
1656 |
+
EWW;KH;;;10;236.05
|
1657 |
+
EWW;KH;;;15;261.31
|
1658 |
+
EWW;KH;;;20;297.68
|
1659 |
+
EWW;KH;;;30;354.91
|
1660 |
+
EWW;KH;;;40;414.4
|
1661 |
+
EWW;KH;;;50;462.4
|
1662 |
+
EWW;KH;;;60;520.5
|
1663 |
+
EWW;KH;;;70;578.58
|
1664 |
+
EWW;KH;;;999999;7.58
|
1665 |
+
EWW;KI;;;2;107.34
|
1666 |
+
EWW;KI;;;3;126.43
|
1667 |
+
EWW;KI;;;4;143.11
|
1668 |
+
EWW;KI;;;5;159.8
|
1669 |
+
EWW;KI;;;10;236.05
|
1670 |
+
EWW;KI;;;15;261.31
|
1671 |
+
EWW;KI;;;20;297.68
|
1672 |
+
EWW;KI;;;30;354.91
|
1673 |
+
EWW;KI;;;40;414.4
|
1674 |
+
EWW;KI;;;50;462.4
|
1675 |
+
EWW;KI;;;60;520.5
|
1676 |
+
EWW;KI;;;70;578.58
|
1677 |
+
EWW;KI;;;999999;7.58
|
1678 |
+
EWW;KN;;;2;107.34
|
1679 |
+
EWW;KN;;;3;126.43
|
1680 |
+
EWW;KN;;;4;143.11
|
1681 |
+
EWW;KN;;;5;159.8
|
1682 |
+
EWW;KN;;;10;236.05
|
1683 |
+
EWW;KN;;;15;261.31
|
1684 |
+
EWW;KN;;;20;297.68
|
1685 |
+
EWW;KN;;;30;354.91
|
1686 |
+
EWW;KN;;;40;414.4
|
1687 |
+
EWW;KN;;;50;462.4
|
1688 |
+
EWW;KN;;;60;520.5
|
1689 |
+
EWW;KN;;;70;578.58
|
1690 |
+
EWW;KN;;;999999;7.58
|
1691 |
+
EWW;KP;;;2;107.34
|
1692 |
+
EWW;KP;;;3;126.43
|
1693 |
+
EWW;KP;;;4;143.11
|
1694 |
+
EWW;KP;;;5;159.8
|
1695 |
+
EWW;KP;;;10;236.05
|
1696 |
+
EWW;KP;;;15;261.31
|
1697 |
+
EWW;KP;;;20;297.68
|
1698 |
+
EWW;KP;;;30;354.91
|
1699 |
+
EWW;KP;;;40;414.4
|
1700 |
+
EWW;KP;;;50;462.4
|
1701 |
+
EWW;KP;;;60;520.5
|
1702 |
+
EWW;KP;;;70;578.58
|
1703 |
+
EWW;KP;;;999999;7.58
|
1704 |
+
EWW;KR;;;2; 96.37�
|
1705 |
+
EWW;KR;;;3;115.84
|
1706 |
+
EWW;KR;;;4;133.25
|
1707 |
+
EWW;KR;;;5;150.65
|
1708 |
+
EWW;KR;;;10;198.26
|
1709 |
+
EWW;KR;;;15;226.36
|
1710 |
+
EWW;KR;;;20;262.88
|
1711 |
+
EWW;KR;;;30;313.55
|
1712 |
+
EWW;KR;;;40;359.03
|
1713 |
+
EWW;KR;;;50;397.89
|
1714 |
+
EWW;KR;;;60;445.47
|
1715 |
+
EWW;KR;;;70;493.04
|
1716 |
+
EWW;KR;;;999999;6.46
|
1717 |
+
EWW;KW;;;2; 96.37�
|
1718 |
+
EWW;KW;;;3;115.84
|
1719 |
+
EWW;KW;;;4;133.25
|
1720 |
+
EWW;KW;;;5;150.65
|
1721 |
+
EWW;KW;;;10;198.26
|
1722 |
+
EWW;KW;;;15;226.36
|
1723 |
+
EWW;KW;;;20;262.88
|
1724 |
+
EWW;KW;;;30;313.55
|
1725 |
+
EWW;KW;;;40;359.03
|
1726 |
+
EWW;KW;;;50;397.89
|
1727 |
+
EWW;KW;;;60;445.47
|
1728 |
+
EWW;KW;;;70;493.04
|
1729 |
+
EWW;KW;;;999999;6.46
|
1730 |
+
EWW;KY;;;2;107.34
|
1731 |
+
EWW;KY;;;3;126.43
|
1732 |
+
EWW;KY;;;4;143.11
|
1733 |
+
EWW;KY;;;5;159.8
|
1734 |
+
EWW;KY;;;10;236.05
|
1735 |
+
EWW;KY;;;15;261.31
|
1736 |
+
EWW;KY;;;20;297.68
|
1737 |
+
EWW;KY;;;30;354.91
|
1738 |
+
EWW;KY;;;40;414.4
|
1739 |
+
EWW;KY;;;50;462.4
|
1740 |
+
EWW;KY;;;60;520.5
|
1741 |
+
EWW;KY;;;70;578.58
|
1742 |
+
EWW;KY;;;999999;7.58
|
1743 |
+
EWW;KZ;;;2;107.34
|
1744 |
+
EWW;KZ;;;3;126.43
|
1745 |
+
EWW;KZ;;;4;143.11
|
1746 |
+
EWW;KZ;;;5;159.8
|
1747 |
+
EWW;KZ;;;10;236.05
|
1748 |
+
EWW;KZ;;;15;261.31
|
1749 |
+
EWW;KZ;;;20;297.68
|
1750 |
+
EWW;KZ;;;30;354.91
|
1751 |
+
EWW;KZ;;;40;414.4
|
1752 |
+
EWW;KZ;;;50;462.4
|
1753 |
+
EWW;KZ;;;60;520.5
|
1754 |
+
EWW;KZ;;;70;578.58
|
1755 |
+
EWW;KZ;;;999999;7.58
|
1756 |
+
EWW;LA;;;2;107.34
|
1757 |
+
EWW;LA;;;3;126.43
|
1758 |
+
EWW;LA;;;4;143.11
|
1759 |
+
EWW;LA;;;5;159.8
|
1760 |
+
EWW;LA;;;10;236.05
|
1761 |
+
EWW;LA;;;15;261.31
|
1762 |
+
EWW;LA;;;20;297.68
|
1763 |
+
EWW;LA;;;30;354.91
|
1764 |
+
EWW;LA;;;40;414.4
|
1765 |
+
EWW;LA;;;50;462.4
|
1766 |
+
EWW;LA;;;60;520.5
|
1767 |
+
EWW;LA;;;70;578.58
|
1768 |
+
EWW;LA;;;999999;7.58
|
1769 |
+
EWW;LB;;;2;107.34
|
1770 |
+
EWW;LB;;;3;126.43
|
1771 |
+
EWW;LB;;;4;143.11
|
1772 |
+
EWW;LB;;;5;159.8
|
1773 |
+
EWW;LB;;;10;236.05
|
1774 |
+
EWW;LB;;;15;261.31
|
1775 |
+
EWW;LB;;;20;297.68
|
1776 |
+
EWW;LB;;;30;354.91
|
1777 |
+
EWW;LB;;;40;414.4
|
1778 |
+
EWW;LB;;;50;462.4
|
1779 |
+
EWW;LB;;;60;520.5
|
1780 |
+
EWW;LB;;;70;578.58
|
1781 |
+
EWW;LB;;;999999;7.58
|
1782 |
+
EWW;LC;;;2;107.34
|
1783 |
+
EWW;LC;;;3;126.43
|
1784 |
+
EWW;LC;;;4;143.11
|
1785 |
+
EWW;LC;;;5;159.8
|
1786 |
+
EWW;LC;;;10;236.05
|
1787 |
+
EWW;LC;;;15;261.31
|
1788 |
+
EWW;LC;;;20;297.68
|
1789 |
+
EWW;LC;;;30;354.91
|
1790 |
+
EWW;LC;;;40;414.4
|
1791 |
+
EWW;LC;;;50;462.4
|
1792 |
+
EWW;LC;;;60;520.5
|
1793 |
+
EWW;LC;;;70;578.58
|
1794 |
+
EWW;LC;;;999999;7.58
|
1795 |
+
EWW;LI;;;2;�90.44�
|
1796 |
+
EWW;LI;;;3;107.41
|
1797 |
+
EWW;LI;;;4;122.47
|
1798 |
+
EWW;LI;;;5;137.55
|
1799 |
+
EWW;LI;;;10;189.29
|
1800 |
+
EWW;LI;;;15;204.14
|
1801 |
+
EWW;LI;;;20;223.24
|
1802 |
+
EWW;LI;;;30;262.41
|
1803 |
+
EWW;LI;;;40;301.84
|
1804 |
+
EWW;LI;;;50;328.26
|
1805 |
+
EWW;LI;;;60;361.98
|
1806 |
+
EWW;LI;;;70;395.71
|
1807 |
+
EWW;LI;;;999999;5.2
|
1808 |
+
EWW;LK;;;2;107.34
|
1809 |
+
EWW;LK;;;3;126.43
|
1810 |
+
EWW;LK;;;4;143.11
|
1811 |
+
EWW;LK;;;5;159.8
|
1812 |
+
EWW;LK;;;10;236.05
|
1813 |
+
EWW;LK;;;15;261.31
|
1814 |
+
EWW;LK;;;20;297.68
|
1815 |
+
EWW;LK;;;30;354.91
|
1816 |
+
EWW;LK;;;40;414.4
|
1817 |
+
EWW;LK;;;50;462.4
|
1818 |
+
EWW;LK;;;60;520.5
|
1819 |
+
EWW;LK;;;70;578.58
|
1820 |
+
EWW;LK;;;999999;7.58
|
1821 |
+
EWW;LR;;;2;107.34
|
1822 |
+
EWW;LR;;;3;126.43
|
1823 |
+
EWW;LR;;;4;143.11
|
1824 |
+
EWW;LR;;;5;159.8
|
1825 |
+
EWW;LR;;;10;236.05
|
1826 |
+
EWW;LR;;;15;261.31
|
1827 |
+
EWW;LR;;;20;297.68
|
1828 |
+
EWW;LR;;;30;354.91
|
1829 |
+
EWW;LR;;;40;414.4
|
1830 |
+
EWW;LR;;;50;462.4
|
1831 |
+
EWW;LR;;;60;520.5
|
1832 |
+
EWW;LR;;;70;578.58
|
1833 |
+
EWW;LR;;;999999;7.58
|
1834 |
+
EWW;LS;;;2;107.34
|
1835 |
+
EWW;LS;;;3;126.43
|
1836 |
+
EWW;LS;;;4;143.11
|
1837 |
+
EWW;LS;;;5;159.8
|
1838 |
+
EWW;LS;;;10;236.05
|
1839 |
+
EWW;LS;;;15;261.31
|
1840 |
+
EWW;LS;;;20;297.68
|
1841 |
+
EWW;LS;;;30;354.91
|
1842 |
+
EWW;LS;;;40;414.4
|
1843 |
+
EWW;LS;;;50;462.4
|
1844 |
+
EWW;LS;;;60;520.5
|
1845 |
+
EWW;LS;;;70;578.58
|
1846 |
+
EWW;LS;;;999999;7.58
|
1847 |
+
EWW;LT;;;2; 66.11�
|
1848 |
+
EWW;LT;;;3;84.08
|
1849 |
+
EWW;LT;;;4;99.62
|
1850 |
+
EWW;LT;;;5;115.21
|
1851 |
+
EWW;LT;;;10;148.01
|
1852 |
+
EWW;LT;;;15;160.96
|
1853 |
+
EWW;LT;;;20;181.04
|
1854 |
+
EWW;LT;;;30;213
|
1855 |
+
EWW;LT;;;40;243.43
|
1856 |
+
EWW;LT;;;50;267.22
|
1857 |
+
EWW;LT;;;60;296.91
|
1858 |
+
EWW;LT;;;70;326.59
|
1859 |
+
EWW;LT;;;999999;4.29
|
1860 |
+
EWW;LU;;;2;63.09
|
1861 |
+
EWW;LU;;;3;81.81
|
1862 |
+
EWW;LU;;;4;�98.24
|
1863 |
+
EWW;LU;;;5;114.66
|
1864 |
+
EWW;LU;;;10;152.62
|
1865 |
+
EWW;LU;;;15;167.78
|
1866 |
+
EWW;LU;;;20;192.04
|
1867 |
+
EWW;LU;;;30;225.2
|
1868 |
+
EWW;LU;;;40;262.94
|
1869 |
+
EWW;LU;;;50;291.51
|
1870 |
+
EWW;LU;;;60;324.9
|
1871 |
+
EWW;LU;;;70;358.27
|
1872 |
+
EWW;LU;;;999999;4.72
|
1873 |
+
EWW;LV;;;2; 66.11�
|
1874 |
+
EWW;LV;;;3;84.08
|
1875 |
+
EWW;LV;;;4;99.62
|
1876 |
+
EWW;LV;;;5;115.21
|
1877 |
+
EWW;LV;;;10;148.01
|
1878 |
+
EWW;LV;;;15;160.96
|
1879 |
+
EWW;LV;;;20;181.04
|
1880 |
+
EWW;LV;;;30;213
|
1881 |
+
EWW;LV;;;40;243.43
|
1882 |
+
EWW;LV;;;50;267.22
|
1883 |
+
EWW;LV;;;60;296.91
|
1884 |
+
EWW;LV;;;70;326.59
|
1885 |
+
EWW;LV;;;999999;4.29
|
1886 |
+
EWW;LY;;;2; 87.86�
|
1887 |
+
EWW;LY;;;3;106.71
|
1888 |
+
EWW;LY;;;4;122.96
|
1889 |
+
EWW;LY;;;5;139.15
|
1890 |
+
EWW;LY;;;10;191
|
1891 |
+
EWW;LY;;;15;214.93
|
1892 |
+
EWW;LY;;;20;248.17
|
1893 |
+
EWW;LY;;;30;292.84
|
1894 |
+
EWW;LY;;;40;338.95
|
1895 |
+
EWW;LY;;;50;375.89
|
1896 |
+
EWW;LY;;;60;421.06
|
1897 |
+
EWW;LY;;;70;466.22
|
1898 |
+
EWW;LY;;;999999;6.13
|
1899 |
+
EWW;MA;;;2; 87.86�
|
1900 |
+
EWW;MA;;;3;106.71
|
1901 |
+
EWW;MA;;;4;122.96
|
1902 |
+
EWW;MA;;;5;139.15
|
1903 |
+
EWW;MA;;;10;191
|
1904 |
+
EWW;MA;;;15;214.93
|
1905 |
+
EWW;MA;;;20;248.17
|
1906 |
+
EWW;MA;;;30;292.84
|
1907 |
+
EWW;MA;;;40;338.95
|
1908 |
+
EWW;MA;;;50;375.89
|
1909 |
+
EWW;MA;;;60;421.06
|
1910 |
+
EWW;MA;;;70;466.22
|
1911 |
+
EWW;MA;;;999999;6.13
|
1912 |
+
EWW;MC;;;2;63.09
|
1913 |
+
EWW;MC;;;3;81.81
|
1914 |
+
EWW;MC;;;4;�98.24
|
1915 |
+
EWW;MC;;;5;114.66
|
1916 |
+
EWW;MC;;;10;152.62
|
1917 |
+
EWW;MC;;;15;167.78
|
1918 |
+
EWW;MC;;;20;192.04
|
1919 |
+
EWW;MC;;;30;225.2
|
1920 |
+
EWW;MC;;;40;262.94
|
1921 |
+
EWW;MC;;;50;291.51
|
1922 |
+
EWW;MC;;;60;324.9
|
1923 |
+
EWW;MC;;;70;358.27
|
1924 |
+
EWW;MC;;;999999;4.72
|
1925 |
+
EWW;MD;;;2; 97.44�
|
1926 |
+
EWW;MD;;;3;117.3
|
1927 |
+
EWW;MD;;;4;133.67
|
1928 |
+
EWW;MD;;;5;150.01
|
1929 |
+
EWW;MD;;;10;201.2
|
1930 |
+
EWW;MD;;;15;217.98
|
1931 |
+
EWW;MD;;;20;238.84
|
1932 |
+
EWW;MD;;;30;280.64
|
1933 |
+
EWW;MD;;;40;321.71
|
1934 |
+
EWW;MD;;;50;349.26
|
1935 |
+
EWW;MD;;;60;394.5
|
1936 |
+
EWW;MD;;;70;431.7
|
1937 |
+
EWW;MD;;;999999;5.66
|
1938 |
+
EWW;ME;;;2; 97.44�
|
1939 |
+
EWW;ME;;;3;117.3
|
1940 |
+
EWW;ME;;;4;133.67
|
1941 |
+
EWW;ME;;;5;150.01
|
1942 |
+
EWW;ME;;;10;201.2
|
1943 |
+
EWW;ME;;;15;217.98
|
1944 |
+
EWW;ME;;;20;238.84
|
1945 |
+
EWW;ME;;;30;280.64
|
1946 |
+
EWW;ME;;;40;321.71
|
1947 |
+
EWW;ME;;;50;349.26
|
1948 |
+
EWW;ME;;;60;394.5
|
1949 |
+
EWW;ME;;;70;431.7
|
1950 |
+
EWW;ME;;;999999;5.66
|
1951 |
+
EWW;MG;;;2;107.34
|
1952 |
+
EWW;MG;;;3;126.43
|
1953 |
+
EWW;MG;;;4;143.11
|
1954 |
+
EWW;MG;;;5;159.8
|
1955 |
+
EWW;MG;;;10;236.05
|
1956 |
+
EWW;MG;;;15;261.31
|
1957 |
+
EWW;MG;;;20;297.68
|
1958 |
+
EWW;MG;;;30;354.91
|
1959 |
+
EWW;MG;;;40;414.4
|
1960 |
+
EWW;MG;;;50;462.4
|
1961 |
+
EWW;MG;;;60;520.5
|
1962 |
+
EWW;MG;;;70;578.58
|
1963 |
+
EWW;MG;;;999999;7.58
|
1964 |
+
EWW;MH;;;2;107.34
|
1965 |
+
EWW;MH;;;3;126.43
|
1966 |
+
EWW;MH;;;4;143.11
|
1967 |
+
EWW;MH;;;5;159.8
|
1968 |
+
EWW;MH;;;10;236.05
|
1969 |
+
EWW;MH;;;15;261.31
|
1970 |
+
EWW;MH;;;20;297.68
|
1971 |
+
EWW;MH;;;30;354.91
|
1972 |
+
EWW;MH;;;40;414.4
|
1973 |
+
EWW;MH;;;50;462.4
|
1974 |
+
EWW;MH;;;60;520.5
|
1975 |
+
EWW;MH;;;70;578.58
|
1976 |
+
EWW;MH;;;999999;7.58
|
1977 |
+
EWW;MK;;;2; 97.44�
|
1978 |
+
EWW;MK;;;3;117.3
|
1979 |
+
EWW;MK;;;4;133.67
|
1980 |
+
EWW;MK;;;5;150.01
|
1981 |
+
EWW;MK;;;10;201.2
|
1982 |
+
EWW;MK;;;15;217.98
|
1983 |
+
EWW;MK;;;20;238.84
|
1984 |
+
EWW;MK;;;30;280.64
|
1985 |
+
EWW;MK;;;40;321.71
|
1986 |
+
EWW;MK;;;50;349.26
|
1987 |
+
EWW;MK;;;60;394.5
|
1988 |
+
EWW;MK;;;70;431.7
|
1989 |
+
EWW;MK;;;999999;5.66
|
1990 |
+
EWW;ML;;;2;107.34
|
1991 |
+
EWW;ML;;;3;126.43
|
1992 |
+
EWW;ML;;;4;143.11
|
1993 |
+
EWW;ML;;;5;159.8
|
1994 |
+
EWW;ML;;;10;236.05
|
1995 |
+
EWW;ML;;;15;261.31
|
1996 |
+
EWW;ML;;;20;297.68
|
1997 |
+
EWW;ML;;;30;354.91
|
1998 |
+
EWW;ML;;;40;414.4
|
1999 |
+
EWW;ML;;;50;462.4
|
2000 |
+
EWW;ML;;;60;520.5
|
2001 |
+
EWW;ML;;;70;578.58
|
2002 |
+
EWW;ML;;;999999;7.58
|
2003 |
+
EWW;MN;;;2; 96.37�
|
2004 |
+
EWW;MN;;;3;115.84
|
2005 |
+
EWW;MN;;;4;133.25
|
2006 |
+
EWW;MN;;;5;150.65
|
2007 |
+
EWW;MN;;;10;198.26
|
2008 |
+
EWW;MN;;;15;226.36
|
2009 |
+
EWW;MN;;;20;262.88
|
2010 |
+
EWW;MN;;;30;313.55
|
2011 |
+
EWW;MN;;;40;359.03
|
2012 |
+
EWW;MN;;;50;397.89
|
2013 |
+
EWW;MN;;;60;445.47
|
2014 |
+
EWW;MN;;;70;493.04
|
2015 |
+
EWW;MN;;;999999;6.46
|
2016 |
+
EWW;MO;;;2;107.34
|
2017 |
+
EWW;MO;;;3;126.43
|
2018 |
+
EWW;MO;;;4;143.11
|
2019 |
+
EWW;MO;;;5;159.8
|
2020 |
+
EWW;MO;;;10;236.05
|
2021 |
+
EWW;MO;;;15;261.31
|
2022 |
+
EWW;MO;;;20;297.68
|
2023 |
+
EWW;MO;;;30;354.91
|
2024 |
+
EWW;MO;;;40;414.4
|
2025 |
+
EWW;MO;;;50;462.4
|
2026 |
+
EWW;MO;;;60;520.5
|
2027 |
+
EWW;MO;;;70;578.58
|
2028 |
+
EWW;MO;;;999999;7.58
|
2029 |
+
EWW;MP;;;2;107.34
|
2030 |
+
EWW;MP;;;3;126.43
|
2031 |
+
EWW;MP;;;4;143.11
|
2032 |
+
EWW;MP;;;5;159.8
|
2033 |
+
EWW;MP;;;10;236.05
|
2034 |
+
EWW;MP;;;15;261.31
|
2035 |
+
EWW;MP;;;20;297.68
|
2036 |
+
EWW;MP;;;30;354.91
|
2037 |
+
EWW;MP;;;40;414.4
|
2038 |
+
EWW;MP;;;50;462.4
|
2039 |
+
EWW;MP;;;60;520.5
|
2040 |
+
EWW;MP;;;70;578.58
|
2041 |
+
EWW;MP;;;999999;7.58
|
2042 |
+
EWW;MQ;;;2;107.34
|
2043 |
+
EWW;MQ;;;3;126.43
|
2044 |
+
EWW;MQ;;;4;143.11
|
2045 |
+
EWW;MQ;;;5;159.8
|
2046 |
+
EWW;MQ;;;10;236.05
|
2047 |
+
EWW;MQ;;;15;261.31
|
2048 |
+
EWW;MQ;;;20;297.68
|
2049 |
+
EWW;MQ;;;30;354.91
|
2050 |
+
EWW;MQ;;;40;414.4
|
2051 |
+
EWW;MQ;;;50;462.4
|
2052 |
+
EWW;MQ;;;60;520.5
|
2053 |
+
EWW;MQ;;;70;578.58
|
2054 |
+
EWW;MQ;;;999999;7.58
|
2055 |
+
EWW;MR;;;2;107.34
|
2056 |
+
EWW;MR;;;3;126.43
|
2057 |
+
EWW;MR;;;4;143.11
|
2058 |
+
EWW;MR;;;5;159.8
|
2059 |
+
EWW;MR;;;10;236.05
|
2060 |
+
EWW;MR;;;15;261.31
|
2061 |
+
EWW;MR;;;20;297.68
|
2062 |
+
EWW;MR;;;30;354.91
|
2063 |
+
EWW;MR;;;40;414.4
|
2064 |
+
EWW;MR;;;50;462.4
|
2065 |
+
EWW;MR;;;60;520.5
|
2066 |
+
EWW;MR;;;70;578.58
|
2067 |
+
EWW;MR;;;999999;7.58
|
2068 |
+
EWW;MS;;;2;107.34
|
2069 |
+
EWW;MS;;;3;126.43
|
2070 |
+
EWW;MS;;;4;143.11
|
2071 |
+
EWW;MS;;;5;159.8
|
2072 |
+
EWW;MS;;;10;236.05
|
2073 |
+
EWW;MS;;;15;261.31
|
2074 |
+
EWW;MS;;;20;297.68
|
2075 |
+
EWW;MS;;;30;354.91
|
2076 |
+
EWW;MS;;;40;414.4
|
2077 |
+
EWW;MS;;;50;462.4
|
2078 |
+
EWW;MS;;;60;520.5
|
2079 |
+
EWW;MS;;;70;578.58
|
2080 |
+
EWW;MS;;;999999;7.58
|
2081 |
+
EWW;MT;;;2; 66.11�
|
2082 |
+
EWW;MT;;;3;84.08
|
2083 |
+
EWW;MT;;;4;99.62
|
2084 |
+
EWW;MT;;;5;115.21
|
2085 |
+
EWW;MT;;;10;148.01
|
2086 |
+
EWW;MT;;;15;160.96
|
2087 |
+
EWW;MT;;;20;181.04
|
2088 |
+
EWW;MT;;;30;213
|
2089 |
+
EWW;MT;;;40;243.43
|
2090 |
+
EWW;MT;;;50;267.22
|
2091 |
+
EWW;MT;;;60;296.91
|
2092 |
+
EWW;MT;;;70;326.59
|
2093 |
+
EWW;MT;;;999999;4.29
|
2094 |
+
EWW;MU;;;2;107.34
|
2095 |
+
EWW;MU;;;3;126.43
|
2096 |
+
EWW;MU;;;4;143.11
|
2097 |
+
EWW;MU;;;5;159.8
|
2098 |
+
EWW;MU;;;10;236.05
|
2099 |
+
EWW;MU;;;15;261.31
|
2100 |
+
EWW;MU;;;20;297.68
|
2101 |
+
EWW;MU;;;30;354.91
|
2102 |
+
EWW;MU;;;40;414.4
|
2103 |
+
EWW;MU;;;50;462.4
|
2104 |
+
EWW;MU;;;60;520.5
|
2105 |
+
EWW;MU;;;70;578.58
|
2106 |
+
EWW;MU;;;999999;7.58
|
2107 |
+
EWW;MV;;;2;107.34
|
2108 |
+
EWW;MV;;;3;126.43
|
2109 |
+
EWW;MV;;;4;143.11
|
2110 |
+
EWW;MV;;;5;159.8
|
2111 |
+
EWW;MV;;;10;236.05
|
2112 |
+
EWW;MV;;;15;261.31
|
2113 |
+
EWW;MV;;;20;297.68
|
2114 |
+
EWW;MV;;;30;354.91
|
2115 |
+
EWW;MV;;;40;414.4
|
2116 |
+
EWW;MV;;;50;462.4
|
2117 |
+
EWW;MV;;;60;520.5
|
2118 |
+
EWW;MV;;;70;578.58
|
2119 |
+
EWW;MV;;;999999;7.58
|
2120 |
+
EWW;MW;;;2;107.34
|
2121 |
+
EWW;MW;;;3;126.43
|
2122 |
+
EWW;MW;;;4;143.11
|
2123 |
+
EWW;MW;;;5;159.8
|
2124 |
+
EWW;MW;;;10;236.05
|
2125 |
+
EWW;MW;;;15;261.31
|
2126 |
+
EWW;MW;;;20;297.68
|
2127 |
+
EWW;MW;;;30;354.91
|
2128 |
+
EWW;MW;;;40;414.4
|
2129 |
+
EWW;MW;;;50;462.4
|
2130 |
+
EWW;MW;;;60;520.5
|
2131 |
+
EWW;MW;;;70;578.58
|
2132 |
+
EWW;MW;;;999999;7.58
|
2133 |
+
EWW;MX;;;2; 87.86�
|
2134 |
+
EWW;MX;;;3;106.71
|
2135 |
+
EWW;MX;;;4;122.96
|
2136 |
+
EWW;MX;;;5;139.15
|
2137 |
+
EWW;MX;;;10;191
|
2138 |
+
EWW;MX;;;15;214.93
|
2139 |
+
EWW;MX;;;20;248.17
|
2140 |
+
EWW;MX;;;30;292.84
|
2141 |
+
EWW;MX;;;40;338.95
|
2142 |
+
EWW;MX;;;50;375.89
|
2143 |
+
EWW;MX;;;60;421.06
|
2144 |
+
EWW;MX;;;70;466.22
|
2145 |
+
EWW;MX;;;999999;6.13
|
2146 |
+
EWW;MY;;;2; 96.37�
|
2147 |
+
EWW;MY;;;3;115.84
|
2148 |
+
EWW;MY;;;4;133.25
|
2149 |
+
EWW;MY;;;5;150.65
|
2150 |
+
EWW;MY;;;10;198.26
|
2151 |
+
EWW;MY;;;15;226.36
|
2152 |
+
EWW;MY;;;20;262.88
|
2153 |
+
EWW;MY;;;30;313.55
|
2154 |
+
EWW;MY;;;40;359.03
|
2155 |
+
EWW;MY;;;50;397.89
|
2156 |
+
EWW;MY;;;60;445.47
|
2157 |
+
EWW;MY;;;70;493.04
|
2158 |
+
EWW;MY;;;999999;6.46
|
2159 |
+
EWW;MZ;;;2;107.34
|
2160 |
+
EWW;MZ;;;3;126.43
|
2161 |
+
EWW;MZ;;;4;143.11
|
2162 |
+
EWW;MZ;;;5;159.8
|
2163 |
+
EWW;MZ;;;10;236.05
|
2164 |
+
EWW;MZ;;;15;261.31
|
2165 |
+
EWW;MZ;;;20;297.68
|
2166 |
+
EWW;MZ;;;30;354.91
|
2167 |
+
EWW;MZ;;;40;414.4
|
2168 |
+
EWW;MZ;;;50;462.4
|
2169 |
+
EWW;MZ;;;60;520.5
|
2170 |
+
EWW;MZ;;;70;578.58
|
2171 |
+
EWW;MZ;;;999999;7.58
|
2172 |
+
EWW;NA;;;2;107.34
|
2173 |
+
EWW;NA;;;3;126.43
|
2174 |
+
EWW;NA;;;4;143.11
|
2175 |
+
EWW;NA;;;5;159.8
|
2176 |
+
EWW;NA;;;10;236.05
|
2177 |
+
EWW;NA;;;15;261.31
|
2178 |
+
EWW;NA;;;20;297.68
|
2179 |
+
EWW;NA;;;30;354.91
|
2180 |
+
EWW;NA;;;40;414.4
|
2181 |
+
EWW;NA;;;50;462.4
|
2182 |
+
EWW;NA;;;60;520.5
|
2183 |
+
EWW;NA;;;70;578.58
|
2184 |
+
EWW;NA;;;999999;7.58
|
2185 |
+
EWW;NC;;;2;107.34
|
2186 |
+
EWW;NC;;;3;126.43
|
2187 |
+
EWW;NC;;;4;143.11
|
2188 |
+
EWW;NC;;;5;159.8
|
2189 |
+
EWW;NC;;;10;236.05
|
2190 |
+
EWW;NC;;;15;261.31
|
2191 |
+
EWW;NC;;;20;297.68
|
2192 |
+
EWW;NC;;;30;354.91
|
2193 |
+
EWW;NC;;;40;414.4
|
2194 |
+
EWW;NC;;;50;462.4
|
2195 |
+
EWW;NC;;;60;520.5
|
2196 |
+
EWW;NC;;;70;578.58
|
2197 |
+
EWW;NC;;;999999;7.58
|
2198 |
+
EWW;NE;;;2;107.34
|
2199 |
+
EWW;NE;;;3;126.43
|
2200 |
+
EWW;NE;;;4;143.11
|
2201 |
+
EWW;NE;;;5;159.8
|
2202 |
+
EWW;NE;;;10;236.05
|
2203 |
+
EWW;NE;;;15;261.31
|
2204 |
+
EWW;NE;;;20;297.68
|
2205 |
+
EWW;NE;;;30;354.91
|
2206 |
+
EWW;NE;;;40;414.4
|
2207 |
+
EWW;NE;;;50;462.4
|
2208 |
+
EWW;NE;;;60;520.5
|
2209 |
+
EWW;NE;;;70;578.58
|
2210 |
+
EWW;NE;;;999999;7.58
|
2211 |
+
EWW;NF;;;2;107.34
|
2212 |
+
EWW;NF;;;3;126.43
|
2213 |
+
EWW;NF;;;4;143.11
|
2214 |
+
EWW;NF;;;5;159.8
|
2215 |
+
EWW;NF;;;10;236.05
|
2216 |
+
EWW;NF;;;15;261.31
|
2217 |
+
EWW;NF;;;20;297.68
|
2218 |
+
EWW;NF;;;30;354.91
|
2219 |
+
EWW;NF;;;40;414.4
|
2220 |
+
EWW;NF;;;50;462.4
|
2221 |
+
EWW;NF;;;60;520.5
|
2222 |
+
EWW;NF;;;70;578.58
|
2223 |
+
EWW;NF;;;999999;7.58
|
2224 |
+
EWW;NG;;;2;107.34
|
2225 |
+
EWW;NG;;;3;126.43
|
2226 |
+
EWW;NG;;;4;143.11
|
2227 |
+
EWW;NG;;;5;159.8
|
2228 |
+
EWW;NG;;;10;236.05
|
2229 |
+
EWW;NG;;;15;261.31
|
2230 |
+
EWW;NG;;;20;297.68
|
2231 |
+
EWW;NG;;;30;354.91
|
2232 |
+
EWW;NG;;;40;414.4
|
2233 |
+
EWW;NG;;;50;462.4
|
2234 |
+
EWW;NG;;;60;520.5
|
2235 |
+
EWW;NG;;;70;578.58
|
2236 |
+
EWW;NG;;;999999;7.58
|
2237 |
+
EWW;NI;;;2; 87.86�
|
2238 |
+
EWW;NI;;;3;106.71
|
2239 |
+
EWW;NI;;;4;122.96
|
2240 |
+
EWW;NI;;;5;139.15
|
2241 |
+
EWW;NI;;;10;191
|
2242 |
+
EWW;NI;;;15;214.93
|
2243 |
+
EWW;NI;;;20;248.17
|
2244 |
+
EWW;NI;;;30;292.84
|
2245 |
+
EWW;NI;;;40;338.95
|
2246 |
+
EWW;NI;;;50;375.89
|
2247 |
+
EWW;NI;;;60;421.06
|
2248 |
+
EWW;NI;;;70;466.22
|
2249 |
+
EWW;NI;;;999999;6.13
|
2250 |
+
EWW;NL;;;2;63.09
|
2251 |
+
EWW;NL;;;3;81.81
|
2252 |
+
EWW;NL;;;4;�98.24
|
2253 |
+
EWW;NL;;;5;114.66
|
2254 |
+
EWW;NL;;;10;152.62
|
2255 |
+
EWW;NL;;;15;167.78
|
2256 |
+
EWW;NL;;;20;192.04
|
2257 |
+
EWW;NL;;;30;225.2
|
2258 |
+
EWW;NL;;;40;262.94
|
2259 |
+
EWW;NL;;;50;291.51
|
2260 |
+
EWW;NL;;;60;324.9
|
2261 |
+
EWW;NL;;;70;358.27
|
2262 |
+
EWW;NL;;;999999;4.72
|
2263 |
+
EWW;NO;;;2;�90.44�
|
2264 |
+
EWW;NO;;;3;107.41
|
2265 |
+
EWW;NO;;;4;122.47
|
2266 |
+
EWW;NO;;;5;137.55
|
2267 |
+
EWW;NO;;;10;189.29
|
2268 |
+
EWW;NO;;;15;204.14
|
2269 |
+
EWW;NO;;;20;223.24
|
2270 |
+
EWW;NO;;;30;262.41
|
2271 |
+
EWW;NO;;;40;301.84
|
2272 |
+
EWW;NO;;;50;328.26
|
2273 |
+
EWW;NO;;;60;361.98
|
2274 |
+
EWW;NO;;;70;395.71
|
2275 |
+
EWW;NO;;;999999;5.2
|
2276 |
+
EWW;NP;;;2;107.34
|
2277 |
+
EWW;NP;;;3;126.43
|
2278 |
+
EWW;NP;;;4;143.11
|
2279 |
+
EWW;NP;;;5;159.8
|
2280 |
+
EWW;NP;;;10;236.05
|
2281 |
+
EWW;NP;;;15;261.31
|
2282 |
+
EWW;NP;;;20;297.68
|
2283 |
+
EWW;NP;;;30;354.91
|
2284 |
+
EWW;NP;;;40;414.4
|
2285 |
+
EWW;NP;;;50;462.4
|
2286 |
+
EWW;NP;;;60;520.5
|
2287 |
+
EWW;NP;;;70;578.58
|
2288 |
+
EWW;NP;;;999999;7.58
|
2289 |
+
EWW;NZ;;;2; 96.37�
|
2290 |
+
EWW;NZ;;;3;115.84
|
2291 |
+
EWW;NZ;;;4;133.25
|
2292 |
+
EWW;NZ;;;5;150.65
|
2293 |
+
EWW;NZ;;;10;198.26
|
2294 |
+
EWW;NZ;;;15;226.36
|
2295 |
+
EWW;NZ;;;20;262.88
|
2296 |
+
EWW;NZ;;;30;313.55
|
2297 |
+
EWW;NZ;;;40;359.03
|
2298 |
+
EWW;NZ;;;50;397.89
|
2299 |
+
EWW;NZ;;;60;445.47
|
2300 |
+
EWW;NZ;;;70;493.04
|
2301 |
+
EWW;NZ;;;999999;6.46
|
2302 |
+
EWW;OM;;;2; 96.37�
|
2303 |
+
EWW;OM;;;3;115.84
|
2304 |
+
EWW;OM;;;4;133.25
|
2305 |
+
EWW;OM;;;5;150.65
|
2306 |
+
EWW;OM;;;10;198.26
|
2307 |
+
EWW;OM;;;15;226.36
|
2308 |
+
EWW;OM;;;20;262.88
|
2309 |
+
EWW;OM;;;30;313.55
|
2310 |
+
EWW;OM;;;40;359.03
|
2311 |
+
EWW;OM;;;50;397.89
|
2312 |
+
EWW;OM;;;60;445.47
|
2313 |
+
EWW;OM;;;70;493.04
|
2314 |
+
EWW;OM;;;999999;6.46
|
2315 |
+
EWW;PA;;;2; 87.86�
|
2316 |
+
EWW;PA;;;3;106.71
|
2317 |
+
EWW;PA;;;4;122.96
|
2318 |
+
EWW;PA;;;5;139.15
|
2319 |
+
EWW;PA;;;10;191
|
2320 |
+
EWW;PA;;;15;214.93
|
2321 |
+
EWW;PA;;;20;248.17
|
2322 |
+
EWW;PA;;;30;292.84
|
2323 |
+
EWW;PA;;;40;338.95
|
2324 |
+
EWW;PA;;;50;375.89
|
2325 |
+
EWW;PA;;;60;421.06
|
2326 |
+
EWW;PA;;;70;466.22
|
2327 |
+
EWW;PA;;;999999;6.13
|
2328 |
+
EWW;PE;;;2; 87.86�
|
2329 |
+
EWW;PE;;;3;106.71
|
2330 |
+
EWW;PE;;;4;122.96
|
2331 |
+
EWW;PE;;;5;139.15
|
2332 |
+
EWW;PE;;;10;191
|
2333 |
+
EWW;PE;;;15;214.93
|
2334 |
+
EWW;PE;;;20;248.17
|
2335 |
+
EWW;PE;;;30;292.84
|
2336 |
+
EWW;PE;;;40;338.95
|
2337 |
+
EWW;PE;;;50;375.89
|
2338 |
+
EWW;PE;;;60;421.06
|
2339 |
+
EWW;PE;;;70;466.22
|
2340 |
+
EWW;PE;;;999999;6.13
|
2341 |
+
EWW;PF;;;2;107.34
|
2342 |
+
EWW;PF;;;3;126.43
|
2343 |
+
EWW;PF;;;4;143.11
|
2344 |
+
EWW;PF;;;5;159.8
|
2345 |
+
EWW;PF;;;10;236.05
|
2346 |
+
EWW;PF;;;15;261.31
|
2347 |
+
EWW;PF;;;20;297.68
|
2348 |
+
EWW;PF;;;30;354.91
|
2349 |
+
EWW;PF;;;40;414.4
|
2350 |
+
EWW;PF;;;50;462.4
|
2351 |
+
EWW;PF;;;60;520.5
|
2352 |
+
EWW;PF;;;70;578.58
|
2353 |
+
EWW;PF;;;999999;7.58
|
2354 |
+
EWW;PG;;;2;107.34
|
2355 |
+
EWW;PG;;;3;126.43
|
2356 |
+
EWW;PG;;;4;143.11
|
2357 |
+
EWW;PG;;;5;159.8
|
2358 |
+
EWW;PG;;;10;236.05
|
2359 |
+
EWW;PG;;;15;261.31
|
2360 |
+
EWW;PG;;;20;297.68
|
2361 |
+
EWW;PG;;;30;354.91
|
2362 |
+
EWW;PG;;;40;414.4
|
2363 |
+
EWW;PG;;;50;462.4
|
2364 |
+
EWW;PG;;;60;520.5
|
2365 |
+
EWW;PG;;;70;578.58
|
2366 |
+
EWW;PG;;;999999;7.58
|
2367 |
+
EWW;PH;;;2; 96.37�
|
2368 |
+
EWW;PH;;;3;115.84
|
2369 |
+
EWW;PH;;;4;133.25
|
2370 |
+
EWW;PH;;;5;150.65
|
2371 |
+
EWW;PH;;;10;198.26
|
2372 |
+
EWW;PH;;;15;226.36
|
2373 |
+
EWW;PH;;;20;262.88
|
2374 |
+
EWW;PH;;;30;313.55
|
2375 |
+
EWW;PH;;;40;359.03
|
2376 |
+
EWW;PH;;;50;397.89
|
2377 |
+
EWW;PH;;;60;445.47
|
2378 |
+
EWW;PH;;;70;493.04
|
2379 |
+
EWW;PH;;;999999;6.46
|
2380 |
+
EWW;PK;;;2; 96.37�
|
2381 |
+
EWW;PK;;;3;115.84
|
2382 |
+
EWW;PK;;;4;133.25
|
2383 |
+
EWW;PK;;;5;150.65
|
2384 |
+
EWW;PK;;;10;198.26
|
2385 |
+
EWW;PK;;;15;226.36
|
2386 |
+
EWW;PK;;;20;262.88
|
2387 |
+
EWW;PK;;;30;313.55
|
2388 |
+
EWW;PK;;;40;359.03
|
2389 |
+
EWW;PK;;;50;397.89
|
2390 |
+
EWW;PK;;;60;445.47
|
2391 |
+
EWW;PK;;;70;493.04
|
2392 |
+
EWW;PK;;;999999;6.46
|
2393 |
+
EWW;PL;;;2; 66.11�
|
2394 |
+
EWW;PL;;;3;84.08
|
2395 |
+
EWW;PL;;;4;99.62
|
2396 |
+
EWW;PL;;;5;115.21
|
2397 |
+
EWW;PL;;;10;148.01
|
2398 |
+
EWW;PL;;;15;160.96
|
2399 |
+
EWW;PL;;;20;181.04
|
2400 |
+
EWW;PL;;;30;213
|
2401 |
+
EWW;PL;;;40;243.43
|
2402 |
+
EWW;PL;;;50;267.22
|
2403 |
+
EWW;PL;;;60;296.91
|
2404 |
+
EWW;PL;;;70;326.59
|
2405 |
+
EWW;PL;;;999999;4.29
|
2406 |
+
EWW;PR;;;2; 72.71�
|
2407 |
+
EWW;PR;;;3;93.6
|
2408 |
+
EWW;PR;;;4;109.68
|
2409 |
+
EWW;PR;;;5;125.78
|
2410 |
+
EWW;PR;;;10;160.59
|
2411 |
+
EWW;PR;;;15;170.64
|
2412 |
+
EWW;PR;;;20;188.57
|
2413 |
+
EWW;PR;;;30;220.51
|
2414 |
+
EWW;PR;;;40;252.13
|
2415 |
+
EWW;PR;;;50;276.88
|
2416 |
+
EWW;PR;;;60;307.68
|
2417 |
+
EWW;PR;;;70;338.53
|
2418 |
+
EWW;PR;;;999999;4.45
|
2419 |
+
EWW;PS;;;2;107.34
|
2420 |
+
EWW;PS;;;3;126.43
|
2421 |
+
EWW;PS;;;4;143.11
|
2422 |
+
EWW;PS;;;5;159.8
|
2423 |
+
EWW;PS;;;10;236.05
|
2424 |
+
EWW;PS;;;15;261.31
|
2425 |
+
EWW;PS;;;20;297.68
|
2426 |
+
EWW;PS;;;30;354.91
|
2427 |
+
EWW;PS;;;40;414.4
|
2428 |
+
EWW;PS;;;50;462.4
|
2429 |
+
EWW;PS;;;60;520.5
|
2430 |
+
EWW;PS;;;70;578.58
|
2431 |
+
EWW;PS;;;999999;7.58
|
2432 |
+
EWW;PW;;;2;107.34
|
2433 |
+
EWW;PW;;;3;126.43
|
2434 |
+
EWW;PW;;;4;143.11
|
2435 |
+
EWW;PW;;;5;159.8
|
2436 |
+
EWW;PW;;;10;236.05
|
2437 |
+
EWW;PW;;;15;261.31
|
2438 |
+
EWW;PW;;;20;297.68
|
2439 |
+
EWW;PW;;;30;354.91
|
2440 |
+
EWW;PW;;;40;414.4
|
2441 |
+
EWW;PW;;;50;462.4
|
2442 |
+
EWW;PW;;;60;520.5
|
2443 |
+
EWW;PW;;;70;578.58
|
2444 |
+
EWW;PW;;;999999;7.58
|
2445 |
+
EWW;PY;;;2; 87.86�
|
2446 |
+
EWW;PY;;;3;106.71
|
2447 |
+
EWW;PY;;;4;122.96
|
2448 |
+
EWW;PY;;;5;139.15
|
2449 |
+
EWW;PY;;;10;191
|
2450 |
+
EWW;PY;;;15;214.93
|
2451 |
+
EWW;PY;;;20;248.17
|
2452 |
+
EWW;PY;;;30;292.84
|
2453 |
+
EWW;PY;;;40;338.95
|
2454 |
+
EWW;PY;;;50;375.89
|
2455 |
+
EWW;PY;;;60;421.06
|
2456 |
+
EWW;PY;;;70;466.22
|
2457 |
+
EWW;PY;;;999999;6.13
|
2458 |
+
EWW;QA;;;2; 96.37�
|
2459 |
+
EWW;QA;;;3;115.84
|
2460 |
+
EWW;QA;;;4;133.25
|
2461 |
+
EWW;QA;;;5;150.65
|
2462 |
+
EWW;QA;;;10;198.26
|
2463 |
+
EWW;QA;;;15;226.36
|
2464 |
+
EWW;QA;;;20;262.88
|
2465 |
+
EWW;QA;;;30;313.55
|
2466 |
+
EWW;QA;;;40;359.03
|
2467 |
+
EWW;QA;;;50;397.89
|
2468 |
+
EWW;QA;;;60;445.47
|
2469 |
+
EWW;QA;;;70;493.04
|
2470 |
+
EWW;QA;;;999999;6.46
|
2471 |
+
EWW;RE;;;2;107.34
|
2472 |
+
EWW;RE;;;3;126.43
|
2473 |
+
EWW;RE;;;4;143.11
|
2474 |
+
EWW;RE;;;5;159.8
|
2475 |
+
EWW;RE;;;10;236.05
|
2476 |
+
EWW;RE;;;15;261.31
|
2477 |
+
EWW;RE;;;20;297.68
|
2478 |
+
EWW;RE;;;30;354.91
|
2479 |
+
EWW;RE;;;40;414.4
|
2480 |
+
EWW;RE;;;50;462.4
|
2481 |
+
EWW;RE;;;60;520.5
|
2482 |
+
EWW;RE;;;70;578.58
|
2483 |
+
EWW;RE;;;999999;7.58
|
2484 |
+
EWW;RO;;;2; 66.11�
|
2485 |
+
EWW;RO;;;3;84.08
|
2486 |
+
EWW;RO;;;4;99.62
|
2487 |
+
EWW;RO;;;5;115.21
|
2488 |
+
EWW;RO;;;10;148.01
|
2489 |
+
EWW;RO;;;15;160.96
|
2490 |
+
EWW;RO;;;20;181.04
|
2491 |
+
EWW;RO;;;30;213
|
2492 |
+
EWW;RO;;;40;243.43
|
2493 |
+
EWW;RO;;;50;267.22
|
2494 |
+
EWW;RO;;;60;296.91
|
2495 |
+
EWW;RO;;;70;326.59
|
2496 |
+
EWW;RO;;;999999;4.29
|
2497 |
+
EWW;RS;;;2; 97.44�
|
2498 |
+
EWW;RS;;;3;117.3
|
2499 |
+
EWW;RS;;;4;133.67
|
2500 |
+
EWW;RS;;;5;150.01
|
2501 |
+
EWW;RS;;;10;201.2
|
2502 |
+
EWW;RS;;;15;217.98
|
2503 |
+
EWW;RS;;;20;238.84
|
2504 |
+
EWW;RS;;;30;280.64
|
2505 |
+
EWW;RS;;;40;321.71
|
2506 |
+
EWW;RS;;;50;349.26
|
2507 |
+
EWW;RS;;;60;394.5
|
2508 |
+
EWW;RS;;;70;431.7
|
2509 |
+
EWW;RS;;;999999;5.66
|
2510 |
+
EWW;RU;;;2;107.34
|
2511 |
+
EWW;RU;;;3;126.43
|
2512 |
+
EWW;RU;;;4;143.11
|
2513 |
+
EWW;RU;;;5;159.8
|
2514 |
+
EWW;RU;;;10;236.05
|
2515 |
+
EWW;RU;;;15;261.31
|
2516 |
+
EWW;RU;;;20;297.68
|
2517 |
+
EWW;RU;;;30;354.91
|
2518 |
+
EWW;RU;;;40;414.4
|
2519 |
+
EWW;RU;;;50;462.4
|
2520 |
+
EWW;RU;;;60;520.5
|
2521 |
+
EWW;RU;;;70;578.58
|
2522 |
+
EWW;RU;;;999999;7.58
|
2523 |
+
EWW;RW;;;2;107.34
|
2524 |
+
EWW;RW;;;3;126.43
|
2525 |
+
EWW;RW;;;4;143.11
|
2526 |
+
EWW;RW;;;5;159.8
|
2527 |
+
EWW;RW;;;10;236.05
|
2528 |
+
EWW;RW;;;15;261.31
|
2529 |
+
EWW;RW;;;20;297.68
|
2530 |
+
EWW;RW;;;30;354.91
|
2531 |
+
EWW;RW;;;40;414.4
|
2532 |
+
EWW;RW;;;50;462.4
|
2533 |
+
EWW;RW;;;60;520.5
|
2534 |
+
EWW;RW;;;70;578.58
|
2535 |
+
EWW;RW;;;999999;7.58
|
2536 |
+
EWW;SA;;;2; 96.37�
|
2537 |
+
EWW;SA;;;3;115.84
|
2538 |
+
EWW;SA;;;4;133.25
|
2539 |
+
EWW;SA;;;5;150.65
|
2540 |
+
EWW;SA;;;10;198.26
|
2541 |
+
EWW;SA;;;15;226.36
|
2542 |
+
EWW;SA;;;20;262.88
|
2543 |
+
EWW;SA;;;30;313.55
|
2544 |
+
EWW;SA;;;40;359.03
|
2545 |
+
EWW;SA;;;50;397.89
|
2546 |
+
EWW;SA;;;60;445.47
|
2547 |
+
EWW;SA;;;70;493.04
|
2548 |
+
EWW;SA;;;999999;6.46
|
2549 |
+
EWW;SB;;;2;107.34
|
2550 |
+
EWW;SB;;;3;126.43
|
2551 |
+
EWW;SB;;;4;143.11
|
2552 |
+
EWW;SB;;;5;159.8
|
2553 |
+
EWW;SB;;;10;236.05
|
2554 |
+
EWW;SB;;;15;261.31
|
2555 |
+
EWW;SB;;;20;297.68
|
2556 |
+
EWW;SB;;;30;354.91
|
2557 |
+
EWW;SB;;;40;414.4
|
2558 |
+
EWW;SB;;;50;462.4
|
2559 |
+
EWW;SB;;;60;520.5
|
2560 |
+
EWW;SB;;;70;578.58
|
2561 |
+
EWW;SB;;;999999;7.58
|
2562 |
+
EWW;SC;;;2;107.34
|
2563 |
+
EWW;SC;;;3;126.43
|
2564 |
+
EWW;SC;;;4;143.11
|
2565 |
+
EWW;SC;;;5;159.8
|
2566 |
+
EWW;SC;;;10;236.05
|
2567 |
+
EWW;SC;;;15;261.31
|
2568 |
+
EWW;SC;;;20;297.68
|
2569 |
+
EWW;SC;;;30;354.91
|
2570 |
+
EWW;SC;;;40;414.4
|
2571 |
+
EWW;SC;;;50;462.4
|
2572 |
+
EWW;SC;;;60;520.5
|
2573 |
+
EWW;SC;;;70;578.58
|
2574 |
+
EWW;SC;;;999999;7.58
|
2575 |
+
EWW;SE;;;2; 89.59�
|
2576 |
+
EWW;SE;;;3;106.93
|
2577 |
+
EWW;SE;;;4;122.01
|
2578 |
+
EWW;SE;;;5;137.07
|
2579 |
+
EWW;SE;;;10;188.61
|
2580 |
+
EWW;SE;;;15;203.55
|
2581 |
+
EWW;SE;;;20;222.65
|
2582 |
+
EWW;SE;;;30;261.9
|
2583 |
+
EWW;SE;;;40;299.32
|
2584 |
+
EWW;SE;;;50;325.6
|
2585 |
+
EWW;SE;;;60;360.75
|
2586 |
+
EWW;SE;;;70;394.27
|
2587 |
+
EWW;SE;;;999999;5.18
|
2588 |
+
EWW;SG;;;2; 87.86�
|
2589 |
+
EWW;SG;;;3;106.71
|
2590 |
+
EWW;SG;;;4;122.96
|
2591 |
+
EWW;SG;;;5;139.15
|
2592 |
+
EWW;SG;;;10;191
|
2593 |
+
EWW;SG;;;15;214.93
|
2594 |
+
EWW;SG;;;20;248.17
|
2595 |
+
EWW;SG;;;30;292.84
|
2596 |
+
EWW;SG;;;40;338.95
|
2597 |
+
EWW;SG;;;50;375.89
|
2598 |
+
EWW;SG;;;60;421.06
|
2599 |
+
EWW;SG;;;70;466.22
|
2600 |
+
EWW;SG;;;999999;6.13
|
2601 |
+
EWW;SI;;;2; 66.11�
|
2602 |
+
EWW;SI;;;3;84.08
|
2603 |
+
EWW;SI;;;4;99.62
|
2604 |
+
EWW;SI;;;5;115.21
|
2605 |
+
EWW;SI;;;10;148.01
|
2606 |
+
EWW;SI;;;15;160.96
|
2607 |
+
EWW;SI;;;20;181.04
|
2608 |
+
EWW;SI;;;30;213
|
2609 |
+
EWW;SI;;;40;243.43
|
2610 |
+
EWW;SI;;;50;267.22
|
2611 |
+
EWW;SI;;;60;296.91
|
2612 |
+
EWW;SI;;;70;326.59
|
2613 |
+
EWW;SI;;;999999;4.29
|
2614 |
+
EWW;SK;;;2; 97.44�
|
2615 |
+
EWW;SK;;;3;117.3
|
2616 |
+
EWW;SK;;;4;133.67
|
2617 |
+
EWW;SK;;;5;150.01
|
2618 |
+
EWW;SK;;;10;201.2
|
2619 |
+
EWW;SK;;;15;217.98
|
2620 |
+
EWW;SK;;;20;238.84
|
2621 |
+
EWW;SK;;;30;280.64
|
2622 |
+
EWW;SK;;;40;321.71
|
2623 |
+
EWW;SK;;;50;349.26
|
2624 |
+
EWW;SK;;;60;394.5
|
2625 |
+
EWW;SK;;;70;431.7
|
2626 |
+
EWW;SK;;;999999;5.66
|
2627 |
+
EWW;SL;;;2;107.34
|
2628 |
+
EWW;SL;;;3;126.43
|
2629 |
+
EWW;SL;;;4;143.11
|
2630 |
+
EWW;SL;;;5;159.8
|
2631 |
+
EWW;SL;;;10;236.05
|
2632 |
+
EWW;SL;;;15;261.31
|
2633 |
+
EWW;SL;;;20;297.68
|
2634 |
+
EWW;SL;;;30;354.91
|
2635 |
+
EWW;SL;;;40;414.4
|
2636 |
+
EWW;SL;;;50;462.4
|
2637 |
+
EWW;SL;;;60;520.5
|
2638 |
+
EWW;SL;;;70;578.58
|
2639 |
+
EWW;SL;;;999999;7.58
|
2640 |
+
EWW;SM;;;2;�90.44�
|
2641 |
+
EWW;SM;;;3;107.41
|
2642 |
+
EWW;SM;;;4;122.47
|
2643 |
+
EWW;SM;;;5;137.55
|
2644 |
+
EWW;SM;;;10;189.29
|
2645 |
+
EWW;SM;;;15;204.14
|
2646 |
+
EWW;SM;;;20;223.24
|
2647 |
+
EWW;SM;;;30;262.41
|
2648 |
+
EWW;SM;;;40;301.84
|
2649 |
+
EWW;SM;;;50;328.26
|
2650 |
+
EWW;SM;;;60;361.98
|
2651 |
+
EWW;SM;;;70;395.71
|
2652 |
+
EWW;SM;;;999999;5.2
|
2653 |
+
EWW;SN;;;2;107.34
|
2654 |
+
EWW;SN;;;3;126.43
|
2655 |
+
EWW;SN;;;4;143.11
|
2656 |
+
EWW;SN;;;5;159.8
|
2657 |
+
EWW;SN;;;10;236.05
|
2658 |
+
EWW;SN;;;15;261.31
|
2659 |
+
EWW;SN;;;20;297.68
|
2660 |
+
EWW;SN;;;30;354.91
|
2661 |
+
EWW;SN;;;40;414.4
|
2662 |
+
EWW;SN;;;50;462.4
|
2663 |
+
EWW;SN;;;60;520.5
|
2664 |
+
EWW;SN;;;70;578.58
|
2665 |
+
EWW;SN;;;999999;7.58
|
2666 |
+
EWW;SR;;;2;107.34
|
2667 |
+
EWW;SR;;;3;126.43
|
2668 |
+
EWW;SR;;;4;143.11
|
2669 |
+
EWW;SR;;;5;159.8
|
2670 |
+
EWW;SR;;;10;236.05
|
2671 |
+
EWW;SR;;;15;261.31
|
2672 |
+
EWW;SR;;;20;297.68
|
2673 |
+
EWW;SR;;;30;354.91
|
2674 |
+
EWW;SR;;;40;414.4
|
2675 |
+
EWW;SR;;;50;462.4
|
2676 |
+
EWW;SR;;;60;520.5
|
2677 |
+
EWW;SR;;;70;578.58
|
2678 |
+
EWW;SR;;;999999;7.58
|
2679 |
+
EWW;SV;;;2; 87.86�
|
2680 |
+
EWW;SV;;;3;106.71
|
2681 |
+
EWW;SV;;;4;122.96
|
2682 |
+
EWW;SV;;;5;139.15
|
2683 |
+
EWW;SV;;;10;191
|
2684 |
+
EWW;SV;;;15;214.93
|
2685 |
+
EWW;SV;;;20;248.17
|
2686 |
+
EWW;SV;;;30;292.84
|
2687 |
+
EWW;SV;;;40;338.95
|
2688 |
+
EWW;SV;;;50;375.89
|
2689 |
+
EWW;SV;;;60;421.06
|
2690 |
+
EWW;SV;;;70;466.22
|
2691 |
+
EWW;SV;;;999999;6.13
|
2692 |
+
EWW;SY;;;2; 96.37�
|
2693 |
+
EWW;SY;;;3;115.84
|
2694 |
+
EWW;SY;;;4;133.25
|
2695 |
+
EWW;SY;;;5;150.65
|
2696 |
+
EWW;SY;;;10;198.26
|
2697 |
+
EWW;SY;;;15;226.36
|
2698 |
+
EWW;SY;;;20;262.88
|
2699 |
+
EWW;SY;;;30;313.55
|
2700 |
+
EWW;SY;;;40;359.03
|
2701 |
+
EWW;SY;;;50;397.89
|
2702 |
+
EWW;SY;;;60;445.47
|
2703 |
+
EWW;SY;;;70;493.04
|
2704 |
+
EWW;SY;;;999999;6.46
|
2705 |
+
EWW;SZ;;;2;107.34
|
2706 |
+
EWW;SZ;;;3;126.43
|
2707 |
+
EWW;SZ;;;4;143.11
|
2708 |
+
EWW;SZ;;;5;159.8
|
2709 |
+
EWW;SZ;;;10;236.05
|
2710 |
+
EWW;SZ;;;15;261.31
|
2711 |
+
EWW;SZ;;;20;297.68
|
2712 |
+
EWW;SZ;;;30;354.91
|
2713 |
+
EWW;SZ;;;40;414.4
|
2714 |
+
EWW;SZ;;;50;462.4
|
2715 |
+
EWW;SZ;;;60;520.5
|
2716 |
+
EWW;SZ;;;70;578.58
|
2717 |
+
EWW;SZ;;;999999;7.58
|
2718 |
+
EWW;TC;;;2;107.34
|
2719 |
+
EWW;TC;;;3;126.43
|
2720 |
+
EWW;TC;;;4;143.11
|
2721 |
+
EWW;TC;;;5;159.8
|
2722 |
+
EWW;TC;;;10;236.05
|
2723 |
+
EWW;TC;;;15;261.31
|
2724 |
+
EWW;TC;;;20;297.68
|
2725 |
+
EWW;TC;;;30;354.91
|
2726 |
+
EWW;TC;;;40;414.4
|
2727 |
+
EWW;TC;;;50;462.4
|
2728 |
+
EWW;TC;;;60;520.5
|
2729 |
+
EWW;TC;;;70;578.58
|
2730 |
+
EWW;TC;;;999999;7.58
|
2731 |
+
EWW;TD;;;2; 96.37�
|
2732 |
+
EWW;TD;;;3;115.84
|
2733 |
+
EWW;TD;;;4;133.25
|
2734 |
+
EWW;TD;;;5;150.65
|
2735 |
+
EWW;TD;;;10;198.26
|
2736 |
+
EWW;TD;;;15;226.36
|
2737 |
+
EWW;TD;;;20;262.88
|
2738 |
+
EWW;TD;;;30;313.55
|
2739 |
+
EWW;TD;;;40;359.03
|
2740 |
+
EWW;TD;;;50;397.89
|
2741 |
+
EWW;TD;;;60;445.47
|
2742 |
+
EWW;TD;;;70;493.04
|
2743 |
+
EWW;TD;;;999999;6.46
|
2744 |
+
EWW;TG;;;2;107.34
|
2745 |
+
EWW;TG;;;3;126.43
|
2746 |
+
EWW;TG;;;4;143.11
|
2747 |
+
EWW;TG;;;5;159.8
|
2748 |
+
EWW;TG;;;10;236.05
|
2749 |
+
EWW;TG;;;15;261.31
|
2750 |
+
EWW;TG;;;20;297.68
|
2751 |
+
EWW;TG;;;30;354.91
|
2752 |
+
EWW;TG;;;40;414.4
|
2753 |
+
EWW;TG;;;50;462.4
|
2754 |
+
EWW;TG;;;60;520.5
|
2755 |
+
EWW;TG;;;70;578.58
|
2756 |
+
EWW;TG;;;999999;7.58
|
2757 |
+
EWW;TH;;;2; 87.86�
|
2758 |
+
EWW;TH;;;3;106.71
|
2759 |
+
EWW;TH;;;4;122.96
|
2760 |
+
EWW;TH;;;5;139.15
|
2761 |
+
EWW;TH;;;10;191
|
2762 |
+
EWW;TH;;;15;214.93
|
2763 |
+
EWW;TH;;;20;248.17
|
2764 |
+
EWW;TH;;;30;292.84
|
2765 |
+
EWW;TH;;;40;338.95
|
2766 |
+
EWW;TH;;;50;375.89
|
2767 |
+
EWW;TH;;;60;421.06
|
2768 |
+
EWW;TH;;;70;466.22
|
2769 |
+
EWW;TH;;;999999;6.13
|
2770 |
+
EWW;TJ;;;2;107.34
|
2771 |
+
EWW;TJ;;;3;126.43
|
2772 |
+
EWW;TJ;;;4;143.11
|
2773 |
+
EWW;TJ;;;5;159.8
|
2774 |
+
EWW;TJ;;;10;236.05
|
2775 |
+
EWW;TJ;;;15;261.31
|
2776 |
+
EWW;TJ;;;20;297.68
|
2777 |
+
EWW;TJ;;;30;354.91
|
2778 |
+
EWW;TJ;;;40;414.4
|
2779 |
+
EWW;TJ;;;50;462.4
|
2780 |
+
EWW;TJ;;;60;520.5
|
2781 |
+
EWW;TJ;;;70;578.58
|
2782 |
+
EWW;TJ;;;999999;7.58
|
2783 |
+
EWW;TL;;;2;107.34
|
2784 |
+
EWW;TL;;;3;126.43
|
2785 |
+
EWW;TL;;;4;143.11
|
2786 |
+
EWW;TL;;;5;159.8
|
2787 |
+
EWW;TL;;;10;236.05
|
2788 |
+
EWW;TL;;;15;261.31
|
2789 |
+
EWW;TL;;;20;297.68
|
2790 |
+
EWW;TL;;;30;354.91
|
2791 |
+
EWW;TL;;;40;414.4
|
2792 |
+
EWW;TL;;;50;462.4
|
2793 |
+
EWW;TL;;;60;520.5
|
2794 |
+
EWW;TL;;;70;578.58
|
2795 |
+
EWW;TL;;;999999;7.58
|
2796 |
+
EWW;TM;;;2;107.34
|
2797 |
+
EWW;TM;;;3;126.43
|
2798 |
+
EWW;TM;;;4;143.11
|
2799 |
+
EWW;TM;;;5;159.8
|
2800 |
+
EWW;TM;;;10;236.05
|
2801 |
+
EWW;TM;;;15;261.31
|
2802 |
+
EWW;TM;;;20;297.68
|
2803 |
+
EWW;TM;;;30;354.91
|
2804 |
+
EWW;TM;;;40;414.4
|
2805 |
+
EWW;TM;;;50;462.4
|
2806 |
+
EWW;TM;;;60;520.5
|
2807 |
+
EWW;TM;;;70;578.58
|
2808 |
+
EWW;TM;;;999999;7.58
|
2809 |
+
EWW;TN;;;2;107.34
|
2810 |
+
EWW;TN;;;3;126.43
|
2811 |
+
EWW;TN;;;4;143.11
|
2812 |
+
EWW;TN;;;5;159.8
|
2813 |
+
EWW;TN;;;10;236.05
|
2814 |
+
EWW;TN;;;15;261.31
|
2815 |
+
EWW;TN;;;20;297.68
|
2816 |
+
EWW;TN;;;30;354.91
|
2817 |
+
EWW;TN;;;40;414.4
|
2818 |
+
EWW;TN;;;50;462.4
|
2819 |
+
EWW;TN;;;60;520.5
|
2820 |
+
EWW;TN;;;70;578.58
|
2821 |
+
EWW;TN;;;999999;7.58
|
2822 |
+
EWW;TO;;;2;107.34
|
2823 |
+
EWW;TO;;;3;126.43
|
2824 |
+
EWW;TO;;;4;143.11
|
2825 |
+
EWW;TO;;;5;159.8
|
2826 |
+
EWW;TO;;;10;236.05
|
2827 |
+
EWW;TO;;;15;261.31
|
2828 |
+
EWW;TO;;;20;297.68
|
2829 |
+
EWW;TO;;;30;354.91
|
2830 |
+
EWW;TO;;;40;414.4
|
2831 |
+
EWW;TO;;;50;462.4
|
2832 |
+
EWW;TO;;;60;520.5
|
2833 |
+
EWW;TO;;;70;578.58
|
2834 |
+
EWW;TO;;;999999;7.58
|
2835 |
+
EWW;TR;;;2; 97.44�
|
2836 |
+
EWW;TR;;;3;117.3
|
2837 |
+
EWW;TR;;;4;133.67
|
2838 |
+
EWW;TR;;;5;150.01
|
2839 |
+
EWW;TR;;;10;201.2
|
2840 |
+
EWW;TR;;;15;217.98
|
2841 |
+
EWW;TR;;;20;238.84
|
2842 |
+
EWW;TR;;;30;280.64
|
2843 |
+
EWW;TR;;;40;321.71
|
2844 |
+
EWW;TR;;;50;349.26
|
2845 |
+
EWW;TR;;;60;394.5
|
2846 |
+
EWW;TR;;;70;431.7
|
2847 |
+
EWW;TR;;;999999;5.66
|
2848 |
+
EWW;TT;;;2;107.34
|
2849 |
+
EWW;TT;;;3;126.43
|
2850 |
+
EWW;TT;;;4;143.11
|
2851 |
+
EWW;TT;;;5;159.8
|
2852 |
+
EWW;TT;;;10;236.05
|
2853 |
+
EWW;TT;;;15;261.31
|
2854 |
+
EWW;TT;;;20;297.68
|
2855 |
+
EWW;TT;;;30;354.91
|
2856 |
+
EWW;TT;;;40;414.4
|
2857 |
+
EWW;TT;;;50;462.4
|
2858 |
+
EWW;TT;;;60;520.5
|
2859 |
+
EWW;TT;;;70;578.58
|
2860 |
+
EWW;TT;;;999999;7.58
|
2861 |
+
EWW;TV;;;2;107.34
|
2862 |
+
EWW;TV;;;3;126.43
|
2863 |
+
EWW;TV;;;4;143.11
|
2864 |
+
EWW;TV;;;5;159.8
|
2865 |
+
EWW;TV;;;10;236.05
|
2866 |
+
EWW;TV;;;15;261.31
|
2867 |
+
EWW;TV;;;20;297.68
|
2868 |
+
EWW;TV;;;30;354.91
|
2869 |
+
EWW;TV;;;40;414.4
|
2870 |
+
EWW;TV;;;50;462.4
|
2871 |
+
EWW;TV;;;60;520.5
|
2872 |
+
EWW;TV;;;70;578.58
|
2873 |
+
EWW;TV;;;999999;7.58
|
2874 |
+
EWW;TW;;;2; 87.86�
|
2875 |
+
EWW;TW;;;3;106.71
|
2876 |
+
EWW;TW;;;4;122.96
|
2877 |
+
EWW;TW;;;5;139.15
|
2878 |
+
EWW;TW;;;10;191
|
2879 |
+
EWW;TW;;;15;214.93
|
2880 |
+
EWW;TW;;;20;248.17
|
2881 |
+
EWW;TW;;;30;292.84
|
2882 |
+
EWW;TW;;;40;338.95
|
2883 |
+
EWW;TW;;;50;375.89
|
2884 |
+
EWW;TW;;;60;421.06
|
2885 |
+
EWW;TW;;;70;466.22
|
2886 |
+
EWW;TW;;;999999;6.13
|
2887 |
+
EWW;TZ;;;2;107.34
|
2888 |
+
EWW;TZ;;;3;126.43
|
2889 |
+
EWW;TZ;;;4;143.11
|
2890 |
+
EWW;TZ;;;5;159.8
|
2891 |
+
EWW;TZ;;;10;236.05
|
2892 |
+
EWW;TZ;;;15;261.31
|
2893 |
+
EWW;TZ;;;20;297.68
|
2894 |
+
EWW;TZ;;;30;354.91
|
2895 |
+
EWW;TZ;;;40;414.4
|
2896 |
+
EWW;TZ;;;50;462.4
|
2897 |
+
EWW;TZ;;;60;520.5
|
2898 |
+
EWW;TZ;;;70;578.58
|
2899 |
+
EWW;TZ;;;999999;7.58
|
2900 |
+
EWW;UA;;;2; 97.44�
|
2901 |
+
EWW;UA;;;3;117.3
|
2902 |
+
EWW;UA;;;4;133.67
|
2903 |
+
EWW;UA;;;5;150.01
|
2904 |
+
EWW;UA;;;10;201.2
|
2905 |
+
EWW;UA;;;15;217.98
|
2906 |
+
EWW;UA;;;20;238.84
|
2907 |
+
EWW;UA;;;30;280.64
|
2908 |
+
EWW;UA;;;40;321.71
|
2909 |
+
EWW;UA;;;50;349.26
|
2910 |
+
EWW;UA;;;60;394.5
|
2911 |
+
EWW;UA;;;70;431.7
|
2912 |
+
EWW;UA;;;999999;5.66
|
2913 |
+
EWW;UG;;;2;107.34
|
2914 |
+
EWW;UG;;;3;126.43
|
2915 |
+
EWW;UG;;;4;143.11
|
2916 |
+
EWW;UG;;;5;159.8
|
2917 |
+
EWW;UG;;;10;236.05
|
2918 |
+
EWW;UG;;;15;261.31
|
2919 |
+
EWW;UG;;;20;297.68
|
2920 |
+
EWW;UG;;;30;354.91
|
2921 |
+
EWW;UG;;;40;414.4
|
2922 |
+
EWW;UG;;;50;462.4
|
2923 |
+
EWW;UG;;;60;520.5
|
2924 |
+
EWW;UG;;;70;578.58
|
2925 |
+
EWW;UG;;;999999;7.58
|
2926 |
+
EWW;US;;;2; 72.71�
|
2927 |
+
EWW;US;;;3;93.6
|
2928 |
+
EWW;US;;;4;109.68
|
2929 |
+
EWW;US;;;5;125.78
|
2930 |
+
EWW;US;;;10;160.59
|
2931 |
+
EWW;US;;;15;170.64
|
2932 |
+
EWW;US;;;20;188.57
|
2933 |
+
EWW;US;;;30;220.51
|
2934 |
+
EWW;US;;;40;252.13
|
2935 |
+
EWW;US;;;50;276.88
|
2936 |
+
EWW;US;;;60;307.68
|
2937 |
+
EWW;US;;;70;338.53
|
2938 |
+
EWW;US;;;999999;4.45
|
2939 |
+
EWW;UY;;;2; 87.86�
|
2940 |
+
EWW;UY;;;3;106.71
|
2941 |
+
EWW;UY;;;4;122.96
|
2942 |
+
EWW;UY;;;5;139.15
|
2943 |
+
EWW;UY;;;10;191
|
2944 |
+
EWW;UY;;;15;214.93
|
2945 |
+
EWW;UY;;;20;248.17
|
2946 |
+
EWW;UY;;;30;292.84
|
2947 |
+
EWW;UY;;;40;338.95
|
2948 |
+
EWW;UY;;;50;375.89
|
2949 |
+
EWW;UY;;;60;421.06
|
2950 |
+
EWW;UY;;;70;466.22
|
2951 |
+
EWW;UY;;;999999;6.13
|
2952 |
+
EWW;UZ;;;2;107.34
|
2953 |
+
EWW;UZ;;;3;126.43
|
2954 |
+
EWW;UZ;;;4;143.11
|
2955 |
+
EWW;UZ;;;5;159.8
|
2956 |
+
EWW;UZ;;;10;236.05
|
2957 |
+
EWW;UZ;;;15;261.31
|
2958 |
+
EWW;UZ;;;20;297.68
|
2959 |
+
EWW;UZ;;;30;354.91
|
2960 |
+
EWW;UZ;;;40;414.4
|
2961 |
+
EWW;UZ;;;50;462.4
|
2962 |
+
EWW;UZ;;;60;520.5
|
2963 |
+
EWW;UZ;;;70;578.58
|
2964 |
+
EWW;UZ;;;999999;7.58
|
2965 |
+
EWW;VA;;;2; 89.59�
|
2966 |
+
EWW;VA;;;3;106.93
|
2967 |
+
EWW;VA;;;4;122.01
|
2968 |
+
EWW;VA;;;5;137.07
|
2969 |
+
EWW;VA;;;10;188.61
|
2970 |
+
EWW;VA;;;15;203.55
|
2971 |
+
EWW;VA;;;20;222.65
|
2972 |
+
EWW;VA;;;30;261.9
|
2973 |
+
EWW;VA;;;40;299.32
|
2974 |
+
EWW;VA;;;50;325.6
|
2975 |
+
EWW;VA;;;60;360.75
|
2976 |
+
EWW;VA;;;70;394.27
|
2977 |
+
EWW;VA;;;999999;5.18
|
2978 |
+
EWW;VC;;;2;107.34
|
2979 |
+
EWW;VC;;;3;126.43
|
2980 |
+
EWW;VC;;;4;143.11
|
2981 |
+
EWW;VC;;;5;159.8
|
2982 |
+
EWW;VC;;;10;236.05
|
2983 |
+
EWW;VC;;;15;261.31
|
2984 |
+
EWW;VC;;;20;297.68
|
2985 |
+
EWW;VC;;;30;354.91
|
2986 |
+
EWW;VC;;;40;414.4
|
2987 |
+
EWW;VC;;;50;462.4
|
2988 |
+
EWW;VC;;;60;520.5
|
2989 |
+
EWW;VC;;;70;578.58
|
2990 |
+
EWW;VC;;;999999;7.58
|
2991 |
+
EWW;VE;;;2; 87.86�
|
2992 |
+
EWW;VE;;;3;106.71
|
2993 |
+
EWW;VE;;;4;122.96
|
2994 |
+
EWW;VE;;;5;139.15
|
2995 |
+
EWW;VE;;;10;191
|
2996 |
+
EWW;VE;;;15;214.93
|
2997 |
+
EWW;VE;;;20;248.17
|
2998 |
+
EWW;VE;;;30;292.84
|
2999 |
+
EWW;VE;;;40;338.95
|
3000 |
+
EWW;VE;;;50;375.89
|
3001 |
+
EWW;VE;;;60;421.06
|
3002 |
+
EWW;VE;;;70;466.22
|
3003 |
+
EWW;VE;;;999999;6.13
|
3004 |
+
EWW;VG;;;2;107.34
|
3005 |
+
EWW;VG;;;3;126.43
|
3006 |
+
EWW;VG;;;4;143.11
|
3007 |
+
EWW;VG;;;5;159.8
|
3008 |
+
EWW;VG;;;10;236.05
|
3009 |
+
EWW;VG;;;15;261.31
|
3010 |
+
EWW;VG;;;20;297.68
|
3011 |
+
EWW;VG;;;30;354.91
|
3012 |
+
EWW;VG;;;40;414.4
|
3013 |
+
EWW;VG;;;50;462.4
|
3014 |
+
EWW;VG;;;60;520.5
|
3015 |
+
EWW;VG;;;70;578.58
|
3016 |
+
EWW;VG;;;999999;7.58
|
3017 |
+
EWW;VI;;;2;107.34
|
3018 |
+
EWW;VI;;;3;126.43
|
3019 |
+
EWW;VI;;;4;143.11
|
3020 |
+
EWW;VI;;;5;159.8
|
3021 |
+
EWW;VI;;;10;236.05
|
3022 |
+
EWW;VI;;;15;261.31
|
3023 |
+
EWW;VI;;;20;297.68
|
3024 |
+
EWW;VI;;;30;354.91
|
3025 |
+
EWW;VI;;;40;414.4
|
3026 |
+
EWW;VI;;;50;462.4
|
3027 |
+
EWW;VI;;;60;520.5
|
3028 |
+
EWW;VI;;;70;578.58
|
3029 |
+
EWW;VI;;;999999;7.58
|
3030 |
+
EWW;VN;;;2;107.34
|
3031 |
+
EWW;VN;;;3;126.43
|
3032 |
+
EWW;VN;;;4;143.11
|
3033 |
+
EWW;VN;;;5;159.8
|
3034 |
+
EWW;VN;;;10;236.05
|
3035 |
+
EWW;VN;;;15;261.31
|
3036 |
+
EWW;VN;;;20;297.68
|
3037 |
+
EWW;VN;;;30;354.91
|
3038 |
+
EWW;VN;;;40;414.4
|
3039 |
+
EWW;VN;;;50;462.4
|
3040 |
+
EWW;VN;;;60;520.5
|
3041 |
+
EWW;VN;;;70;578.58
|
3042 |
+
EWW;VN;;;999999;7.58
|
3043 |
+
EWW;VU;;;2;107.34
|
3044 |
+
EWW;VU;;;3;126.43
|
3045 |
+
EWW;VU;;;4;143.11
|
3046 |
+
EWW;VU;;;5;159.8
|
3047 |
+
EWW;VU;;;10;236.05
|
3048 |
+
EWW;VU;;;15;261.31
|
3049 |
+
EWW;VU;;;20;297.68
|
3050 |
+
EWW;VU;;;30;354.91
|
3051 |
+
EWW;VU;;;40;414.4
|
3052 |
+
EWW;VU;;;50;462.4
|
3053 |
+
EWW;VU;;;60;520.5
|
3054 |
+
EWW;VU;;;70;578.58
|
3055 |
+
EWW;VU;;;999999;7.58
|
3056 |
+
EWW;WF;;;2;107.34
|
3057 |
+
EWW;WF;;;3;126.43
|
3058 |
+
EWW;WF;;;4;143.11
|
3059 |
+
EWW;WF;;;5;159.8
|
3060 |
+
EWW;WF;;;10;236.05
|
3061 |
+
EWW;WF;;;15;261.31
|
3062 |
+
EWW;WF;;;20;297.68
|
3063 |
+
EWW;WF;;;30;354.91
|
3064 |
+
EWW;WF;;;40;414.4
|
3065 |
+
EWW;WF;;;50;462.4
|
3066 |
+
EWW;WF;;;60;520.5
|
3067 |
+
EWW;WF;;;70;578.58
|
3068 |
+
EWW;WF;;;999999;7.58
|
3069 |
+
EWW;WS;;;2;107.34
|
3070 |
+
EWW;WS;;;3;126.43
|
3071 |
+
EWW;WS;;;4;143.11
|
3072 |
+
EWW;WS;;;5;159.8
|
3073 |
+
EWW;WS;;;10;236.05
|
3074 |
+
EWW;WS;;;15;261.31
|
3075 |
+
EWW;WS;;;20;297.68
|
3076 |
+
EWW;WS;;;30;354.91
|
3077 |
+
EWW;WS;;;40;414.4
|
3078 |
+
EWW;WS;;;50;462.4
|
3079 |
+
EWW;WS;;;60;520.5
|
3080 |
+
EWW;WS;;;70;578.58
|
3081 |
+
EWW;WS;;;999999;7.58
|
3082 |
+
EWW;YE;;;2;107.34
|
3083 |
+
EWW;YE;;;3;126.43
|
3084 |
+
EWW;YE;;;4;143.11
|
3085 |
+
EWW;YE;;;5;159.8
|
3086 |
+
EWW;YE;;;10;236.05
|
3087 |
+
EWW;YE;;;15;261.31
|
3088 |
+
EWW;YE;;;20;297.68
|
3089 |
+
EWW;YE;;;30;354.91
|
3090 |
+
EWW;YE;;;40;414.4
|
3091 |
+
EWW;YE;;;50;462.4
|
3092 |
+
EWW;YE;;;60;520.5
|
3093 |
+
EWW;YE;;;70;578.58
|
3094 |
+
EWW;YE;;;999999;7.58
|
3095 |
+
EWW;ZA;;;2;107.34
|
3096 |
+
EWW;ZA;;;3;126.43
|
3097 |
+
EWW;ZA;;;4;143.11
|
3098 |
+
EWW;ZA;;;5;159.8
|
3099 |
+
EWW;ZA;;;10;236.05
|
3100 |
+
EWW;ZA;;;15;261.31
|
3101 |
+
EWW;ZA;;;20;297.68
|
3102 |
+
EWW;ZA;;;30;354.91
|
3103 |
+
EWW;ZA;;;40;414.4
|
3104 |
+
EWW;ZA;;;50;462.4
|
3105 |
+
EWW;ZA;;;60;520.5
|
3106 |
+
EWW;ZA;;;70;578.58
|
3107 |
+
EWW;ZA;;;999999;7.58
|
3108 |
+
EWW;ZM;;;2; 96.37�
|
3109 |
+
EWW;ZM;;;3;115.84
|
3110 |
+
EWW;ZM;;;4;133.25
|
3111 |
+
EWW;ZM;;;5;150.65
|
3112 |
+
EWW;ZM;;;10;198.26
|
3113 |
+
EWW;ZM;;;15;226.36
|
3114 |
+
EWW;ZM;;;20;262.88
|
3115 |
+
EWW;ZM;;;30;313.55
|
3116 |
+
EWW;ZM;;;40;359.03
|
3117 |
+
EWW;ZM;;;50;397.89
|
3118 |
+
EWW;ZM;;;60;445.47
|
3119 |
+
EWW;ZM;;;70;493.04
|
3120 |
+
EWW;ZM;;;999999;6.46
|
3121 |
+
EWW;ZW;;;2;107.34
|
3122 |
+
EWW;ZW;;;3;126.43
|
3123 |
+
EWW;ZW;;;4;143.11
|
3124 |
+
EWW;ZW;;;5;159.8
|
3125 |
+
EWW;ZW;;;10;236.05
|
3126 |
+
EWW;ZW;;;15;261.31
|
3127 |
+
EWW;ZW;;;20;297.68
|
3128 |
+
EWW;ZW;;;30;354.91
|
3129 |
+
EWW;ZW;;;40;414.4
|
3130 |
+
EWW;ZW;;;50;462.4
|
3131 |
+
EWW;ZW;;;60;520.5
|
3132 |
+
EWW;ZW;;;70;578.58
|
3133 |
+
EWW;ZW;;;999999;7.58
|
app/code/local/ENVIALIA/ENVIALIAShipping/etc/config.xml
ADDED
@@ -0,0 +1,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<config>
|
3 |
+
<modules>
|
4 |
+
<ENVIALIA_ENVIALIAShipping>
|
5 |
+
<version>0.1.0</version>
|
6 |
+
</ENVIALIA_ENVIALIAShipping>
|
7 |
+
</modules>
|
8 |
+
|
9 |
+
<global>
|
10 |
+
<models>
|
11 |
+
<ENVIALIAShipping>
|
12 |
+
<class>ENVIALIA_ENVIALIAShipping_Model</class>
|
13 |
+
</ENVIALIAShipping>
|
14 |
+
|
15 |
+
<sales>
|
16 |
+
<rewrite>
|
17 |
+
<order_shipment>ENVIALIA_ENVIALIAShipping_Model_ENVIALIA_Shipment</order_shipment>
|
18 |
+
<order_shipment_track>ENVIALIA_ENVIALIAShipping_Model_ENVIALIA_Shipment_Track</order_shipment_track>
|
19 |
+
</rewrite>
|
20 |
+
</sales>
|
21 |
+
</models>
|
22 |
+
|
23 |
+
<resources>
|
24 |
+
<ENVIALIAShipping_setup>
|
25 |
+
<setup>
|
26 |
+
<module>ENVIALIA_ENVIALIAShipping</module>
|
27 |
+
</setup>
|
28 |
+
<connection>
|
29 |
+
<use>core_setup</use>
|
30 |
+
</connection>
|
31 |
+
</ENVIALIAShipping_setup>
|
32 |
+
</resources>
|
33 |
+
|
34 |
+
<blocks>
|
35 |
+
<adminhtml>
|
36 |
+
<rewrite>
|
37 |
+
<sales_order_shipment_view>ENVIALIA_ENVIALIAShipping_Adminhtml_Block_Sales_Order_Shipment_View</sales_order_shipment_view>
|
38 |
+
</rewrite>
|
39 |
+
</adminhtml>
|
40 |
+
</blocks>
|
41 |
+
</global>
|
42 |
+
|
43 |
+
<default>
|
44 |
+
<carriers>
|
45 |
+
<ENVIALIAShipping>
|
46 |
+
<active>1</active>
|
47 |
+
<title>ENVIALIA Transporte Urgente</title>
|
48 |
+
<ENVIALIA_CODIGO_AGENCIA>000000</ENVIALIA_CODIGO_AGENCIA>
|
49 |
+
<ENVIALIA_CODIGO_CLIENTE>000</ENVIALIA_CODIGO_CLIENTE>
|
50 |
+
<ENVIALIA_PASSWORD_CLIENTE>000000</ENVIALIA_PASSWORD_CLIENTE>
|
51 |
+
<ENVIALIA_URL>http://</ENVIALIA_URL>
|
52 |
+
|
53 |
+
<ENVIALIA_HABILITAR_ENVIO_GRATUITO>0</ENVIALIA_HABILITAR_ENVIO_GRATUITO>
|
54 |
+
<ENVIALIA_SERVICIO_ENVIO_GRATUITO>0</ENVIALIA_SERVICIO_ENVIO_GRATUITO>
|
55 |
+
<ENVIALIA_IMPORTE_MINIMO_ENVIO_GRATUITO>0</ENVIALIA_IMPORTE_MINIMO_ENVIO_GRATUITO>
|
56 |
+
<ENVIALIA_HABILITAR_ENVIO_GRATUITO_INTERNACIONAL>0</ENVIALIA_HABILITAR_ENVIO_GRATUITO_INTERNACIONAL>
|
57 |
+
<ENVIALIA_SERVICIO_ENVIO_GRATUITO_INTERNACIONAL>0</ENVIALIA_SERVICIO_ENVIO_GRATUITO_INTERNACIONAL>
|
58 |
+
<ENVIALIA_IMPORTE_MINIMO_ENVIO_GRATUITO_INTERNACIONAL>0</ENVIALIA_IMPORTE_MINIMO_ENVIO_GRATUITO_INTERNACIONAL>
|
59 |
+
|
60 |
+
<ENVIALIA_ECOMM_24H>0</ENVIALIA_ECOMM_24H>
|
61 |
+
<ENVIALIA_ECOMM_72H>0</ENVIALIA_ECOMM_72H>
|
62 |
+
<ENVIALIA_ECOMM_EUROPE_EXPRESS>0</ENVIALIA_ECOMM_EUROPE_EXPRESS>
|
63 |
+
<ENVIALIA_ECOMM_WORLDWIDE>0</ENVIALIA_ECOMM_WORLDWIDE>
|
64 |
+
<ENVIALIA_IMPUESTO>0.18</ENVIALIA_IMPUESTO>
|
65 |
+
<ENVIALIA_COSTE_FIJO_ENVIO>0</ENVIALIA_COSTE_FIJO_ENVIO>
|
66 |
+
<ENVIALIA_MANIPULACION>0</ENVIALIA_MANIPULACION>
|
67 |
+
<ENVIALIA_COSTE_MANIPULACION>0</ENVIALIA_COSTE_MANIPULACION>
|
68 |
+
|
69 |
+
<specificerrmsg>ENVIALIA: no se puede usar el módulo de envio.</specificerrmsg>
|
70 |
+
<model>ENVIALIAShipping/ENVIALIA_ENVIALIAShipping</model>
|
71 |
+
</ENVIALIAShipping>
|
72 |
+
</carriers>
|
73 |
+
</default>
|
74 |
+
|
75 |
+
|
76 |
+
</config>
|
app/code/local/ENVIALIA/ENVIALIAShipping/etc/config.xml~
ADDED
@@ -0,0 +1,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<config>
|
3 |
+
<modules>
|
4 |
+
<ENVIALIA_ENVIALIAShipping>
|
5 |
+
<version>0.1.0</version>
|
6 |
+
</ENVIALIA_ENVIALIAShipping>
|
7 |
+
</modules>
|
8 |
+
|
9 |
+
<global>
|
10 |
+
<models>
|
11 |
+
<ENVIALIAShipping>
|
12 |
+
<class>ENVIALIA_ENVIALIAShipping_Model</class>
|
13 |
+
</ENVIALIAShipping>
|
14 |
+
|
15 |
+
<sales>
|
16 |
+
<rewrite>
|
17 |
+
<order_shipment>ENVIALIA_ENVIALIAShipping_Model_ENVIALIA_Shipment</order_shipment>
|
18 |
+
<order_shipment_track>ENVIALIA_ENVIALIAShipping_Model_ENVIALIA_Shipment_Track</order_shipment_track>
|
19 |
+
</rewrite>
|
20 |
+
</sales>
|
21 |
+
</models>
|
22 |
+
|
23 |
+
<resources>
|
24 |
+
<ENVIALIAShipping_setup>
|
25 |
+
<setup>
|
26 |
+
<module>ENVIALIA_ENVIALIAShipping</module>
|
27 |
+
</setup>
|
28 |
+
<connection>
|
29 |
+
<use>core_setup</use>
|
30 |
+
</connection>
|
31 |
+
</ENVIALIAShipping_setup>
|
32 |
+
</resources>
|
33 |
+
|
34 |
+
<blocks>
|
35 |
+
<adminhtml>
|
36 |
+
<rewrite>
|
37 |
+
<sales_order_shipment_view>ENVIALIA_ENVIALIAShipping_Adminhtml_Block_Sales_Order_Shipment_View</sales_order_shipment_view>
|
38 |
+
</rewrite>
|
39 |
+
</adminhtml>
|
40 |
+
</blocks>
|
41 |
+
</global>
|
42 |
+
|
43 |
+
<default>
|
44 |
+
<carriers>
|
45 |
+
<ENVIALIAShipping>
|
46 |
+
<active>1</active>
|
47 |
+
<title>ENVIALIA Transporte Urgente</title>
|
48 |
+
<ENVIALIA_CODIGO_AGENCIA>002803</ENVIALIA_CODIGO_AGENCIA>
|
49 |
+
<ENVIALIA_CODIGO_CLIENTE>101</ENVIALIA_CODIGO_CLIENTE>
|
50 |
+
<ENVIALIA_PASSWORD_CLIENTE>Qaz796</ENVIALIA_PASSWORD_CLIENTE>
|
51 |
+
<ENVIALIA_URL>http://217.116.8.183:9081</ENVIALIA_URL>
|
52 |
+
|
53 |
+
<ENVIALIA_HABILITAR_ENVIO_GRATUITO>0</ENVIALIA_HABILITAR_ENVIO_GRATUITO>
|
54 |
+
<ENVIALIA_SERVICIO_ENVIO_GRATUITO>0</ENVIALIA_SERVICIO_ENVIO_GRATUITO>
|
55 |
+
<ENVIALIA_IMPORTE_MINIMO_ENVIO_GRATUITO>0</ENVIALIA_IMPORTE_MINIMO_ENVIO_GRATUITO>
|
56 |
+
<ENVIALIA_HABILITAR_ENVIO_GRATUITO_INTERNACIONAL>0</ENVIALIA_HABILITAR_ENVIO_GRATUITO_INTERNACIONAL>
|
57 |
+
<ENVIALIA_SERVICIO_ENVIO_GRATUITO_INTERNACIONAL>0</ENVIALIA_SERVICIO_ENVIO_GRATUITO_INTERNACIONAL>
|
58 |
+
<ENVIALIA_IMPORTE_MINIMO_ENVIO_GRATUITO_INTERNACIONAL>0</ENVIALIA_IMPORTE_MINIMO_ENVIO_GRATUITO_INTERNACIONAL>
|
59 |
+
|
60 |
+
<ENVIALIA_ECOMM_24H>0</ENVIALIA_ECOMM_24H>
|
61 |
+
<ENVIALIA_ECOMM_72H>0</ENVIALIA_ECOMM_72H>
|
62 |
+
<ENVIALIA_ECOMM_EUROPE_EXPRESS>0</ENVIALIA_ECOMM_EUROPE_EXPRESS>
|
63 |
+
<ENVIALIA_ECOMM_WORLDWIDE>0</ENVIALIA_ECOMM_WORLDWIDE>
|
64 |
+
<ENVIALIA_IMPUESTO>0.18</ENVIALIA_IMPUESTO>
|
65 |
+
<ENVIALIA_COSTE_FIJO_ENVIO>0</ENVIALIA_COSTE_FIJO_ENVIO>
|
66 |
+
<ENVIALIA_MANIPULACION>0</ENVIALIA_MANIPULACION>
|
67 |
+
<ENVIALIA_COSTE_MANIPULACION>0</ENVIALIA_COSTE_MANIPULACION>
|
68 |
+
|
69 |
+
<specificerrmsg>ENVIALIA: no se puede usar el módulo de envio.</specificerrmsg>
|
70 |
+
<model>ENVIALIAShipping/ENVIALIA_ENVIALIAShipping</model>
|
71 |
+
</ENVIALIAShipping>
|
72 |
+
</carriers>
|
73 |
+
</default>
|
74 |
+
|
75 |
+
|
76 |
+
</config>
|
app/code/local/ENVIALIA/ENVIALIAShipping/etc/system.xml
ADDED
@@ -0,0 +1,268 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<config>
|
3 |
+
<sections>
|
4 |
+
<carriers>
|
5 |
+
<groups>
|
6 |
+
<ENVIALIAShipping translate="label" module="shipping">
|
7 |
+
<label>ENVIALIA</label>
|
8 |
+
<frontend_type>text</frontend_type>
|
9 |
+
<sort_order>1</sort_order>
|
10 |
+
<show_in_default>1</show_in_default>
|
11 |
+
<show_in_website>1</show_in_website>
|
12 |
+
<show_in_store>1</show_in_store>
|
13 |
+
<fields>
|
14 |
+
|
15 |
+
<active translate="label">
|
16 |
+
<label>Enabled</label>
|
17 |
+
<frontend_type>select</frontend_type>
|
18 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
19 |
+
<sort_order>2</sort_order>
|
20 |
+
<show_in_default>1</show_in_default>
|
21 |
+
<show_in_website>1</show_in_website>
|
22 |
+
<show_in_store>1</show_in_store>
|
23 |
+
</active>
|
24 |
+
|
25 |
+
<title translate="label">
|
26 |
+
<label>Title</label>
|
27 |
+
<frontend_type>text</frontend_type>
|
28 |
+
<sort_order>3</sort_order>
|
29 |
+
<show_in_default>1</show_in_default>
|
30 |
+
<show_in_website>1</show_in_website>
|
31 |
+
<show_in_store>1</show_in_store>
|
32 |
+
</title>
|
33 |
+
|
34 |
+
<ENVIALIA_CODIGO_AGENCIA translate="label">
|
35 |
+
<label>ID Centro de servicio ENVIALIA</label>
|
36 |
+
<comment>Código de centro de servicio ENVIALIA</comment>
|
37 |
+
<frontend_type>text</frontend_type>
|
38 |
+
<sort_order>10</sort_order>
|
39 |
+
<show_in_default>1</show_in_default>
|
40 |
+
<show_in_website>1</show_in_website>
|
41 |
+
<show_in_store>1</show_in_store>
|
42 |
+
</ENVIALIA_CODIGO_AGENCIA>
|
43 |
+
|
44 |
+
<ENVIALIA_CODIGO_CLIENTE translate="label">
|
45 |
+
<label>ID Cuenta ENVIALIA</label>
|
46 |
+
<comment>Código de cuenta ENVIALIA</comment>
|
47 |
+
<frontend_type>text</frontend_type>
|
48 |
+
<sort_order>11</sort_order>
|
49 |
+
<show_in_default>1</show_in_default>
|
50 |
+
<show_in_website>1</show_in_website>
|
51 |
+
<show_in_store>1</show_in_store>
|
52 |
+
</ENVIALIA_CODIGO_CLIENTE>
|
53 |
+
|
54 |
+
<ENVIALIA_PASSWORD_CLIENTE translate="label">
|
55 |
+
<label>Password ENVIALIA</label>
|
56 |
+
<comment>Password de cuenta ENVIALIA</comment>
|
57 |
+
<frontend_type>text</frontend_type>
|
58 |
+
<sort_order>12</sort_order>
|
59 |
+
<show_in_default>1</show_in_default>
|
60 |
+
<show_in_website>1</show_in_website>
|
61 |
+
<show_in_store>1</show_in_store>
|
62 |
+
</ENVIALIA_PASSWORD_CLIENTE>
|
63 |
+
|
64 |
+
<ENVIALIA_URL translate="label">
|
65 |
+
<label>Servidor ENVIALIA</label>
|
66 |
+
<comment>Servidor API ENVIALIA, solicítalo en tu centro de servicio ENVIALIA . 902400909</comment>
|
67 |
+
<frontend_type>text</frontend_type>
|
68 |
+
<sort_order>13</sort_order>
|
69 |
+
<show_in_default>1</show_in_default>
|
70 |
+
<show_in_website>1</show_in_website>
|
71 |
+
<show_in_store>1</show_in_store>
|
72 |
+
</ENVIALIA_URL>
|
73 |
+
|
74 |
+
<ENVIALIA_HABILITAR_ENVIO_GRATUITO translate="label">
|
75 |
+
<label>HABILITAR ENVIO GRATUITO PARA ESPAÑA-PORTUGAL-ANDORRA</label>
|
76 |
+
<comment>Habilita el envío gratuito a los siguientes paises: ES-PT-AD</comment>
|
77 |
+
<frontend_type>select</frontend_type>
|
78 |
+
<source_model>adminhtml/system_config_source_enabledisable</source_model>
|
79 |
+
<sort_order>20</sort_order>
|
80 |
+
<show_in_default>1</show_in_default>
|
81 |
+
<show_in_website>1</show_in_website>
|
82 |
+
<show_in_store>0</show_in_store>
|
83 |
+
</ENVIALIA_HABILITAR_ENVIO_GRATUITO>
|
84 |
+
|
85 |
+
<ENVIALIA_SERVICIO_ENVIO_GRATUITO translate="label">
|
86 |
+
<label>SERVICIO PARA ENVIO GRATUITO PARA ESPAÑA-PORTUGAL-ANDORRA</label>
|
87 |
+
<comment>Servicio para envío gratuito a ES-PT-AD</comment>
|
88 |
+
<frontend_type>select</frontend_type>
|
89 |
+
<frontend_class>free-method</frontend_class>
|
90 |
+
<source_model>ENVIALIAShipping/ENVIALIA_Source_Gratuito</source_model>
|
91 |
+
<sort_order>21</sort_order>
|
92 |
+
<show_in_default>1</show_in_default>
|
93 |
+
<show_in_website>1</show_in_website>
|
94 |
+
<show_in_store>0</show_in_store>
|
95 |
+
</ENVIALIA_SERVICIO_ENVIO_GRATUITO>
|
96 |
+
|
97 |
+
<ENVIALIA_IMPORTE_MINIMO_ENVIO_GRATUITO translate="label">
|
98 |
+
<label>Importe mínimo envío gratuito ES-PT-AD</label>
|
99 |
+
<comment>Importe mínimo de pedido para envío gratuito a ES-PT-AD</comment>
|
100 |
+
<frontend_type>text</frontend_type>
|
101 |
+
<sort_order>22</sort_order>
|
102 |
+
<show_in_default>1</show_in_default>
|
103 |
+
<show_in_website>1</show_in_website>
|
104 |
+
<show_in_store>1</show_in_store>
|
105 |
+
</ENVIALIA_IMPORTE_MINIMO_ENVIO_GRATUITO>
|
106 |
+
|
107 |
+
<ENVIALIA_HABILITAR_ENVIO_GRATUITO_INTERNACIONAL translate="label">
|
108 |
+
<label>Habilitar envío gratuito INTERNACIONAL</label>
|
109 |
+
<comment>Habilita el envío gratuito INTERNACIONAL</comment>
|
110 |
+
<frontend_type>select</frontend_type>
|
111 |
+
<source_model>adminhtml/system_config_source_enabledisable</source_model>
|
112 |
+
<sort_order>23</sort_order>
|
113 |
+
<show_in_default>1</show_in_default>
|
114 |
+
<show_in_website>1</show_in_website>
|
115 |
+
<show_in_store>0</show_in_store>
|
116 |
+
</ENVIALIA_HABILITAR_ENVIO_GRATUITO_INTERNACIONAL>
|
117 |
+
|
118 |
+
<ENVIALIA_SERVICIO_ENVIO_GRATUITO_INTERNACIONAL translate="label">
|
119 |
+
<label>Servicio para envío gratuito INTERNACIONAL</label>
|
120 |
+
<comment>Servicio para envío gratuito INTERNACIONAL</comment>
|
121 |
+
<frontend_type>select</frontend_type>
|
122 |
+
<frontend_class>free-method</frontend_class>
|
123 |
+
<source_model>ENVIALIAShipping/ENVIALIA_Source_GratuitoInternacional</source_model>
|
124 |
+
<sort_order>24</sort_order>
|
125 |
+
<show_in_default>1</show_in_default>
|
126 |
+
<show_in_website>1</show_in_website>
|
127 |
+
<show_in_store>0</show_in_store>
|
128 |
+
</ENVIALIA_SERVICIO_ENVIO_GRATUITO_INTERNACIONAL>
|
129 |
+
|
130 |
+
<ENVIALIA_IMPORTE_MINIMO_ENVIO_GRATUITO_INTERNACIONAL translate="label">
|
131 |
+
<label>Importe mínimo envío gratuito INTERNACIONAL</label>
|
132 |
+
<comment>Importe mínimo de pedido para envío gratuito INTERNACIONAL</comment>
|
133 |
+
<frontend_type>text</frontend_type>
|
134 |
+
<sort_order>25</sort_order>
|
135 |
+
<show_in_default>1</show_in_default>
|
136 |
+
<show_in_website>1</show_in_website>
|
137 |
+
<show_in_store>1</show_in_store>
|
138 |
+
</ENVIALIA_IMPORTE_MINIMO_ENVIO_GRATUITO_INTERNACIONAL>
|
139 |
+
|
140 |
+
<ENVIALIA_ECOMM_24H translate="label">
|
141 |
+
<label>SERVICIO E-COMM 24H</label>
|
142 |
+
<comment>Habilita como método de envío este código de servicio. Este método solo está disponible para destinos ESPAÑA-PORTUGAL-ANDORRA</comment>
|
143 |
+
<frontend_type>select</frontend_type>
|
144 |
+
<source_model>adminhtml/system_config_source_enabledisable</source_model>
|
145 |
+
<sort_order>30</sort_order>
|
146 |
+
<show_in_default>1</show_in_default>
|
147 |
+
<show_in_website>1</show_in_website>
|
148 |
+
<show_in_store>0</show_in_store>
|
149 |
+
</ENVIALIA_ECOMM_24H>
|
150 |
+
|
151 |
+
<ENVIALIA_ECOMM_72H translate="label">
|
152 |
+
<label>SERVICIO E-COMM 72H</label>
|
153 |
+
<comment>Habilita como método de envío este código de servicio. Este método solo está disponible para destinos ESPAÑA-PORTUGAL-ANDORRA</comment>
|
154 |
+
<frontend_type>select</frontend_type>
|
155 |
+
<source_model>adminhtml/system_config_source_enabledisable</source_model>
|
156 |
+
<sort_order>31</sort_order>
|
157 |
+
<show_in_default>1</show_in_default>
|
158 |
+
<show_in_website>1</show_in_website>
|
159 |
+
<show_in_store>0</show_in_store>
|
160 |
+
</ENVIALIA_ECOMM_72H>
|
161 |
+
|
162 |
+
<ENVIALIA_ECOMM_EUROPE_EXPRESS translate="label">
|
163 |
+
<label>SERVICIO E-COMM EUROPE EXPRESS</label>
|
164 |
+
<comment>Habilita como método de envío este código de servicio. Este servicio está disponible SOLO PARA LOS PAISES de destino DE-AT-BE-BG-CC-DK-SK-SI-EE-FI-FR-GR-GG-NL-HU-IE-IT-LV-LI-LT-LU-MC-NO-PL-GB-CZ-RO-SM-SE-CH-VA</comment>
|
165 |
+
<frontend_type>select</frontend_type>
|
166 |
+
<source_model>adminhtml/system_config_source_enabledisable</source_model>
|
167 |
+
<sort_order>32</sort_order>
|
168 |
+
<show_in_default>1</show_in_default>
|
169 |
+
<show_in_website>1</show_in_website>
|
170 |
+
<show_in_store>0</show_in_store>
|
171 |
+
</ENVIALIA_ECOMM_EUROPE_EXPRESS>
|
172 |
+
|
173 |
+
<ENVIALIA_ECOMM_WORLDWIDE translate="label">
|
174 |
+
<label>SERVICIO E-COMM WORLDWIDE</label>
|
175 |
+
<comment>Habilita como método de envío este código de servicio. Este método está disponible para TODOS LOS PAISES de destino salvo ESPAÑA-PORTUGAL-ANDORRA</comment>
|
176 |
+
<frontend_type>select</frontend_type>
|
177 |
+
<source_model>adminhtml/system_config_source_enabledisable</source_model>
|
178 |
+
<sort_order>33</sort_order>
|
179 |
+
<show_in_default>1</show_in_default>
|
180 |
+
<show_in_website>1</show_in_website>
|
181 |
+
<show_in_store>0</show_in_store>
|
182 |
+
</ENVIALIA_ECOMM_WORLDWIDE>
|
183 |
+
|
184 |
+
<ENVIALIA_IMPUESTO translate="label">
|
185 |
+
<label>Impuesto</label>
|
186 |
+
<comment>Impuesto agregado. Modo de uso, si quiere poner un 18% deberá escribir 0.18</comment>
|
187 |
+
<frontend_type>text</frontend_type>
|
188 |
+
<sort_order>40</sort_order>
|
189 |
+
<show_in_default>1</show_in_default>
|
190 |
+
<show_in_website>1</show_in_website>
|
191 |
+
<show_in_store>1</show_in_store>
|
192 |
+
</ENVIALIA_IMPUESTO>
|
193 |
+
|
194 |
+
<ENVIALIA_COSTE_FIJO_ENVIO translate="label">
|
195 |
+
<label>Coste fijo de envío</label>
|
196 |
+
<comment>Precio fijo por envío</comment>
|
197 |
+
<frontend_type>text</frontend_type>
|
198 |
+
<sort_order>41</sort_order>
|
199 |
+
<show_in_default>1</show_in_default>
|
200 |
+
<show_in_website>1</show_in_website>
|
201 |
+
<show_in_store>1</show_in_store>
|
202 |
+
</ENVIALIA_COSTE_FIJO_ENVIO>
|
203 |
+
|
204 |
+
<ENVIALIA_MANIPULACION translate="label">
|
205 |
+
<label>Manipulación</label>
|
206 |
+
<comment>Sistema de cálculo para el cargo de manipulación</comment>
|
207 |
+
<frontend_type>select</frontend_type>
|
208 |
+
<frontend_class>free-method</frontend_class>
|
209 |
+
<source_model>ENVIALIAShipping/ENVIALIA_Source_Manipulacion</source_model>
|
210 |
+
<sort_order>42</sort_order>
|
211 |
+
<show_in_default>1</show_in_default>
|
212 |
+
<show_in_website>1</show_in_website>
|
213 |
+
<show_in_store>1</show_in_store>
|
214 |
+
</ENVIALIA_MANIPULACION>
|
215 |
+
|
216 |
+
<ENVIALIA_COSTE_MANIPULACION translate="label">
|
217 |
+
<label>Margen sobre coste de envío</label>
|
218 |
+
<comment>Margen de incremento sobre tarifa de coste de envío</comment>
|
219 |
+
<frontend_type>text</frontend_type>
|
220 |
+
<sort_order>43</sort_order>
|
221 |
+
<show_in_default>1</show_in_default>
|
222 |
+
<show_in_website>1</show_in_website>
|
223 |
+
<show_in_store>1</show_in_store>
|
224 |
+
</ENVIALIA_COSTE_MANIPULACION>
|
225 |
+
|
226 |
+
<ENVIALIA_SOBREESCRIBIR_CODIGO_POSTAL translate="label">
|
227 |
+
<label>Sobrescribir Código Postal Origen</label>
|
228 |
+
<comment>Escriba el Código Postal para sobreescribir el existente</comment>
|
229 |
+
<frontend_type>text</frontend_type>
|
230 |
+
<sort_order>50</sort_order>
|
231 |
+
<show_in_default>1</show_in_default>
|
232 |
+
<show_in_website>1</show_in_website>
|
233 |
+
<show_in_store>1</show_in_store>
|
234 |
+
</ENVIALIA_SOBREESCRIBIR_CODIGO_POSTAL>
|
235 |
+
|
236 |
+
<ENVIALIA_RUTA_TARIFAS translate="label">
|
237 |
+
<label>Ruta o path al archivo de tárifas: TU_SITIO_MAGENTO/app/code/local/ENVIALIA/ENVIALIAShipping/</label>
|
238 |
+
<comment>Archivo de tarifas. Usted puede editar el archivo para personalizar las tarifas de los servicios de ENVIALIA. AVISO IMPORTANTE se deberá respetar el formato del archivo .csv, sin cambiar el nombre del mismo</comment>
|
239 |
+
<frontend_type>label</frontend_type>
|
240 |
+
<sort_order>100</sort_order>
|
241 |
+
<show_in_default>1</show_in_default>
|
242 |
+
<show_in_website>1</show_in_website>
|
243 |
+
<show_in_store>1</show_in_store>
|
244 |
+
</ENVIALIA_RUTA_TARIFAS>
|
245 |
+
|
246 |
+
<showmethod translate="label">
|
247 |
+
<label>Show method if not applicable</label>
|
248 |
+
<frontend_type>select</frontend_type>
|
249 |
+
<sort_order>200</sort_order>
|
250 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
251 |
+
<show_in_default>1</show_in_default>
|
252 |
+
<show_in_website>1</show_in_website>
|
253 |
+
<show_in_store>1</show_in_store>
|
254 |
+
</showmethod>
|
255 |
+
<specificerrmsg translate="label">
|
256 |
+
<label>Displayed Error Message</label>
|
257 |
+
<frontend_type>textarea</frontend_type>
|
258 |
+
<sort_order>210</sort_order>
|
259 |
+
<show_in_default>1</show_in_default>
|
260 |
+
<show_in_website>1</show_in_website>
|
261 |
+
<show_in_store>1</show_in_store>
|
262 |
+
</specificerrmsg>
|
263 |
+
</fields>
|
264 |
+
</ENVIALIAShipping>
|
265 |
+
</groups>
|
266 |
+
</carriers>
|
267 |
+
</sections>
|
268 |
+
</config>
|
app/etc/modules/ENVIALIA_ENVIALIAShipping.xml
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<config>
|
3 |
+
<modules>
|
4 |
+
<ENVIALIA_ENVIALIAShipping>
|
5 |
+
<active>true</active>
|
6 |
+
<codePool>local</codePool>
|
7 |
+
</ENVIALIA_ENVIALIAShipping>
|
8 |
+
</modules>
|
9 |
+
</config>
|
package.xml
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<package>
|
3 |
+
<name>ENVIALIA_Shipping</name>
|
4 |
+
<version>1.0.0</version>
|
5 |
+
<stability>stable</stability>
|
6 |
+
<license>GPL</license>
|
7 |
+
<channel>community</channel>
|
8 |
+
<extends/>
|
9 |
+
<summary>Extensión para integrar el sistema de envíos ENVIALIA Transporte urgente.</summary>
|
10 |
+
<description>Extensión para integrar el sistema de envíos ENVIALIA Transporte urgente.
|
11 |
+

|
12 |
+
Impresión de etiquetas de envío.
|
13 |
+

|
14 |
+
Tracking de envíos VENDEDOR/CLIENTE.
|
15 |
+

|
16 |
+
Elección de tipos de servicio.
|
17 |
+

|
18 |
+
Tarificacion por tipos de servicio, paises y codigos postales.
|
19 |
+

|
20 |
+
http://www.envialia-urgente.com</description>
|
21 |
+
<notes>First release version.</notes>
|
22 |
+
<authors><author><name>ENVIALIA</name><user>auto-converted</user><email>sistemas@envialia-urgente.com</email></author></authors>
|
23 |
+
<date>2012-02-16</date>
|
24 |
+
<time>09:09:28</time>
|
25 |
+
<contents><target name="magelocal"><dir name="ENVIALIA"><dir name="ENVIALIAShipping"><dir name="Adminhtml"><dir name="Block"><dir name="Sales"><dir name="Order"><dir name="Shipment"><file name="View.php" hash="01a16e86766fc2a1df5600c350b82076"/></dir></dir></dir></dir></dir><dir name="Model"><dir name="ENVIALIA"><dir name="Shipment"><file name="Track.php" hash="54f9dc86b8418f4f6e0f5e8706dbd058"/></dir><dir name="Source"><file name="Gratuito.php" hash="2d0b70732af5579cc372f968ec0d723f"/><file name="GratuitoInternacional.php" hash="107b0042175127e9092a6c2e1fc31e2e"/><file name="Manipulacion.php" hash="39dc269d4786ed3e24ac20780f45d09c"/></dir><file name="ENVIALIAShipping.php" hash="6d0556187208ee4ddf37d6bb870d5871"/><file name="Shipment.php" hash="4a727883e248e984072c8ea97d431ec0"/></dir></dir><dir name="etc"><file name="config.xml" hash="6b686b4f05356e8b2b68b9627809a059"/><file name="config.xml~" hash="7a37f2ef2948e67c6729e83cdf89c5f9"/><file name="system.xml" hash="56df28da2954b3df20dea86a6b1cef7b"/></dir><file name="envialia.tarifas.csv" hash="e70f1edb21af83d077d1f7bae38c269a"/></dir></dir></target><target name="mageetc"><dir name="modules"><file name="ENVIALIA_ENVIALIAShipping.xml" hash="4cf275f3bb1283b54018f31e158a6382"/></dir></target></contents>
|
26 |
+
<compatible/>
|
27 |
+
<dependencies/>
|
28 |
+
</package>
|