diff --git a/includes/armory_loader.php b/includes/armory_loader.php
index ab60c4ad4..f76a70a48 100644
--- a/includes/armory_loader.php
+++ b/includes/armory_loader.php
@@ -3,7 +3,7 @@
/**
* @package World of Warcraft Armory
* @version Release Candidate 1
- * @revision 61
+ * @revision 64
* @copyright (c) 2009-2010 Shadez
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
@@ -31,7 +31,7 @@
die('Error: can not load connector class!');
}
-define('DB_VERSION', 'armory_r61');
+define('DB_VERSION', 'armory_r64');
$armory = new Connector;
$armory->tpl->template_dir = 'includes/template/';
$armory->tpl->compile_dir = 'includes/cache/';
@@ -100,7 +100,13 @@
}
$_locale = (isset($_SESSION['armoryLocale'])) ? $_SESSION['armoryLocale'] : $armory->armoryconfig['defaultLocale'];
$armory->_locale = $_locale;
- header('Location: '.($_SERVER['HTTP_REFERER'] ? $_SERVER['HTTP_REFERER'] : '.'));
+ if(isset($_SERVER['HTTP_REFERER'])) {
+ $returnUrl = $_SERVER['HTTP_REFERER'];
+ }
+ else {
+ $returnUrl = '.';
+ }
+ header('Location: '.$returnUrl);
}
$_locale = (isset($_SESSION['armoryLocale'])) ? $_SESSION['armoryLocale'] : $armory->armoryconfig['defaultLocale'];
$armory->_locale = $_locale;
diff --git a/includes/classes/class.items.php b/includes/classes/class.items.php
index 235fe962e..ea0f35692 100644
--- a/includes/classes/class.items.php
+++ b/includes/classes/class.items.php
@@ -3,7 +3,7 @@
/**
* @package World of Warcraft Armory
* @version Release Candidate 1
- * @revision 63
+ * @revision 64
* @copyright (c) 2009-2010 Shadez
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
@@ -264,12 +264,6 @@ public function lootInfo($itemID) {
**/
public function BuildItemSetInfo($itemset) {
$locale = (isset($_SESSION['armoryLocale'])) ? $_SESSION['armoryLocale'] : $this->armoryconfig['defaultLocale'];
- if($locale == 'en_gb') {
- $spell_locale = '_1';
- }
- else {
- $spell_locale = false;
- }
$itemSetBonuses = '';
$itemsName='';
$query = $this->aDB->selectRow("
@@ -297,10 +291,10 @@ public function BuildItemSetInfo($itemset) {
$spell_tmp = $this->aDB->selectRow("SELECT * FROM `armory_spell` WHERE `id`=?", $query['bonus'.$i]);
$itemSetBonuses .= '('.$i.') ';
$itemSetBonuses .= ($locale == 'ru_ru') ? 'Комплект' : 'Set';
- if(!isset($spell_tmp['Description'.$spell_locale])) {
- $spell_tmp['Description'.$spell_locale] = '';
+ if(!isset($spell_tmp['Description_'.$locale])) {
+ $spell_tmp['Description_'.$locale] = '';
}
- $itemSetBonuses .= ': '.$this->spellReplace($spell_tmp, Utils::validateText($spell_tmp['Description'.$spell_locale])).'
';
+ $itemSetBonuses .= ': '.$this->spellReplace($spell_tmp, Utils::validateText($spell_tmp['Description_'.$locale])).'
';
}
}
$fullItemInfoString = sprintf('%s (0/%s)
%s
%s
', $itemSetName, $itemsCount, $itemsName, $itemSetBonuses);
@@ -319,7 +313,7 @@ public function BuildLootTable($item, $vendor, $data=false) {
switch($vendor) {
case 'vendor':
$VendorLoot = $this->wDB->select("
- SELECT `entry`
+ SELECT `entry`, `ExtendedCost`
FROM `npc_vendor`
WHERE `item`=?", $item);
if(!empty($VendorLoot)) {
@@ -328,7 +322,8 @@ public function BuildLootTable($item, $vendor, $data=false) {
$lootTable[$i] = array (
'name' => Mangos::GetNpcName($vItem['entry']),
'level'=> Mangos::GetNpcInfo($vItem['entry'], 'level'),
- 'map' => Mangos::GetNpcInfo($vItem['entry'], 'map')
+ 'map' => Mangos::GetNpcInfo($vItem['entry'], 'map'),
+ 'extended_cost' => Mangos::GetExtendedCost($vItem['ExtendedCost'])
);
$i++;
}
@@ -770,7 +765,7 @@ public function getSpellData($spell) {
public function my_replace($matches) {
$text = str_replace( array('[',']'), array('', ''), $matches[0]);
- eval("\$text = abs(".$text.");");
+ //eval("\$text = abs(".$text.");");
return intval($text);
}
diff --git a/includes/classes/class.mangos.php b/includes/classes/class.mangos.php
index dcb59005f..22df2c23d 100644
--- a/includes/classes/class.mangos.php
+++ b/includes/classes/class.mangos.php
@@ -3,7 +3,7 @@
/**
* @package World of Warcraft Armory
* @version Release Candidate 1
- * @revision 63
+ * @revision 64
* @copyright (c) 2009-2010 Shadez
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
@@ -276,5 +276,19 @@ public function getMoney($money) {
$getMoney['copper'] = floor($money);
return $getMoney;
}
+
+ public function GetExtendedCost($costId) {
+ $costInfo = $this->aDB->selectRow("SELECT * FROM `armory_extended_cost` WHERE `id`=? LIMIT 1", $costId);
+ if(!$costInfo) {
+ return false;
+ }
+ for($i=1;$i<6;$i++) {
+ if($costInfo['item'.$i] > 0) {
+ $costInfo['item'.$i.'icon'] = Items::getItemIcon($costInfo['item'.$i]);
+ $costInfo['item'.$i.'name'] = Items::getItemName($costInfo['item'.$i]);
+ }
+ }
+ return $costInfo;
+ }
}
?>
\ No newline at end of file
diff --git a/includes/template/item_info.tpl b/includes/template/item_info.tpl
index 6dfecc2ff..e384325ba 100644
--- a/includes/template/item_info.tpl
+++ b/includes/template/item_info.tpl
@@ -42,11 +42,16 @@
{{$item_level}}
-{{if $buyPrice.gold>0 or $buyPrice.silver>0 or $buyPrice.copper>0}}
+{{if $buyPrice.gold>0 or $buyPrice.silver>0 or $buyPrice.copper>0 or $price}}
{{#armory_item_info_cost#}}:
{{if $buyPrice.gold>0}}{{$buyPrice.gold}}{{/if}}{{if $buyPrice.silver>0}}{{$buyPrice.silver}}{{/if}}{{if $buyPrice.copper>0}}{{$buyPrice.copper}}{{/if}}
+{{if $price}}
+
+{{if $price.item1>0}}{{$price.item1count}}{{$price.item1count}}{{/if}}{{if $price.item2>0}}{{$price.item2count}}{{$price.item2count}}{{/if}}{{if $price.item3>0}}{{$price.item3count}}{{$price.item3count}}{{/if}}{{if $price.item4>0}}{{$price.item4count}}{{$price.item4count}}{{/if}}{{if $price.item5>0}}{{$price.item5count}}{{$price.item5count}}{{/if}}
+
+{{/if}}
{{/if}}
{{if $sellPrice.gold>0 or $sellPrice.silver>0 or $sellPrice.copper>0}}
diff --git a/item-info.php b/item-info.php
index 5fa15f9dc..e7d7e788e 100644
--- a/item-info.php
+++ b/item-info.php
@@ -3,7 +3,7 @@
/**
* @package World of Warcraft Armory
* @version Release Candidate 1
- * @revision 63
+ * @revision 64
* @copyright (c) 2009-2010 Shadez
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
@@ -166,10 +166,10 @@
for($i=1;$i<4;$i++) {
if($data['spellid_'.$i] > 0) {
$spell_tmp = $armory->aDB->selectRow("SELECT * FROM `armory_spell` WHERE `id`=?", $data['spellid_'.$i]);
- if(!isset($spell_tmp['Description'.$_spell_locale])) {
+ if(!isset($spell_tmp['Description_'.$_locale])) {
continue;
}
- $spellInfo = $items->spellReplace($spell_tmp, Utils::ValidateText($spell_tmp['Description'.$_spell_locale]));
+ $spellInfo = $items->spellReplace($spell_tmp, Utils::ValidateText($spell_tmp['Description_'.$_locale]));
if($spellInfo) {
$j .= '
'.$armory->tpl->get_config_vars('string_on_use').' '.$spellInfo.' ';
}
@@ -237,6 +237,10 @@
$armory->tpl->assign('craft_loot', $items->BuildLootTable($itemID, 'craft'));
$armory->tpl->assign('reagent_loot', $items->BuildLootTable($itemID, 'reagent'));
/** Loot tables **/
+$extended_cost = $armory->wDB->selectCell("SELECT `ExtendedCost` FROM `npc_vendor` WHERE `item`=? LIMIT 1", $itemID);
+if($extended_cost > 0) {
+ $armory->tpl->assign('price', $mangos->GetExtendedCost($extended_cost));
+}
$armory->tpl->assign('item_level', $data['ItemLevel']);
$armory->tpl->assign('tpl2include', 'item_info');
$armory->tpl->assign('addCssSheet', '@import "_css/int.css";
diff --git a/item-tooltip.php b/item-tooltip.php
index 84c312ca6..c1bbe8856 100644
--- a/item-tooltip.php
+++ b/item-tooltip.php
@@ -3,7 +3,7 @@
/**
* @package World of Warcraft Armory
* @version Release Candidate 1
- * @revision 61
+ * @revision 64
* @copyright (c) 2009-2010 Shadez
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
@@ -231,10 +231,10 @@
for($i=1;$i<4;$i++) {
if($data['spellid_'.$i] > 0) {
$spell_tmp = $armory->aDB->selectRow("SELECT * FROM `armory_spell` WHERE `id`=?", $data['spellid_'.$i]);
- if(!isset($spell_tmp['Description'.$_spell_locale])) {
- $spell_tmp['Description'.$_spell_locale] = '';
+ if(!isset($spell_tmp['Description_'.$_locale])) {
+ continue;
}
- $spellInfo = $items->spellReplace($spell_tmp, Utils::ValidateText($spell_tmp['Description'.$_spell_locale]));
+ $spellInfo = $items->spellReplace($spell_tmp, Utils::ValidateText($spell_tmp['Description_'.$_locale]));
if($spellInfo) {
$j .= '
'.$armory->tpl->get_config_vars('string_on_use').' '.$spellInfo.' ';
}
diff --git a/sql/updates/armory_r64_armory_extended_cost.sql b/sql/updates/armory_r64_armory_extended_cost.sql
new file mode 100644
index 000000000..f87c44f95
--- /dev/null
+++ b/sql/updates/armory_r64_armory_extended_cost.sql
@@ -0,0 +1,1000 @@
+/*
+SQLyog Enterprise - MySQL GUI v8.1
+MySQL - 5.0.45-community-nt : Database - armorynew
+*********************************************************************
+*/
+
+/*!40101 SET NAMES utf8 */;
+
+/*!40101 SET SQL_MODE=''*/;
+
+/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
+
+/*Table structure for table `armory_extended_cost` */
+
+DROP TABLE IF EXISTS `armory_extended_cost`;
+
+CREATE TABLE `armory_extended_cost` (
+ `id` int(11) NOT NULL,
+ `arenaPoints` int(11) NOT NULL,
+ `honorPoints` int(11) NOT NULL,
+ `item1` int(11) NOT NULL,
+ `item2` int(11) NOT NULL,
+ `item3` int(11) NOT NULL,
+ `item4` int(11) NOT NULL,
+ `item5` int(11) NOT NULL,
+ `item1count` int(11) NOT NULL,
+ `item2count` int(11) NOT NULL,
+ `item3count` int(11) NOT NULL,
+ `item4count` int(11) NOT NULL,
+ `item5count` int(11) NOT NULL,
+ `personalRating` int(11) NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
+/*Data for the table `armory_extended_cost` */
+
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1,13,9,0,117,118,0,0,0,1,2,1,1,1);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2,0,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (5,0,0,0,26045,26044,0,0,0,40,2,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (6,0,0,0,26045,26044,0,0,0,20,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (7,0,0,0,26044,0,0,0,0,8,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (18,0,0,0,26045,0,0,0,0,100,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (21,0,978,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (22,0,1630,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (24,0,1304,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (26,0,3261,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (53,0,0,0,24579,0,0,0,0,5,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (54,0,0,0,24581,0,0,0,0,5,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (55,0,0,0,24581,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (56,0,0,0,24579,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (65,0,0,0,24581,0,0,0,0,15,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (66,1,1,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (69,0,0,0,24579,0,0,0,0,15,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (76,0,0,0,24581,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (77,0,0,0,24579,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (94,19125,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (95,6885,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (98,22950,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (99,8500,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (100,0,0,0,24245,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (102,0,0,0,24245,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (103,0,0,0,24245,0,0,0,0,25,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (104,0,0,0,24245,0,0,0,0,15,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (115,16983,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (125,22950,0,0,29024,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (127,15300,0,0,29024,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (129,11934,0,0,20560,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (131,30600,0,0,20560,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (133,0,2283,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (146,0,870,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (148,0,2739,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (165,9435,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (169,9435,0,0,20558,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (170,9435,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (171,14280,0,0,29024,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (172,14280,0,0,20559,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (173,12750,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (194,0,0,0,28558,0,0,0,0,18,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (201,16524,0,0,20559,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (202,10098,0,0,20560,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (203,16065,0,0,20560,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (204,16065,0,0,20558,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (205,10098,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (293,0,0,0,28558,0,0,0,0,50,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (298,0,0,0,28558,0,0,0,0,8,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (348,15300,0,0,29024,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (359,20400,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (360,20400,0,0,20560,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (386,15300,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (388,0,0,0,24245,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (423,0,0,0,20560,20559,20558,0,0,30,30,30,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (427,2805,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (428,2805,0,0,20560,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (444,4335,0,0,20560,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (460,1,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (463,13770,0,0,20559,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (464,13005,0,0,20560,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (465,8415,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (488,4590,0,0,20558,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (489,4590,0,0,20560,0,0,0,0,25,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (490,10200,0,0,20558,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (491,1530,0,0,20558,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (492,1530,0,0,20558,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (495,4590,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (496,2380,0,0,20560,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (497,2720,0,0,20560,0,0,0,0,15,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (501,8415,0,0,20559,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (520,2805,0,0,20559,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (532,1530,0,0,20560,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (533,1530,0,0,20560,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (541,8415,0,0,20560,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (542,13005,0,0,20558,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (565,15300,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (567,15300,0,0,20559,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (634,2805,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (652,4590,0,0,20559,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (653,4335,0,0,20558,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (701,10200,0,0,20558,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (702,4760,0,0,20560,0,0,0,0,25,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (746,8160,0,0,20559,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (747,5100,0,0,20558,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (748,8925,0,0,20558,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (774,1530,0,0,20559,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (821,428,0,0,20558,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (822,65,0,0,20558,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (823,65,0,0,20558,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (826,214,0,0,20558,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (837,632,0,0,20558,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (838,95,0,0,20558,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (839,95,0,0,20558,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (841,175,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (855,175,0,0,20559,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (871,316,0,0,20558,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (883,938,0,0,20558,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (884,141,0,0,20558,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (885,141,0,0,20558,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (887,258,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (901,258,0,0,20559,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (917,469,0,0,20558,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (929,1387,0,0,20558,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (930,208,0,0,20558,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (931,208,0,0,20558,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (933,382,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (947,382,0,0,20559,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (968,694,0,0,20558,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (986,208,0,0,20559,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (989,422,0,0,20558,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (990,624,0,0,20558,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1000,0,0,0,20559,0,0,0,0,60,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1002,0,0,0,20560,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1003,0,0,0,20560,0,0,0,0,60,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1005,0,0,0,20560,0,0,0,0,50,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1006,0,0,0,20560,20559,20558,0,0,20,20,20,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1007,0,0,0,20559,20558,0,0,0,3,3,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1009,0,0,0,20558,0,0,0,0,60,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1015,0,0,0,29434,0,0,0,0,25,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1027,0,0,0,29434,0,0,0,0,41,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1037,0,0,0,29434,0,0,0,0,33,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1040,0,0,0,29434,0,0,0,0,50,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1050,95,0,0,20559,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1054,258,0,0,20558,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1055,118,0,0,20558,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1061,0,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1062,0,0,0,20560,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1076,0,0,0,24245,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1077,0,0,0,24245,0,0,0,0,45,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1110,0,0,0,20559,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1111,0,0,0,20558,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1184,0,0,0,29735,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1188,0,0,0,29735,0,0,0,0,8,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1192,0,0,0,29736,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1196,0,0,0,29736,0,0,0,0,8,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1200,0,0,0,29754,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1203,0,0,0,29757,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1206,0,0,0,29760,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1209,0,0,0,29766,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1212,0,0,0,29763,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1215,0,0,0,29755,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1216,0,0,0,29756,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1217,0,0,0,29759,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1218,0,0,0,29765,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1219,0,0,0,29762,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1235,0,0,0,29753,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1237,0,0,0,29758,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1239,0,0,0,29761,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1241,0,0,0,29767,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1243,0,0,0,29764,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1332,0,0,0,30237,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1333,0,0,0,30240,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1334,0,0,0,30243,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1335,0,0,0,30246,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1336,0,0,0,30249,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1342,0,0,0,30236,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1343,0,0,0,30239,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1344,0,0,0,30242,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1345,0,0,0,30245,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1346,0,0,0,30248,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1357,0,0,0,30238,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1358,0,0,0,30241,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1359,0,0,0,30244,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1360,0,0,0,30247,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1361,0,0,0,30250,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1431,0,1875,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1432,0,1125,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1435,0,1500,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1442,7905,0,0,20558,0,0,0,0,60,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1452,0,0,0,29434,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1454,0,0,0,29434,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1468,8160,0,0,20560,0,0,0,0,60,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1474,0,0,0,31094,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1476,0,0,0,31095,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1478,0,0,0,31091,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1480,0,0,0,31100,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1482,0,0,0,31103,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1485,0,0,0,31092,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1488,0,0,0,31097,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1491,0,0,0,31089,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1494,0,0,0,31098,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1497,0,0,0,31101,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1520,0,0,0,31093,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1521,0,0,0,31096,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1522,0,0,0,31090,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1523,0,0,0,31099,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1524,0,0,0,31102,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1564,8,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1565,5,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1642,0,0,0,29434,0,0,0,0,15,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1645,0,0,0,0,4291,0,0,0,0,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1646,0,0,0,26045,26044,0,0,0,100,20,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1647,0,0,0,26045,26044,0,0,0,70,15,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1648,0,0,0,20559,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1649,0,0,0,20560,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1652,0,0,0,29024,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1653,0,0,0,20558,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1664,0,3750,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1670,0,2625,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1757,0,3150,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1758,0,1000,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1765,0,0,0,26044,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1909,0,0,0,29434,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1910,0,0,0,32569,0,0,0,0,35,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1911,17850,0,0,29024,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1923,17850,0,0,20559,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1935,11794,0,0,20558,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1948,0,0,0,32569,0,0,0,0,3,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1949,0,0,0,32569,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1950,0,0,0,32572,32569,0,0,0,4,100,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1952,0,0,0,32572,32569,0,0,0,1,50,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1958,0,0,0,32569,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1959,0,0,0,32897,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1963,0,0,0,24368,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1973,0,0,0,32569,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1979,0,0,0,32569,0,0,0,0,160,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1981,0,0,0,32572,0,0,0,0,4,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1985,0,0,0,32572,0,0,0,0,3,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1992,0,0,0,28558,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (1994,0,0,0,24245,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2028,15300,0,0,20560,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2049,0,0,0,29434,0,0,0,0,75,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2059,0,0,0,29434,0,0,0,0,60,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2060,0,0,0,29434,0,0,0,0,35,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2236,0,0,0,26044,0,0,0,0,4,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2237,27000,0,0,20560,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2238,25200,0,0,29024,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2239,18000,0,0,29024,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2240,9000,0,0,29024,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2241,8000,0,0,29024,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2242,15000,0,0,29024,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2248,11934,0,0,29024,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2249,11424,0,0,20559,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2250,11424,0,0,29024,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2251,7548,0,0,20558,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2252,9547,0,0,29024,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2253,9547,0,0,20560,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2254,19125,0,0,29024,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2255,12240,0,0,29024,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2256,38250,0,0,20560,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2257,24480,0,0,20560,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2258,20655,0,0,20559,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2259,13219,0,0,20559,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2260,12622,0,0,20560,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2261,8078,0,0,20560,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2262,20081,0,0,20560,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2263,12852,0,0,20560,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2264,20081,0,0,20558,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2265,12852,0,0,20558,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2266,12622,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2267,8078,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2268,11794,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2269,7548,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2270,25500,0,0,20560,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2271,16320,0,0,20560,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2272,0,0,0,32569,0,0,0,0,50,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2273,0,0,0,37829,0,0,0,0,600,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2274,0,0,0,37829,0,0,0,0,50,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2275,0,0,0,37829,0,0,0,0,100,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2276,0,0,0,37829,0,0,0,0,200,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2277,10500,0,0,20560,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2278,11250,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2279,14500,0,0,20559,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2280,14500,0,0,20560,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2281,14500,0,0,20558,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2282,0,3750,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2283,0,1125,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2284,0,3150,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2285,0,1875,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2286,0,1125,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2287,0,2625,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2288,0,1500,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2289,30000,0,0,20560,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2290,19125,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2291,12240,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2292,0,0,0,34180,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2293,0,0,0,34167,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2294,0,0,0,34186,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2295,0,0,0,34169,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2296,0,0,0,34188,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2297,0,0,0,34170,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2298,0,0,0,34192,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2299,0,0,0,34193,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2300,0,0,0,34208,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2301,0,0,0,34209,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2302,0,0,0,34195,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2303,0,0,0,34202,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2304,0,0,0,34215,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2305,0,0,0,34216,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2306,0,0,0,34229,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2307,0,0,0,34211,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2308,0,0,0,34212,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2309,0,0,0,34233,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2310,0,0,0,34345,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2311,0,0,0,34243,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2312,0,0,0,34332,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2313,0,0,0,34245,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2314,0,0,0,34244,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2315,0,0,0,34339,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2316,0,0,0,34342,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2317,0,0,0,34351,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2318,0,0,0,34234,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2319,0,0,0,34350,34664,0,0,0,1,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2320,0,0,0,34848,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2321,0,0,0,34852,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2322,0,0,0,34854,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2323,0,0,0,34851,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2324,0,0,0,34853,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2325,0,0,0,34855,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2326,0,0,0,34856,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2327,0,0,0,34858,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2328,0,0,0,34857,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2329,0,0,0,29434,0,0,0,0,150,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2330,0,0,0,29434,0,0,0,0,125,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2331,0,0,0,29434,0,0,0,0,105,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2332,0,0,0,29434,0,0,0,0,45,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2333,0,0,0,29434,0,0,0,0,100,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2334,0,1875,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2335,0,1125,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2336,0,1875,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2337,0,1875,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2338,0,1125,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2339,0,1000,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2340,0,2150,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2341,0,1110,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2342,0,1125,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2343,0,675,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2344,0,1575,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2345,0,675,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2346,0,1125,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2347,0,0,0,29434,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2348,0,0,0,23247,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2349,0,0,0,23247,0,0,0,0,5,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2350,0,0,0,23247,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2351,0,0,0,23247,0,0,0,0,100,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2352,0,0,0,23247,0,0,0,0,200,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2353,0,0,0,23247,0,0,0,0,350,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2354,1,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2355,0,0,0,33568,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2356,0,650,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2357,0,650,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2358,0,1304,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2359,0,1500,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2360,0,3750,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2361,0,3150,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2362,0,2625,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2363,0,1125,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2364,0,1875,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2365,0,1875,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2366,0,1875,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2367,0,2250,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2368,0,1110,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2369,0,1575,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2370,0,1575,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2371,0,675,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2372,0,1125,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2373,0,1304,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2374,0,600,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2375,0,650,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2376,0,0,0,33568,0,0,0,0,4,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2377,0,3000,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2378,0,2520,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2379,0,900,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2380,0,800,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2381,0,2100,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2382,0,900,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2383,0,1500,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2384,0,1150,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2385,0,2520,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2386,0,3000,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2387,0,900,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2388,0,800,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2389,0,2100,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2390,0,900,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2391,0,1500,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2392,0,1200,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2393,0,650,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2394,0,0,0,37836,0,0,0,0,200,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2395,0,0,0,37836,0,0,0,0,200,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2396,0,0,0,37836,0,0,0,0,120,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2397,0,0,0,37829,0,0,0,0,200,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2398,0,0,0,37829,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2399,0,0,0,37829,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2400,17850,0,0,29024,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2401,11794,0,0,20558,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2402,15300,0,0,20560,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2403,40000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2404,8000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2405,9199,0,0,20558,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2406,13923,0,0,29024,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2407,0,0,0,38186,0,0,0,0,500,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2408,0,0,0,38186,0,0,0,0,100,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2409,0,0,0,38186,0,0,0,0,250,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2410,0,0,0,38186,0,0,0,0,1000,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2411,0,0,0,38186,0,0,0,0,50,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2412,0,0,0,38186,0,0,0,0,25,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2413,0,0,0,34597,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2414,0,0,0,34597,0,0,0,0,50,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2415,0,0,0,34597,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2416,0,0,0,34597,0,0,0,0,5,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2417,0,0,0,34597,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2418,0,0,0,34597,0,0,0,0,100,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2419,0,0,0,34597,0,0,0,0,60,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2420,0,0,0,37836,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2421,0,0,0,37836,0,0,0,0,70,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2422,0,0,0,37836,0,0,0,0,50,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2423,0,800,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2424,0,0,0,37829,0,0,0,0,5,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2425,9500,0,0,20560,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2426,1250,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2427,35000,0,0,20560,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2428,20000,0,0,20559,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2429,0,0,0,41596,0,0,0,0,3,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2430,0,0,0,41596,0,0,0,0,5,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2431,0,250,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2432,0,400,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2433,0,0,0,41596,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2434,0,0,0,41596,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2435,0,0,0,20560,20559,29024,20558,42425,1,1,1,1,1);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2436,0,0,0,41596,0,0,0,0,4,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2437,0,0,0,25634,0,0,0,0,100,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2438,24000,700,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2439,20000,575,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2440,12000,350,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2441,7200,200,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2442,16800,475,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2443,7200,200,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2444,6400,175,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2445,9600,275,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2446,24800,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2447,15800,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2448,19000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2449,24000,1400,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2450,20000,1150,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2451,12000,700,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2452,7200,400,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2453,12000,700,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2454,12000,700,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2455,16800,950,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2456,7200,400,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2457,6400,350,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2458,12000,700,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2459,9600,550,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2460,0,4500,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2461,0,3750,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2462,0,2250,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2463,0,1350,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2464,0,2250,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2465,0,2250,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2466,0,3150,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2467,0,1350,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2468,0,1200,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2469,0,2250,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2470,0,1750,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2471,31000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2472,31000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2473,19700,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2474,23700,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2475,23700,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2476,23700,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2477,31000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2478,0,0,0,43016,0,0,0,0,3,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2479,0,0,0,43016,0,0,0,0,5,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2480,0,0,0,43016,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2481,0,0,0,43228,0,0,0,0,12,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2482,0,0,0,43228,0,0,0,0,24,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2483,12,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2484,0,0,0,40752,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2485,0,0,0,40612,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2486,0,0,0,40615,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2487,0,0,0,40618,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2488,0,0,0,40621,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2489,0,0,0,40624,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2490,0,0,0,40616,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2491,0,0,0,40610,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2492,0,0,0,40619,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2493,0,0,0,40622,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2494,0,0,0,40613,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2495,0,0,0,40611,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2496,0,0,0,40614,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2497,0,0,0,40617,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2498,0,0,0,40620,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2499,0,0,0,40623,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2500,0,0,0,42780,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2501,0,0,0,42780,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2502,0,0,0,42780,0,0,0,0,250,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2503,0,0,0,40628,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2504,0,0,0,40625,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2505,0,0,0,40631,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2506,0,0,0,40634,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2507,0,0,0,40637,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2508,0,0,0,40626,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2509,0,0,0,40632,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2510,0,0,0,40629,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2511,0,0,0,40635,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2512,0,0,0,40638,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2513,0,0,0,40627,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2514,0,0,0,40633,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2515,0,0,0,40630,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2516,0,0,0,40636,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2517,0,0,0,40639,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2518,0,0,0,22484,0,0,0,0,15,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2519,0,0,0,22484,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2520,0,0,0,22484,0,0,0,0,8,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2521,0,0,0,22484,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2522,0,0,0,22484,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2523,0,0,0,40752,0,0,0,0,25,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2524,0,0,0,40752,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2525,0,0,0,40752,0,0,0,0,15,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2526,0,0,0,40752,0,0,0,0,60,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2527,0,0,0,40752,0,0,0,0,75,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2528,0,0,0,40752,0,0,0,0,45,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2529,0,0,0,40752,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2530,0,0,0,40752,0,0,0,0,100,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2531,0,0,0,40752,0,0,0,0,35,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2532,0,0,0,40752,0,0,0,0,50,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2533,0,0,0,40752,0,0,0,0,80,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2534,0,0,0,40753,0,0,0,0,25,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2535,0,0,0,40753,0,0,0,0,60,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2536,0,0,0,40753,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2537,0,0,0,40753,0,0,0,0,60,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2538,0,0,0,40753,0,0,0,0,75,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2539,0,0,0,40753,0,0,0,0,45,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2540,0,0,0,40753,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2541,0,0,0,43016,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2542,0,0,0,43228,0,0,0,0,200,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2543,0,0,0,43228,0,0,0,0,325,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2544,0,0,0,43228,0,0,0,0,250,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2545,0,0,0,43228,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2546,0,0,0,43228,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2547,0,0,0,43228,0,0,0,0,15,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2548,0,0,0,43228,0,0,0,0,100,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2549,0,0,0,43228,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2550,0,0,0,40752,0,0,0,0,200,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2551,0,0,0,40752,0,0,0,0,65,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2552,0,0,0,43228,0,0,0,0,300,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2553,0,0,0,34052,0,0,0,0,4,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2554,0,0,0,34052,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2555,0,0,0,38425,0,0,0,0,3,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2556,0,0,0,44128,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2557,2500,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2558,0,0,0,41596,0,0,0,0,6,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2559,49600,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2560,31600,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2561,38000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2562,62000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2563,62000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2564,39400,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2565,47400,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2566,47400,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2567,47400,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2568,62000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2569,60000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2570,50000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2571,0,0,0,44791,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2572,0,0,0,44791,0,0,0,0,25,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2573,0,0,0,44791,0,0,0,0,50,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2574,0,0,0,44791,0,0,0,0,100,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2575,0,0,0,44791,0,0,0,0,5,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2576,0,0,0,43589,0,0,0,0,9,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2577,0,0,0,43589,0,0,0,0,15,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2578,0,0,0,43589,0,0,0,0,25,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2579,0,0,0,43589,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2580,0,0,0,21100,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2581,0,0,0,21100,0,0,0,0,5,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2582,0,0,0,43126,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2583,0,0,0,43126,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2584,0,0,0,34057,0,0,0,0,5,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2585,0,0,0,34597,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2586,0,0,0,34597,0,0,0,0,2,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2587,0,0,0,34597,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2588,10000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2589,0,0,0,40753,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2590,100,200,0,40752,40753,43228,0,0,2,2,2,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2591,0,0,0,40586,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2592,0,0,0,40586,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2593,0,0,0,44934,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2594,0,0,0,44935,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2595,0,0,0,40585,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2596,0,100,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2597,0,0,0,44990,0,0,0,0,15,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2598,0,0,0,44990,0,0,0,0,50,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2599,0,0,0,44990,0,0,0,0,40,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2600,0,0,0,44990,0,0,0,0,100,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2601,0,0,0,44990,0,0,0,0,25,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2602,0,0,0,44990,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2603,0,0,0,44990,0,0,0,0,150,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2604,0,0,0,45624,0,0,0,0,18,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2605,30400,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2606,0,0,0,45624,0,0,0,0,19,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2607,0,0,0,45624,0,0,0,0,28,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2608,6400,350,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2609,7200,400,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2610,12000,700,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2611,12000,700,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2612,12000,700,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2613,9600,550,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2614,39400,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2615,62000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2616,62000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2617,47400,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2618,47400,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2619,47400,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2620,0,0,0,45624,0,0,0,0,58,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2621,0,1300,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2622,0,2150,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2623,50000,1400,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2624,35000,1200,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2625,35000,1200,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2626,15000,1100,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2627,0,1066,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2628,0,1950,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2629,0,2150,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2630,0,0,0,45624,0,0,0,0,39,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2631,0,0,0,45624,0,0,0,0,46,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2632,0,4250,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2633,0,3585,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2634,0,3000,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2635,0,1245,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2636,0,500,1,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2637,0,0,0,45624,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2638,0,0,0,40753,0,0,0,0,15,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2639,0,0,0,46114,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2640,0,0,0,45644,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2641,0,0,0,45641,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2642,0,0,0,45659,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2643,0,0,0,45656,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2644,0,0,0,45650,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2645,0,0,0,45653,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2646,0,0,0,45635,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2647,0,0,0,45632,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2648,0,0,0,45647,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2649,0,0,0,45638,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2650,0,0,0,45645,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2651,0,0,0,45642,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2652,0,0,0,45660,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2653,0,0,0,45657,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2654,0,0,0,45651,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2655,0,0,0,45654,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2656,0,0,0,45636,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2657,0,0,0,45633,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2658,0,0,0,45648,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2659,0,0,0,45639,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2660,0,0,0,45646,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2661,0,0,0,45643,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2662,0,0,0,45661,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2663,0,0,0,45658,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2664,0,0,0,45652,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2665,0,0,0,45655,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2666,0,0,0,45637,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2667,0,0,0,45634,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2668,0,0,0,45649,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2669,0,0,0,45640,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2670,0,0,0,43016,0,0,0,0,100,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2671,0,0,0,44990,0,0,0,0,5,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2673,0,0,0,44990,0,0,0,0,60,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2674,0,0,0,44990,0,0,0,0,95,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2675,0,0,0,44990,0,0,0,0,75,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2676,0,2000,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2677,0,2000,1,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2678,0,2000,2,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2679,0,0,0,47557,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2680,0,0,0,47558,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2681,0,0,0,0,47559,0,0,0,0,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2682,0,0,0,47241,0,0,0,0,25,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2683,0,0,0,47241,47242,0,0,0,75,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2684,0,0,0,47241,47242,0,0,0,45,1,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2685,0,0,0,47241,0,0,0,0,35,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2686,0,0,0,47241,0,0,0,0,50,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2687,0,0,0,47241,0,0,0,0,30,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2688,0,2150,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2689,0,1300,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2690,0,2150,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2691,0,2150,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2692,0,1750,1,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2693,50000,1400,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2694,0,4250,1,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2695,35000,1200,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2696,0,3585,1,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2697,0,3000,1,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2698,15000,1100,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2699,0,1245,1,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2700,0,1150,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2701,0,300,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2702,0,0,0,45688,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2703,0,0,0,45689,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2704,0,0,0,45690,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2705,0,0,0,45691,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2706,0,0,0,40752,0,0,0,0,20,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2707,0,0,0,47241,0,0,0,0,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2708,0,0,0,47241,0,0,0,0,75,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2709,0,0,0,47241,0,0,0,0,45,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2710,0,0,0,46849,0,0,0,0,10,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2711,0,0,0,45624,0,0,0,0,75,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2712,62000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2713,62000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2714,39400,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2715,47400,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2716,47400,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2717,47400,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2718,62000,0,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2719,0,1100,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2720,0,300,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2721,0,1100,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2722,0,500,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2723,0,0,0,47241,0,0,0,0,15,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2724,0,0,38425,0,0,0,0,10,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2725,0,0,49927,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2726,0,0,49927,0,0,0,0,10,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2727,0,0,49927,0,0,0,0,5,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2728,0,0,49927,0,0,0,0,2,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2729,0,0,49927,0,0,0,0,40,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2730,0,0,49916,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2731,0,0,49908,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2732,0,0,49927,0,0,0,0,30,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2733,0,0,49927,0,0,0,0,20,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2734,0,0,47241,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2735,0,0,48957,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2736,0,0,48956,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2737,0,0,48955,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2738,0,0,48954,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2739,0,0,49426,0,0,0,0,30,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2740,0,0,49426,0,0,0,0,60,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2741,0,0,49426,0,0,0,0,50,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2742,0,0,49426,0,0,0,0,95,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2743,0,0,49426,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2744,0,0,49426,0,0,0,0,23,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2745,0,0,52025,50279,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2746,0,0,52025,50278,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2747,0,0,52025,50277,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2748,0,0,52025,50276,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2749,0,0,52025,50275,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2750,0,0,52028,51159,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2751,0,0,52028,51158,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2752,0,0,52028,51157,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2753,0,0,52028,51156,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2754,0,0,52028,51155,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2755,0,0,52025,50105,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2756,0,0,52025,50090,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2757,0,0,52025,50089,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2758,0,0,52025,50088,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2759,0,0,52025,50087,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2760,0,0,52028,51189,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2761,0,0,52028,51188,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2762,0,0,52028,51187,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2763,0,0,52028,51186,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2764,0,0,52028,51185,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2765,0,0,52025,50113,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2766,0,0,52025,50109,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2767,0,0,52025,50108,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2768,0,0,52025,50107,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2769,0,0,52025,50106,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2770,0,0,52028,51139,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2771,0,0,52028,51138,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2772,0,0,52028,51137,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2773,0,0,52028,51136,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2774,0,0,52028,51135,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2775,0,0,52025,50823,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2776,0,0,52025,50820,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2777,0,0,52025,50819,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2778,0,0,52025,50822,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2779,0,0,52025,50821,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2780,0,0,52028,51149,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2781,0,0,52028,51148,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2782,0,0,52028,51147,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2783,0,0,52028,51146,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2784,0,0,52028,51145,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2785,0,0,52025,50824,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2786,0,0,52025,50828,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2787,0,0,52025,50825,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2788,0,0,52025,50826,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2789,0,0,52025,50827,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2790,0,0,52028,51144,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2791,0,0,52028,51143,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2792,0,0,52028,51142,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2793,0,0,52028,51141,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2794,0,0,52028,51140,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2795,0,0,52025,50098,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2796,0,0,52025,50097,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2797,0,0,52025,50096,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2798,0,0,52025,50095,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2799,0,0,52025,50094,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2800,0,0,52028,51129,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2801,0,0,52028,51128,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2802,0,0,52028,51127,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2803,0,0,52028,51126,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2804,0,0,52028,51125,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2805,0,0,52025,50853,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2806,0,0,52025,50854,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2807,0,0,52025,50856,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2808,0,0,52025,50855,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2809,0,0,52025,50857,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2810,0,0,52028,51134,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2811,0,0,52028,51133,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2812,0,0,52028,51132,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2813,0,0,52028,51131,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2814,0,0,52028,51130,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2815,0,0,52027,50869,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2816,0,0,52027,50865,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2817,0,0,52027,50867,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2818,0,0,52027,50866,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2819,0,0,52027,50868,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2820,0,0,52030,51169,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2821,0,0,52030,51168,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2822,0,0,52030,51167,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2823,0,0,52030,51166,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2824,0,0,52030,51165,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2825,0,0,52027,50324,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2826,0,0,52027,50325,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2827,0,0,52027,50326,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2828,0,0,52027,50327,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2829,0,0,52027,50328,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2830,0,0,52030,51164,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2831,0,0,52030,51163,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2832,0,0,52030,51162,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2833,0,0,52030,51161,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2834,0,0,52030,51160,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2835,0,0,52027,50860,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2836,0,0,52027,50861,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2837,0,0,52027,50863,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2838,0,0,52027,50862,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2839,0,0,52027,50864,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2840,0,0,52030,51174,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2841,0,0,52030,51173,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2842,0,0,52030,51172,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2843,0,0,52030,51171,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2844,0,0,52030,51170,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2845,0,0,52027,50244,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2846,0,0,52027,50243,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2847,0,0,52027,50242,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2848,0,0,52027,50241,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2849,0,0,52027,50240,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2850,0,0,52030,51209,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2851,0,0,52030,51208,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2852,0,0,52030,51207,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2853,0,0,52030,51206,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2854,0,0,52030,51205,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2855,0,0,52027,50767,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2856,0,0,52027,50768,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2857,0,0,52027,50769,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2858,0,0,52027,50765,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2859,0,0,52027,50766,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2860,0,0,52030,51179,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2861,0,0,52030,51178,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2862,0,0,52030,51177,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2863,0,0,52030,51176,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2864,0,0,52030,51175,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2865,0,0,52027,50394,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2866,0,0,52027,50393,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2867,0,0,52027,50396,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2868,0,0,52027,50391,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2869,0,0,52027,50392,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2870,0,0,52030,51184,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2871,0,0,52030,51183,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2872,0,0,52030,51182,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2873,0,0,52030,51181,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2874,0,0,52030,51180,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2875,0,0,52026,50082,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2876,0,0,52026,50081,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2877,0,0,52026,50080,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2878,0,0,52026,50079,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2879,0,0,52026,50078,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2880,0,0,52029,51214,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2881,0,0,52029,51213,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2882,0,0,52029,51212,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2883,0,0,52029,51211,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2884,0,0,52029,51210,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2885,0,0,52026,50846,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2886,0,0,52026,50847,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2887,0,0,52026,50849,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2888,0,0,52026,50848,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2889,0,0,52026,50850,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2890,0,0,52029,51219,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2891,0,0,52029,51218,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2892,0,0,52029,51217,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2893,0,0,52029,51216,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2894,0,0,52029,51215,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2895,0,0,52026,50118,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2896,0,0,52026,50117,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2897,0,0,52026,50116,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2898,0,0,52026,50115,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2899,0,0,52026,50114,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2900,0,0,52029,51154,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2901,0,0,52029,51153,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2902,0,0,52029,51152,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2903,0,0,52029,51151,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2904,0,0,52029,51150,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2905,0,0,52026,50835,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2906,0,0,52026,50836,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2907,0,0,52026,50837,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2908,0,0,52026,50838,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2909,0,0,52026,50839,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2910,0,0,52029,51190,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2911,0,0,52029,51191,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2912,0,0,52029,51192,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2913,0,0,52029,51193,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2914,0,0,52029,51194,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2915,0,0,52026,50830,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2916,0,0,52026,50831,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2917,0,0,52026,50832,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2918,0,0,52026,50833,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2919,0,0,52026,50834,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2920,0,0,52029,51195,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2921,0,0,52029,51196,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2922,0,0,52029,51197,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2923,0,0,52029,51198,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2924,0,0,52029,51198,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2925,0,0,52026,50841,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2926,0,0,52026,50842,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2927,0,0,52026,50843,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2928,0,0,52026,50844,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2929,0,0,52026,50845,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2930,0,0,52029,51200,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2931,0,0,52029,51201,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2932,0,0,52029,51202,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2933,0,0,52029,51203,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2934,0,0,52029,51204,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2935,0,0,52029,51199,0,0,0,1,1,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2936,1540,55000,0,0,0,0,0,0,0,0,0,0,1800);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2937,550,0,0,0,0,0,0,0,0,0,0,0,2350);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2938,550,0,0,0,0,0,0,0,0,0,0,0,2300);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2939,4670,0,0,0,0,0,0,0,0,0,0,0,2200);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2940,3950,0,0,0,0,0,0,0,0,0,0,0,2200);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2941,1540,55000,0,0,0,0,0,0,0,0,0,0,1800);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2942,4670,0,0,0,0,0,0,0,0,0,0,0,2200);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2943,1300,38500,0,0,0,0,0,0,0,0,0,0,1800);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2944,3300,0,0,0,0,0,0,0,0,0,0,0,2200);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2945,1090,38500,0,0,0,0,0,0,0,0,0,0,1800);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2946,450,16500,0,0,0,0,0,0,0,0,0,0,1800);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2947,1370,0,0,0,0,0,0,0,0,0,0,0,2200);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2948,1930,0,0,0,0,0,0,0,0,0,0,0,2000);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2949,2370,0,0,0,0,0,0,0,0,0,0,0,1950);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2950,350,0,0,0,0,0,0,0,0,0,0,0,1800);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2951,1260,0,0,0,0,0,0,0,0,0,0,0,1700);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2952,2370,0,0,0,0,0,0,0,0,0,0,0,1600);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2953,2370,0,0,0,0,0,0,0,0,0,0,0,1500);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2954,1430,0,0,0,0,0,0,0,0,0,0,0,1400);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2955,600,10550,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2956,770,13200,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2957,440,8000,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2958,0,34700,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2959,0,54500,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2960,0,43300,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2961,0,68200,0,0,0,0,0,0,0,0,0,0,1400);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2962,0,68200,0,0,0,0,0,0,0,0,0,0,1300);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2963,0,43400,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2964,0,52200,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2965,0,68200,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2966,0,34100,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2967,0,21700,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2968,0,26100,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2969,0,12000,0,0,0,0,0,0,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2974,0,0,50402,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2975,0,0,50401,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2976,0,0,50387,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2977,0,0,50376,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2978,0,0,52569,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2979,0,0,52570,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2980,0,0,52571,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2981,0,0,52572,0,0,0,0,1,0,0,0,0,0);
+insert into `armory_extended_cost`(id,arenaPoints,honorPoints,item1,item2,item3,item4,item5,item1count,item2count,item3count,item4count,item5count,personalRating) values (2982,0,0,52572,0,0,0,0,1,0,0,0,0,0);
+
+/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
\ No newline at end of file
diff --git a/sql/updates/armory_r64_armory_spell.7z b/sql/updates/armory_r64_armory_spell.7z
new file mode 100644
index 000000000..bcdc0c221
Binary files /dev/null and b/sql/updates/armory_r64_armory_spell.7z differ